├── .github └── workflows │ └── rust.yml ├── .gitignore ├── CHANGES.md ├── Cargo.toml ├── LICENSE ├── README.md ├── benches └── lzw.rs ├── fuzz ├── .gitignore ├── Cargo.toml └── fuzz_targets │ └── decode_image.rs ├── src ├── bytecast.rs ├── decoder │ ├── cycles.rs │ ├── ifd.rs │ ├── image.rs │ ├── mod.rs │ ├── stream.rs │ └── tag_reader.rs ├── directory.rs ├── encoder │ ├── colortype.rs │ ├── compression │ │ ├── deflate.rs │ │ ├── lzw.rs │ │ ├── mod.rs │ │ ├── packbits.rs │ │ └── uncompressed.rs │ ├── mod.rs │ ├── tiff_value.rs │ └── writer.rs ├── error.rs ├── lib.rs └── tags.rs └── tests ├── COPYRIGHT ├── benches ├── README.md ├── Transparency-lzw.tif ├── kodim02-lzw.tif └── kodim07-lzw.tif ├── decode_bigtiff_images.rs ├── decode_fp16_images.rs ├── decode_geotiff_images.rs ├── decode_images.rs ├── decodedata-rgb-3c-8b.tiff ├── encode_images.rs ├── encode_images_with_compression.rs ├── fuzz_images ├── divide_by_zero │ ├── id=000000,sig=06,src=000036,op=havoc,rep=4 │ ├── id=000001,sig=06,src=000044,op=havoc,rep=64 │ ├── id=000002,sig=06,src=000096,op=havoc,rep=16 │ ├── id=000003,sig=06,src=000297,op=havoc,rep=16 │ ├── id=000004,sig=06,src=000297,op=havoc,rep=8 │ ├── id=000005,sig=06,src=000301,op=havoc,rep=8 │ ├── id=000006,sig=06,src=000030+000036,op=splice,rep=4 │ ├── id=000007,sig=06,src=000083+000275,op=splice,rep=8 │ ├── id=000008,sig=06,src=000324,op=havoc,rep=8 │ ├── id=000009,sig=06,src=000149,op=havoc,rep=8 │ ├── id=000010,sig=06,src=000036,op=havoc,rep=16 │ ├── id=000011,sig=06,src=000140,op=havoc,rep=16 │ ├── id=000012,sig=06,src=000140+000054,op=splice,rep=2 │ ├── id=000013,sig=06,src=000232,op=havoc,rep=2 │ ├── id=000014,sig=06,src=000295,op=havoc,rep=16 │ ├── id=000015,sig=06,src=000337,op=havoc,rep=2 │ ├── id=000016,sig=06,src=000034+000323,op=splice,rep=64 │ ├── id=000017,sig=06,src=000044+000234,op=splice,rep=2 │ ├── id=000018,sig=06,src=000342,op=havoc,rep=4 │ ├── id=000019,sig=06,src=000346+000147,op=splice,rep=4 │ ├── id=000020,sig=06,src=000351,op=havoc,rep=2 │ ├── id=000021,sig=06,src=000036+000170,op=splice,rep=4 │ ├── id=000022,sig=06,src=000036+000170,op=splice,rep=8 │ ├── id=000023,sig=06,src=000124+000267,op=splice,rep=4 │ ├── id=000024,sig=06,src=000183+000196,op=splice,rep=2 │ ├── id=000025,sig=06,src=000228,op=havoc,rep=8 │ ├── id=000026,sig=06,src=000291,op=havoc,rep=4 │ ├── id=000027,sig=06,src=000348+000170,op=splice,rep=64 │ ├── id=000028,sig=06,src=000306,op=havoc,rep=2 │ ├── id=000029,sig=06,src=000354,op=havoc,rep=32 │ ├── id=000030,sig=06,src=000005,op=havoc,rep=4 │ ├── id=000031,sig=06,src=000018,op=havoc,rep=32 │ ├── id=000032,sig=06,src=000172,op=havoc,rep=2 │ ├── id=000033,sig=06,src=000227+000161,op=splice,rep=4 │ ├── id=000034,sig=06,src=000347,op=havoc,rep=2 │ ├── id=000035,sig=06,src=000337+000005,op=splice,rep=2 │ ├── id=000036,sig=06,src=000301,op=havoc,rep=2 │ ├── id=000037,sig=06,src=000365,op=havoc,rep=8 │ ├── id=000038,sig=06,src=000036,op=havoc,rep=2 │ ├── id=000039,sig=06,src=000298,op=havoc,rep=8 │ ├── id=000040,sig=06,src=000112+000100,op=splice,rep=4 │ ├── id=000041,sig=06,src=000015+000098,op=splice,rep=16 │ ├── id=000042,sig=06,src=000036,op=havoc,rep=4 │ ├── id=000043,sig=06,src=000286,op=havoc,rep=2 │ ├── id=000044,sig=06,src=000369,op=havoc,rep=16 │ ├── id=000045,sig=06,src=000036+000373,op=splice,rep=4 │ ├── id=000046,sig=06,src=000171,op=havoc,rep=2 │ ├── id=000047,sig=06,src=000370,op=havoc,rep=4 │ └── id=000048,sig=06,src=000414,op=havoc,rep=2 ├── inf_loop │ ├── id=000028,src=000508,op=havoc,rep=4 │ ├── id=000029,src=000556+000125,op=splice,rep=64 │ ├── id=000030,src=000556+000125,op=splice,rep=128 │ ├── id=000031,src=000527+000541,op=splice,rep=8 │ ├── id=000032,src=000558+000248,op=splice,rep=8 │ ├── id=000033,src=000525+000106,op=splice,rep=4 │ ├── id=000034,src=000560+000475,op=splice,rep=128 │ ├── id=000039,src=000640,op=havoc,rep=4 │ ├── id=000040,src=000679+000165,op=splice,rep=4 │ ├── id=000041,src=000698+000155,op=splice,rep=8 │ ├── id=000042,src=000698+000155,op=splice,rep=64 │ ├── id=000043,src=000698+000155,op=splice,rep=128 │ ├── id=000044,src=000698+000155,op=splice,rep=2 │ └── id=000045,src=000700,op=havoc,rep=8 ├── oom_crash │ ├── id=000000,sig=06,src=000000,op=havoc,rep=2 │ ├── id=000001,sig=06,src=000000,op=havoc,rep=8 │ ├── id=000002,sig=06,src=000000,op=havoc,rep=8 │ ├── id=000003,sig=06,src=000000,op=havoc,rep=4 │ ├── id=000004,sig=06,src=000000,op=havoc,rep=2 │ ├── id=000005,sig=06,src=000000,op=havoc,rep=2 │ ├── id=000006,sig=06,src=000000,op=havoc,rep=8 │ ├── id=000007,sig=06,src=000000,op=havoc,rep=8 │ ├── id=000008,sig=06,src=000000,op=havoc,rep=8 │ ├── id=000009,sig=06,src=000000,op=havoc,rep=16 │ ├── id=000010,sig=06,src=000000,op=havoc,rep=4 │ ├── id=000011,sig=06,src=000000,op=havoc,rep=16 │ ├── id=000012,sig=06,src=000000,op=havoc,rep=8 │ ├── id=000013,sig=06,src=000000,op=havoc,rep=4 │ ├── id=000014,sig=06,src=000000,op=havoc,rep=8 │ ├── id=000015,sig=06,src=000000,op=havoc,rep=4 │ ├── id=000016,sig=06,src=000000,op=havoc,rep=4 │ ├── id=000021,sig=06,src=000004,op=havoc,rep=4 │ ├── id=000022,sig=06,src=000004,op=havoc,rep=4 │ ├── id=000025,sig=06,src=000007,op=havoc,rep=16 │ ├── id=000027,sig=06,src=000026+000062,op=splice,rep=8 │ ├── id=000028,sig=06,src=000027,op=havoc,rep=2 │ ├── id=000029,sig=06,src=000027,op=havoc,rep=8 │ ├── id=000030,sig=06,src=000027,op=havoc,rep=16 │ ├── id=000031,sig=06,src=000027,op=havoc,rep=8 │ ├── id=000032,sig=06,src=000027,op=havoc,rep=8 │ ├── id=000033,sig=06,src=000027+000178,op=splice,rep=64 │ ├── id=000034,sig=06,src=000040,op=havoc,rep=2 │ ├── id=000035,sig=06,src=000056,op=havoc,rep=4 │ ├── id=000036,sig=06,src=000059+000071,op=splice,rep=8 │ ├── id=000037,sig=06,src=000062,op=havoc,rep=32 │ ├── id=000038,sig=06,src=000066,op=havoc,rep=32 │ ├── id=000039,sig=06,src=000066+000044,op=splice,rep=4 │ ├── id=000040,sig=06,src=000068+000059,op=splice,rep=16 │ ├── id=000041,sig=06,src=000073,op=havoc,rep=16 │ ├── id=000042,sig=06,src=000087,op=havoc,rep=8 │ ├── id=000043,sig=06,src=000181,op=havoc,rep=2 │ ├── id=000045,sig=06,src=000266,op=havoc,rep=2 │ ├── id=000046,sig=06,src=000276,op=havoc,rep=4 │ ├── id=000048,sig=06,src=000313+000233,op=splice,rep=64 │ ├── id=000051,sig=06,src=000329,op=havoc,rep=2 │ ├── id=000052,sig=06,src=000329,op=havoc,rep=2 │ ├── id=000053,sig=06,src=000329+000130,op=splice,rep=128 │ ├── id=000054,sig=06,src=000331,op=havoc,rep=8 │ ├── id=000056,sig=06,src=000351+000306,op=splice,rep=64 │ ├── id=000058,sig=06,src=000361,op=havoc,rep=4 │ ├── id=000059,sig=06,src=000363,op=havoc,rep=4 │ ├── id=000060,sig=06,src=000363,op=havoc,rep=2 │ ├── id=000061,sig=06,src=000364,op=havoc,rep=2 │ ├── id=000063,sig=06,src=000060+000137,op=splice,rep=128 │ ├── id=000064,sig=06,src=000394,op=havoc,rep=4 │ └── id=000068,sig=06,src=000127,op=havoc,rep=8 └── oor_panic │ ├── id=000017,sig=06,src=000001,op=havoc,rep=64 │ ├── id=000018,sig=06,src=000001,op=havoc,rep=2 │ ├── id=000019,sig=06,src=000001,op=havoc,rep=8 │ ├── id=000023,sig=06,src=000006,op=havoc,rep=8 │ ├── id=000024,sig=06,src=000006,op=havoc,rep=2 │ ├── id=000026,sig=06,src=000012,op=havoc,rep=2 │ ├── id=000044,sig=06,src=000224,op=havoc,rep=4 │ ├── id=000049,sig=06,src=000318,op=havoc,rep=8 │ ├── id=000050,sig=06,src=000322,op=havoc,rep=32 │ ├── id=000055,sig=06,src=000343,op=havoc,rep=2 │ ├── sample-format-empty-vec.bin │ └── sample-get-lzw-stuck.tiff ├── fuzz_tests.rs ├── images ├── 12bit.cropped.rgb.tiff ├── 12bit.cropped.tiff ├── COPYRIGHT ├── README.txt ├── bigtiff │ ├── BigTIFF.tif │ ├── BigTIFFLong.tif │ └── BigTIFFMotorola.tif ├── cmyk-3c-16b.tiff ├── cmyk-3c-32b-float.tiff ├── cmyk-3c-8b.tiff ├── cmyk-4c-8b.tiff ├── extra_bits_gray_8b.tiff ├── extra_bits_rgb_8b.tiff ├── fax4.tiff ├── geo-5b.tif ├── gradient-1c-32b-float.tiff ├── gradient-1c-32b.tiff ├── gradient-1c-64b-float.tiff ├── gradient-1c-64b.tiff ├── gradient-3c-32b-float.tiff ├── gradient-3c-32b.tiff ├── gradient-3c-64b.tiff ├── imagemagick_group4.tiff ├── int16.tif ├── int16_rgb.tif ├── int16_zstd.tif ├── int8.tif ├── int8_rgb.tif ├── issue_69_lzw.tiff ├── issue_69_packbits.tiff ├── logluv-3c-16b.tiff ├── minisblack-1c-16b.tiff ├── minisblack-1c-8b.pgm ├── minisblack-1c-8b.tiff ├── minisblack-1c-i16b.tiff ├── minisblack-1c-i8b.tiff ├── minisblack-2c-8b-alpha.tiff ├── miniswhite-1c-1b.pbm ├── miniswhite-1c-1b.tiff ├── no_rows_per_strip.tiff ├── palette-1c-1b.tiff ├── palette-1c-4b.tiff ├── palette-1c-8b.tiff ├── planar-rgb-u8.tif ├── predictor-3-gray-f32.tif ├── predictor-3-rgb-f32.tif ├── quad-lzw-compat.tiff ├── quad-tile.jpg.tiff ├── random-fp16-pred2.tiff ├── random-fp16-pred3.tiff ├── random-fp16.pgm ├── random-fp16.tiff ├── rgb-3c-16b.tiff ├── rgb-3c-8b.ppm ├── rgb-3c-8b.tiff ├── single-black-fp16.tiff ├── tiled-cmyk-i8.tif ├── tiled-gray-i1.tif ├── tiled-jpeg-rgb-u8.tif ├── tiled-jpeg-ycbcr.tif ├── tiled-oversize-gray-i8.tif ├── tiled-rect-rgb-u8.tif ├── tiled-rgb-u8.tif ├── white-fp16-pred2.tiff ├── white-fp16-pred3.tiff └── white-fp16.tiff ├── predict.rs ├── subsubifds.rs └── subsubifds.tif /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /target/ 3 | **/*.rs.bk 4 | Cargo.lock 5 | -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/CHANGES.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/README.md -------------------------------------------------------------------------------- /benches/lzw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/benches/lzw.rs -------------------------------------------------------------------------------- /fuzz/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | corpus 3 | artifacts 4 | -------------------------------------------------------------------------------- /fuzz/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/fuzz/Cargo.toml -------------------------------------------------------------------------------- /fuzz/fuzz_targets/decode_image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/fuzz/fuzz_targets/decode_image.rs -------------------------------------------------------------------------------- /src/bytecast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/src/bytecast.rs -------------------------------------------------------------------------------- /src/decoder/cycles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/src/decoder/cycles.rs -------------------------------------------------------------------------------- /src/decoder/ifd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/src/decoder/ifd.rs -------------------------------------------------------------------------------- /src/decoder/image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/src/decoder/image.rs -------------------------------------------------------------------------------- /src/decoder/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/src/decoder/mod.rs -------------------------------------------------------------------------------- /src/decoder/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/src/decoder/stream.rs -------------------------------------------------------------------------------- /src/decoder/tag_reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/src/decoder/tag_reader.rs -------------------------------------------------------------------------------- /src/directory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/src/directory.rs -------------------------------------------------------------------------------- /src/encoder/colortype.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/src/encoder/colortype.rs -------------------------------------------------------------------------------- /src/encoder/compression/deflate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/src/encoder/compression/deflate.rs -------------------------------------------------------------------------------- /src/encoder/compression/lzw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/src/encoder/compression/lzw.rs -------------------------------------------------------------------------------- /src/encoder/compression/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/src/encoder/compression/mod.rs -------------------------------------------------------------------------------- /src/encoder/compression/packbits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/src/encoder/compression/packbits.rs -------------------------------------------------------------------------------- /src/encoder/compression/uncompressed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/src/encoder/compression/uncompressed.rs -------------------------------------------------------------------------------- /src/encoder/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/src/encoder/mod.rs -------------------------------------------------------------------------------- /src/encoder/tiff_value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/src/encoder/tiff_value.rs -------------------------------------------------------------------------------- /src/encoder/writer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/src/encoder/writer.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/tags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/src/tags.rs -------------------------------------------------------------------------------- /tests/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/COPYRIGHT -------------------------------------------------------------------------------- /tests/benches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/benches/README.md -------------------------------------------------------------------------------- /tests/benches/Transparency-lzw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/benches/Transparency-lzw.tif -------------------------------------------------------------------------------- /tests/benches/kodim02-lzw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/benches/kodim02-lzw.tif -------------------------------------------------------------------------------- /tests/benches/kodim07-lzw.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/benches/kodim07-lzw.tif -------------------------------------------------------------------------------- /tests/decode_bigtiff_images.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/decode_bigtiff_images.rs -------------------------------------------------------------------------------- /tests/decode_fp16_images.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/decode_fp16_images.rs -------------------------------------------------------------------------------- /tests/decode_geotiff_images.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/decode_geotiff_images.rs -------------------------------------------------------------------------------- /tests/decode_images.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/decode_images.rs -------------------------------------------------------------------------------- /tests/decodedata-rgb-3c-8b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/decodedata-rgb-3c-8b.tiff -------------------------------------------------------------------------------- /tests/encode_images.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/encode_images.rs -------------------------------------------------------------------------------- /tests/encode_images_with_compression.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/encode_images_with_compression.rs -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000000,sig=06,src=000036,op=havoc,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000000,sig=06,src=000036,op=havoc,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000001,sig=06,src=000044,op=havoc,rep=64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000001,sig=06,src=000044,op=havoc,rep=64 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000002,sig=06,src=000096,op=havoc,rep=16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000002,sig=06,src=000096,op=havoc,rep=16 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000003,sig=06,src=000297,op=havoc,rep=16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000003,sig=06,src=000297,op=havoc,rep=16 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000004,sig=06,src=000297,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000004,sig=06,src=000297,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000005,sig=06,src=000301,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000005,sig=06,src=000301,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000006,sig=06,src=000030+000036,op=splice,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000006,sig=06,src=000030+000036,op=splice,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000007,sig=06,src=000083+000275,op=splice,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000007,sig=06,src=000083+000275,op=splice,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000008,sig=06,src=000324,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000008,sig=06,src=000324,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000009,sig=06,src=000149,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000009,sig=06,src=000149,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000010,sig=06,src=000036,op=havoc,rep=16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000010,sig=06,src=000036,op=havoc,rep=16 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000011,sig=06,src=000140,op=havoc,rep=16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000011,sig=06,src=000140,op=havoc,rep=16 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000012,sig=06,src=000140+000054,op=splice,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000012,sig=06,src=000140+000054,op=splice,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000013,sig=06,src=000232,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000013,sig=06,src=000232,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000014,sig=06,src=000295,op=havoc,rep=16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000014,sig=06,src=000295,op=havoc,rep=16 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000015,sig=06,src=000337,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000015,sig=06,src=000337,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000016,sig=06,src=000034+000323,op=splice,rep=64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000016,sig=06,src=000034+000323,op=splice,rep=64 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000017,sig=06,src=000044+000234,op=splice,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000017,sig=06,src=000044+000234,op=splice,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000018,sig=06,src=000342,op=havoc,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000018,sig=06,src=000342,op=havoc,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000019,sig=06,src=000346+000147,op=splice,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000019,sig=06,src=000346+000147,op=splice,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000020,sig=06,src=000351,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000020,sig=06,src=000351,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000021,sig=06,src=000036+000170,op=splice,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000021,sig=06,src=000036+000170,op=splice,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000022,sig=06,src=000036+000170,op=splice,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000022,sig=06,src=000036+000170,op=splice,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000023,sig=06,src=000124+000267,op=splice,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000023,sig=06,src=000124+000267,op=splice,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000024,sig=06,src=000183+000196,op=splice,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000024,sig=06,src=000183+000196,op=splice,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000025,sig=06,src=000228,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000025,sig=06,src=000228,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000026,sig=06,src=000291,op=havoc,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000026,sig=06,src=000291,op=havoc,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000027,sig=06,src=000348+000170,op=splice,rep=64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000027,sig=06,src=000348+000170,op=splice,rep=64 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000028,sig=06,src=000306,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000028,sig=06,src=000306,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000029,sig=06,src=000354,op=havoc,rep=32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000029,sig=06,src=000354,op=havoc,rep=32 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000030,sig=06,src=000005,op=havoc,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000030,sig=06,src=000005,op=havoc,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000031,sig=06,src=000018,op=havoc,rep=32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000031,sig=06,src=000018,op=havoc,rep=32 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000032,sig=06,src=000172,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000032,sig=06,src=000172,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000033,sig=06,src=000227+000161,op=splice,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000033,sig=06,src=000227+000161,op=splice,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000034,sig=06,src=000347,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000034,sig=06,src=000347,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000035,sig=06,src=000337+000005,op=splice,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000035,sig=06,src=000337+000005,op=splice,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000036,sig=06,src=000301,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000036,sig=06,src=000301,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000037,sig=06,src=000365,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000037,sig=06,src=000365,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000038,sig=06,src=000036,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000038,sig=06,src=000036,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000039,sig=06,src=000298,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000039,sig=06,src=000298,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000040,sig=06,src=000112+000100,op=splice,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000040,sig=06,src=000112+000100,op=splice,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000041,sig=06,src=000015+000098,op=splice,rep=16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000041,sig=06,src=000015+000098,op=splice,rep=16 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000042,sig=06,src=000036,op=havoc,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000042,sig=06,src=000036,op=havoc,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000043,sig=06,src=000286,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000043,sig=06,src=000286,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000044,sig=06,src=000369,op=havoc,rep=16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000044,sig=06,src=000369,op=havoc,rep=16 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000045,sig=06,src=000036+000373,op=splice,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000045,sig=06,src=000036+000373,op=splice,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000046,sig=06,src=000171,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000046,sig=06,src=000171,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000047,sig=06,src=000370,op=havoc,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000047,sig=06,src=000370,op=havoc,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/divide_by_zero/id=000048,sig=06,src=000414,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/divide_by_zero/id=000048,sig=06,src=000414,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/inf_loop/id=000028,src=000508,op=havoc,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/inf_loop/id=000028,src=000508,op=havoc,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/inf_loop/id=000029,src=000556+000125,op=splice,rep=64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/inf_loop/id=000029,src=000556+000125,op=splice,rep=64 -------------------------------------------------------------------------------- /tests/fuzz_images/inf_loop/id=000030,src=000556+000125,op=splice,rep=128: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/inf_loop/id=000030,src=000556+000125,op=splice,rep=128 -------------------------------------------------------------------------------- /tests/fuzz_images/inf_loop/id=000031,src=000527+000541,op=splice,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/inf_loop/id=000031,src=000527+000541,op=splice,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/inf_loop/id=000032,src=000558+000248,op=splice,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/inf_loop/id=000032,src=000558+000248,op=splice,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/inf_loop/id=000033,src=000525+000106,op=splice,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/inf_loop/id=000033,src=000525+000106,op=splice,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/inf_loop/id=000034,src=000560+000475,op=splice,rep=128: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/inf_loop/id=000034,src=000560+000475,op=splice,rep=128 -------------------------------------------------------------------------------- /tests/fuzz_images/inf_loop/id=000039,src=000640,op=havoc,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/inf_loop/id=000039,src=000640,op=havoc,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/inf_loop/id=000040,src=000679+000165,op=splice,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/inf_loop/id=000040,src=000679+000165,op=splice,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/inf_loop/id=000041,src=000698+000155,op=splice,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/inf_loop/id=000041,src=000698+000155,op=splice,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/inf_loop/id=000042,src=000698+000155,op=splice,rep=64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/inf_loop/id=000042,src=000698+000155,op=splice,rep=64 -------------------------------------------------------------------------------- /tests/fuzz_images/inf_loop/id=000043,src=000698+000155,op=splice,rep=128: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/inf_loop/id=000043,src=000698+000155,op=splice,rep=128 -------------------------------------------------------------------------------- /tests/fuzz_images/inf_loop/id=000044,src=000698+000155,op=splice,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/inf_loop/id=000044,src=000698+000155,op=splice,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/inf_loop/id=000045,src=000700,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/inf_loop/id=000045,src=000700,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000000,sig=06,src=000000,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000000,sig=06,src=000000,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000001,sig=06,src=000000,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000001,sig=06,src=000000,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000002,sig=06,src=000000,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000002,sig=06,src=000000,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000003,sig=06,src=000000,op=havoc,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000003,sig=06,src=000000,op=havoc,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000004,sig=06,src=000000,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000004,sig=06,src=000000,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000005,sig=06,src=000000,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000005,sig=06,src=000000,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000006,sig=06,src=000000,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000006,sig=06,src=000000,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000007,sig=06,src=000000,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000007,sig=06,src=000000,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000008,sig=06,src=000000,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000008,sig=06,src=000000,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000009,sig=06,src=000000,op=havoc,rep=16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000009,sig=06,src=000000,op=havoc,rep=16 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000010,sig=06,src=000000,op=havoc,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000010,sig=06,src=000000,op=havoc,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000011,sig=06,src=000000,op=havoc,rep=16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000011,sig=06,src=000000,op=havoc,rep=16 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000012,sig=06,src=000000,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000012,sig=06,src=000000,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000013,sig=06,src=000000,op=havoc,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000013,sig=06,src=000000,op=havoc,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000014,sig=06,src=000000,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000014,sig=06,src=000000,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000015,sig=06,src=000000,op=havoc,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000015,sig=06,src=000000,op=havoc,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000016,sig=06,src=000000,op=havoc,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000016,sig=06,src=000000,op=havoc,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000021,sig=06,src=000004,op=havoc,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000021,sig=06,src=000004,op=havoc,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000022,sig=06,src=000004,op=havoc,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000022,sig=06,src=000004,op=havoc,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000025,sig=06,src=000007,op=havoc,rep=16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000025,sig=06,src=000007,op=havoc,rep=16 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000027,sig=06,src=000026+000062,op=splice,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000027,sig=06,src=000026+000062,op=splice,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000028,sig=06,src=000027,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000028,sig=06,src=000027,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000029,sig=06,src=000027,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000029,sig=06,src=000027,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000030,sig=06,src=000027,op=havoc,rep=16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000030,sig=06,src=000027,op=havoc,rep=16 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000031,sig=06,src=000027,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000031,sig=06,src=000027,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000032,sig=06,src=000027,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000032,sig=06,src=000027,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000033,sig=06,src=000027+000178,op=splice,rep=64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000033,sig=06,src=000027+000178,op=splice,rep=64 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000034,sig=06,src=000040,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000034,sig=06,src=000040,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000035,sig=06,src=000056,op=havoc,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000035,sig=06,src=000056,op=havoc,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000036,sig=06,src=000059+000071,op=splice,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000036,sig=06,src=000059+000071,op=splice,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000037,sig=06,src=000062,op=havoc,rep=32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000037,sig=06,src=000062,op=havoc,rep=32 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000038,sig=06,src=000066,op=havoc,rep=32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000038,sig=06,src=000066,op=havoc,rep=32 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000039,sig=06,src=000066+000044,op=splice,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000039,sig=06,src=000066+000044,op=splice,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000040,sig=06,src=000068+000059,op=splice,rep=16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000040,sig=06,src=000068+000059,op=splice,rep=16 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000041,sig=06,src=000073,op=havoc,rep=16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000041,sig=06,src=000073,op=havoc,rep=16 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000042,sig=06,src=000087,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000042,sig=06,src=000087,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000043,sig=06,src=000181,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000043,sig=06,src=000181,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000045,sig=06,src=000266,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000045,sig=06,src=000266,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000046,sig=06,src=000276,op=havoc,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000046,sig=06,src=000276,op=havoc,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000048,sig=06,src=000313+000233,op=splice,rep=64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000048,sig=06,src=000313+000233,op=splice,rep=64 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000051,sig=06,src=000329,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000051,sig=06,src=000329,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000052,sig=06,src=000329,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000052,sig=06,src=000329,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000053,sig=06,src=000329+000130,op=splice,rep=128: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000053,sig=06,src=000329+000130,op=splice,rep=128 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000054,sig=06,src=000331,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000054,sig=06,src=000331,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000056,sig=06,src=000351+000306,op=splice,rep=64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000056,sig=06,src=000351+000306,op=splice,rep=64 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000058,sig=06,src=000361,op=havoc,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000058,sig=06,src=000361,op=havoc,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000059,sig=06,src=000363,op=havoc,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000059,sig=06,src=000363,op=havoc,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000060,sig=06,src=000363,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000060,sig=06,src=000363,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000061,sig=06,src=000364,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000061,sig=06,src=000364,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000063,sig=06,src=000060+000137,op=splice,rep=128: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000063,sig=06,src=000060+000137,op=splice,rep=128 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000064,sig=06,src=000394,op=havoc,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000064,sig=06,src=000394,op=havoc,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/oom_crash/id=000068,sig=06,src=000127,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oom_crash/id=000068,sig=06,src=000127,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/oor_panic/id=000017,sig=06,src=000001,op=havoc,rep=64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oor_panic/id=000017,sig=06,src=000001,op=havoc,rep=64 -------------------------------------------------------------------------------- /tests/fuzz_images/oor_panic/id=000018,sig=06,src=000001,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oor_panic/id=000018,sig=06,src=000001,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/oor_panic/id=000019,sig=06,src=000001,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oor_panic/id=000019,sig=06,src=000001,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/oor_panic/id=000023,sig=06,src=000006,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oor_panic/id=000023,sig=06,src=000006,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/oor_panic/id=000024,sig=06,src=000006,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oor_panic/id=000024,sig=06,src=000006,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/oor_panic/id=000026,sig=06,src=000012,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oor_panic/id=000026,sig=06,src=000012,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/oor_panic/id=000044,sig=06,src=000224,op=havoc,rep=4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oor_panic/id=000044,sig=06,src=000224,op=havoc,rep=4 -------------------------------------------------------------------------------- /tests/fuzz_images/oor_panic/id=000049,sig=06,src=000318,op=havoc,rep=8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oor_panic/id=000049,sig=06,src=000318,op=havoc,rep=8 -------------------------------------------------------------------------------- /tests/fuzz_images/oor_panic/id=000050,sig=06,src=000322,op=havoc,rep=32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oor_panic/id=000050,sig=06,src=000322,op=havoc,rep=32 -------------------------------------------------------------------------------- /tests/fuzz_images/oor_panic/id=000055,sig=06,src=000343,op=havoc,rep=2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oor_panic/id=000055,sig=06,src=000343,op=havoc,rep=2 -------------------------------------------------------------------------------- /tests/fuzz_images/oor_panic/sample-format-empty-vec.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oor_panic/sample-format-empty-vec.bin -------------------------------------------------------------------------------- /tests/fuzz_images/oor_panic/sample-get-lzw-stuck.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_images/oor_panic/sample-get-lzw-stuck.tiff -------------------------------------------------------------------------------- /tests/fuzz_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/fuzz_tests.rs -------------------------------------------------------------------------------- /tests/images/12bit.cropped.rgb.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/12bit.cropped.rgb.tiff -------------------------------------------------------------------------------- /tests/images/12bit.cropped.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/12bit.cropped.tiff -------------------------------------------------------------------------------- /tests/images/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/COPYRIGHT -------------------------------------------------------------------------------- /tests/images/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/README.txt -------------------------------------------------------------------------------- /tests/images/bigtiff/BigTIFF.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/bigtiff/BigTIFF.tif -------------------------------------------------------------------------------- /tests/images/bigtiff/BigTIFFLong.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/bigtiff/BigTIFFLong.tif -------------------------------------------------------------------------------- /tests/images/bigtiff/BigTIFFMotorola.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/bigtiff/BigTIFFMotorola.tif -------------------------------------------------------------------------------- /tests/images/cmyk-3c-16b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/cmyk-3c-16b.tiff -------------------------------------------------------------------------------- /tests/images/cmyk-3c-32b-float.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/cmyk-3c-32b-float.tiff -------------------------------------------------------------------------------- /tests/images/cmyk-3c-8b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/cmyk-3c-8b.tiff -------------------------------------------------------------------------------- /tests/images/cmyk-4c-8b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/cmyk-4c-8b.tiff -------------------------------------------------------------------------------- /tests/images/extra_bits_gray_8b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/extra_bits_gray_8b.tiff -------------------------------------------------------------------------------- /tests/images/extra_bits_rgb_8b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/extra_bits_rgb_8b.tiff -------------------------------------------------------------------------------- /tests/images/fax4.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/fax4.tiff -------------------------------------------------------------------------------- /tests/images/geo-5b.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/geo-5b.tif -------------------------------------------------------------------------------- /tests/images/gradient-1c-32b-float.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/gradient-1c-32b-float.tiff -------------------------------------------------------------------------------- /tests/images/gradient-1c-32b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/gradient-1c-32b.tiff -------------------------------------------------------------------------------- /tests/images/gradient-1c-64b-float.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/gradient-1c-64b-float.tiff -------------------------------------------------------------------------------- /tests/images/gradient-1c-64b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/gradient-1c-64b.tiff -------------------------------------------------------------------------------- /tests/images/gradient-3c-32b-float.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/gradient-3c-32b-float.tiff -------------------------------------------------------------------------------- /tests/images/gradient-3c-32b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/gradient-3c-32b.tiff -------------------------------------------------------------------------------- /tests/images/gradient-3c-64b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/gradient-3c-64b.tiff -------------------------------------------------------------------------------- /tests/images/imagemagick_group4.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/imagemagick_group4.tiff -------------------------------------------------------------------------------- /tests/images/int16.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/int16.tif -------------------------------------------------------------------------------- /tests/images/int16_rgb.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/int16_rgb.tif -------------------------------------------------------------------------------- /tests/images/int16_zstd.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/int16_zstd.tif -------------------------------------------------------------------------------- /tests/images/int8.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/int8.tif -------------------------------------------------------------------------------- /tests/images/int8_rgb.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/int8_rgb.tif -------------------------------------------------------------------------------- /tests/images/issue_69_lzw.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/issue_69_lzw.tiff -------------------------------------------------------------------------------- /tests/images/issue_69_packbits.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/issue_69_packbits.tiff -------------------------------------------------------------------------------- /tests/images/logluv-3c-16b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/logluv-3c-16b.tiff -------------------------------------------------------------------------------- /tests/images/minisblack-1c-16b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/minisblack-1c-16b.tiff -------------------------------------------------------------------------------- /tests/images/minisblack-1c-8b.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/minisblack-1c-8b.pgm -------------------------------------------------------------------------------- /tests/images/minisblack-1c-8b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/minisblack-1c-8b.tiff -------------------------------------------------------------------------------- /tests/images/minisblack-1c-i16b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/minisblack-1c-i16b.tiff -------------------------------------------------------------------------------- /tests/images/minisblack-1c-i8b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/minisblack-1c-i8b.tiff -------------------------------------------------------------------------------- /tests/images/minisblack-2c-8b-alpha.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/minisblack-2c-8b-alpha.tiff -------------------------------------------------------------------------------- /tests/images/miniswhite-1c-1b.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/miniswhite-1c-1b.pbm -------------------------------------------------------------------------------- /tests/images/miniswhite-1c-1b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/miniswhite-1c-1b.tiff -------------------------------------------------------------------------------- /tests/images/no_rows_per_strip.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/no_rows_per_strip.tiff -------------------------------------------------------------------------------- /tests/images/palette-1c-1b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/palette-1c-1b.tiff -------------------------------------------------------------------------------- /tests/images/palette-1c-4b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/palette-1c-4b.tiff -------------------------------------------------------------------------------- /tests/images/palette-1c-8b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/palette-1c-8b.tiff -------------------------------------------------------------------------------- /tests/images/planar-rgb-u8.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/planar-rgb-u8.tif -------------------------------------------------------------------------------- /tests/images/predictor-3-gray-f32.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/predictor-3-gray-f32.tif -------------------------------------------------------------------------------- /tests/images/predictor-3-rgb-f32.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/predictor-3-rgb-f32.tif -------------------------------------------------------------------------------- /tests/images/quad-lzw-compat.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/quad-lzw-compat.tiff -------------------------------------------------------------------------------- /tests/images/quad-tile.jpg.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/quad-tile.jpg.tiff -------------------------------------------------------------------------------- /tests/images/random-fp16-pred2.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/random-fp16-pred2.tiff -------------------------------------------------------------------------------- /tests/images/random-fp16-pred3.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/random-fp16-pred3.tiff -------------------------------------------------------------------------------- /tests/images/random-fp16.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/random-fp16.pgm -------------------------------------------------------------------------------- /tests/images/random-fp16.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/random-fp16.tiff -------------------------------------------------------------------------------- /tests/images/rgb-3c-16b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/rgb-3c-16b.tiff -------------------------------------------------------------------------------- /tests/images/rgb-3c-8b.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/rgb-3c-8b.ppm -------------------------------------------------------------------------------- /tests/images/rgb-3c-8b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/rgb-3c-8b.tiff -------------------------------------------------------------------------------- /tests/images/single-black-fp16.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/single-black-fp16.tiff -------------------------------------------------------------------------------- /tests/images/tiled-cmyk-i8.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/tiled-cmyk-i8.tif -------------------------------------------------------------------------------- /tests/images/tiled-gray-i1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/tiled-gray-i1.tif -------------------------------------------------------------------------------- /tests/images/tiled-jpeg-rgb-u8.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/tiled-jpeg-rgb-u8.tif -------------------------------------------------------------------------------- /tests/images/tiled-jpeg-ycbcr.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/tiled-jpeg-ycbcr.tif -------------------------------------------------------------------------------- /tests/images/tiled-oversize-gray-i8.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/tiled-oversize-gray-i8.tif -------------------------------------------------------------------------------- /tests/images/tiled-rect-rgb-u8.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/tiled-rect-rgb-u8.tif -------------------------------------------------------------------------------- /tests/images/tiled-rgb-u8.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/tiled-rgb-u8.tif -------------------------------------------------------------------------------- /tests/images/white-fp16-pred2.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/white-fp16-pred2.tiff -------------------------------------------------------------------------------- /tests/images/white-fp16-pred3.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/white-fp16-pred3.tiff -------------------------------------------------------------------------------- /tests/images/white-fp16.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/images/white-fp16.tiff -------------------------------------------------------------------------------- /tests/predict.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/predict.rs -------------------------------------------------------------------------------- /tests/subsubifds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/subsubifds.rs -------------------------------------------------------------------------------- /tests/subsubifds.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/image-rs/image-tiff/HEAD/tests/subsubifds.tif --------------------------------------------------------------------------------