├── .gitignore ├── LICENSE ├── README.md ├── config └── config.exs ├── lib ├── imagineer.ex └── imagineer │ ├── format_detector.ex │ ├── image.ex │ └── image │ ├── jpg.ex │ ├── png.ex │ └── png │ ├── chunk.ex │ ├── chunk │ ├── decoders │ │ ├── background.ex │ │ ├── data_content.ex │ │ ├── end.ex │ │ ├── gamma.ex │ │ ├── header.ex │ │ ├── palette.ex │ │ ├── physical_pixel_dimensions.ex │ │ ├── text.ex │ │ ├── time.ex │ │ └── transparency.ex │ ├── encoders │ │ ├── background.ex │ │ ├── data_content.ex │ │ ├── end.ex │ │ ├── gamma.ex │ │ ├── header.ex │ │ ├── palette.ex │ │ ├── physical_pixel_dimensions.ex │ │ ├── time.ex │ │ └── transparency.ex │ └── helpers.ex │ ├── compression.ex │ ├── compression │ └── zlib.ex │ ├── data_content.ex │ ├── filter.ex │ ├── filter │ ├── basic.ex │ └── basic │ │ ├── average.ex │ │ ├── paeth.ex │ │ ├── sub.ex │ │ └── up.ex │ ├── helpers.ex │ ├── interlace.ex │ ├── interlace │ ├── adam7.ex │ ├── adam7 │ │ ├── pass.ex │ │ └── scanlines.ex │ └── none.ex │ ├── palette.ex │ ├── pixels.ex │ └── pixels │ ├── adam7.ex │ └── no_interlace.ex ├── mix.exs ├── mix.lock └── test ├── imagineer └── image │ ├── png │ ├── chunk │ │ └── encoders │ │ │ ├── physical_pixel_dimensions.exs │ │ │ └── time_test.exs │ ├── compression │ │ └── zlib_test.exs │ ├── data_content_test.exs │ ├── filter │ │ ├── basic │ │ │ ├── average_text.exs │ │ │ ├── paeth_test.exs │ │ │ ├── sub_test.exs │ │ │ └── up_test.exs │ │ └── basic_test.exs │ ├── interlace │ │ ├── adam7 │ │ │ ├── pass_test.exs │ │ │ └── scanlines_test.exs │ │ ├── adam7_test.exs │ │ └── none_test.exs │ ├── pixels │ │ └── adam7_test.exs │ ├── pixels_test.exs │ └── pngsuite │ │ ├── ancillary │ │ ├── physical_pixel_dimensions_test.exs │ │ └── time_test.exs │ │ ├── background │ │ ├── background_test.exs │ │ └── no_background_test.exs │ │ ├── basic │ │ ├── grayscale_alpha_test.exs │ │ ├── grayscale_test.exs │ │ ├── palatte_test.exs │ │ ├── rgb_alpha_test.exs │ │ └── rgb_test.exs │ │ ├── compression │ │ └── zlib_test.exs │ │ ├── interlaced │ │ └── grayscale_test.exs │ │ ├── ordering │ │ └── chunk_ordering_test.exs │ │ ├── sizes │ │ ├── big_and_odd_test.exs │ │ └── small_and_weird_test.exs │ │ └── transparency │ │ └── transparency_test.exs │ └── png_test.exs ├── imagineer_test.exs ├── support ├── images │ ├── jpg │ │ └── black.jpg │ ├── png │ │ ├── alpaca.png │ │ ├── baby_octopus.png │ │ └── seneca-logo.png │ └── pngsuite │ │ ├── PngSuite.LICENSE │ │ ├── PngSuite.README │ │ ├── PngSuite.png │ │ ├── ancillary │ │ ├── ccwn2c08.png │ │ ├── ccwn3p08.png │ │ ├── cdfn2c08.png │ │ ├── cdhn2c08.png │ │ ├── cdsn2c08.png │ │ ├── cdun2c08.png │ │ ├── ch1n3p04.png │ │ ├── ch2n3p08.png │ │ ├── cm0n0g04.png │ │ ├── cm7n0g04.png │ │ ├── cm9n0g04.png │ │ ├── cs3n2c16.png │ │ ├── cs3n3p08.png │ │ ├── cs5n2c08.png │ │ ├── cs5n3p08.png │ │ ├── cs8n2c08.png │ │ ├── cs8n3p08.png │ │ ├── ct0n0g04.png │ │ ├── ct1n0g04.png │ │ ├── cten0g04.png │ │ ├── ctfn0g04.png │ │ ├── ctgn0g04.png │ │ ├── cthn0g04.png │ │ ├── ctjn0g04.png │ │ └── ctzn0g04.png │ │ ├── background │ │ ├── bgai4a08.png │ │ ├── bgai4a16.png │ │ ├── bgan6a08.png │ │ ├── bgan6a16.png │ │ ├── bgbn4a08.png │ │ ├── bggn4a16.png │ │ ├── bgwn6a08.png │ │ └── bgyn6a16.png │ │ ├── basic │ │ ├── basn0g01.png │ │ ├── basn0g02.png │ │ ├── basn0g04.png │ │ ├── basn0g08.png │ │ ├── basn0g16.png │ │ ├── basn2c08.png │ │ ├── basn2c16.png │ │ ├── basn3p01.png │ │ ├── basn3p02.png │ │ ├── basn3p04.png │ │ ├── basn3p08.png │ │ ├── basn4a08.png │ │ ├── basn4a16.png │ │ ├── basn6a08.png │ │ └── basn6a16.png │ │ ├── compression │ │ ├── z00n2c08.png │ │ ├── z03n2c08.png │ │ ├── z06n2c08.png │ │ └── z09n2c08.png │ │ ├── corrupted │ │ ├── xc1n0g08.png │ │ ├── xc9n2c08.png │ │ ├── xcrn0g04.png │ │ ├── xcsn0g01.png │ │ ├── xd0n2c08.png │ │ ├── xd3n2c08.png │ │ ├── xd9n2c08.png │ │ ├── xdtn0g01.png │ │ ├── xhdn0g08.png │ │ ├── xlfn0g04.png │ │ ├── xs1n0g01.png │ │ ├── xs2n0g01.png │ │ ├── xs4n0g01.png │ │ └── xs7n0g01.png │ │ ├── filtering │ │ ├── f00n0g08.png │ │ ├── f00n2c08.png │ │ ├── f01n0g08.png │ │ ├── f01n2c08.png │ │ ├── f02n0g08.png │ │ ├── f02n2c08.png │ │ ├── f03n0g08.png │ │ ├── f03n2c08.png │ │ ├── f04n0g08.png │ │ ├── f04n2c08.png │ │ └── f99n0g04.png │ │ ├── gamma │ │ ├── g03n0g16.png │ │ ├── g03n2c08.png │ │ ├── g03n3p04.png │ │ ├── g04n0g16.png │ │ ├── g04n2c08.png │ │ ├── g04n3p04.png │ │ ├── g05n0g16.png │ │ ├── g05n2c08.png │ │ ├── g05n3p04.png │ │ ├── g07n0g16.png │ │ ├── g07n2c08.png │ │ ├── g07n3p04.png │ │ ├── g10n0g16.png │ │ ├── g10n2c08.png │ │ ├── g10n3p04.png │ │ ├── g25n0g16.png │ │ ├── g25n2c08.png │ │ └── g25n3p04.png │ │ ├── interlaced │ │ ├── basi0g01.png │ │ ├── basi0g02.png │ │ ├── basi0g04.png │ │ ├── basi0g08.png │ │ ├── basi0g16.png │ │ ├── basi2c08.png │ │ ├── basi2c16.png │ │ ├── basi3p01.png │ │ ├── basi3p02.png │ │ ├── basi3p04.png │ │ ├── basi3p08.png │ │ ├── basi4a08.png │ │ ├── basi4a16.png │ │ ├── basi6a08.png │ │ └── basi6a16.png │ │ ├── ordering │ │ ├── oi1n0g16.png │ │ ├── oi1n2c16.png │ │ ├── oi2n0g16.png │ │ ├── oi2n2c16.png │ │ ├── oi4n0g16.png │ │ ├── oi4n2c16.png │ │ ├── oi9n0g16.png │ │ └── oi9n2c16.png │ │ ├── palettes │ │ ├── pp0n2c16.png │ │ ├── pp0n6a08.png │ │ ├── ps1n0g08.png │ │ ├── ps1n2c16.png │ │ ├── ps2n0g08.png │ │ └── ps2n2c16.png │ │ ├── sizes │ │ ├── s01i3p01.png │ │ ├── s01n3p01.png │ │ ├── s02i3p01.png │ │ ├── s02n3p01.png │ │ ├── s03i3p01.png │ │ ├── s03n3p01.png │ │ ├── s04i3p01.png │ │ ├── s04n3p01.png │ │ ├── s05i3p02.png │ │ ├── s05n3p02.png │ │ ├── s06i3p02.png │ │ ├── s06n3p02.png │ │ ├── s07i3p02.png │ │ ├── s07n3p02.png │ │ ├── s08i3p02.png │ │ ├── s08n3p02.png │ │ ├── s09i3p02.png │ │ ├── s09n3p02.png │ │ ├── s32i3p04.png │ │ ├── s32n3p04.png │ │ ├── s33i3p04.png │ │ ├── s33n3p04.png │ │ ├── s34i3p04.png │ │ ├── s34n3p04.png │ │ ├── s35i3p04.png │ │ ├── s35n3p04.png │ │ ├── s36i3p04.png │ │ ├── s36n3p04.png │ │ ├── s37i3p04.png │ │ ├── s37n3p04.png │ │ ├── s38i3p04.png │ │ ├── s38n3p04.png │ │ ├── s39i3p04.png │ │ ├── s39n3p04.png │ │ ├── s40i3p04.png │ │ └── s40n3p04.png │ │ └── transparency │ │ ├── tbbn0g04.png │ │ ├── tbbn2c16.png │ │ ├── tbbn3p08.png │ │ ├── tbgn2c16.png │ │ ├── tbgn3p08.png │ │ ├── tbrn2c08.png │ │ ├── tbwn0g16.png │ │ ├── tbwn3p08.png │ │ ├── tbyn3p08.png │ │ ├── tm3n3p02.png │ │ ├── tp0n0g08.png │ │ ├── tp0n2c08.png │ │ ├── tp0n3p08.png │ │ └── tp1n3p08.png └── output_pixels.rb └── test_helper.exs /.gitignore: -------------------------------------------------------------------------------- 1 | /_build 2 | /deps 3 | erl_crash.dump 4 | *.ez 5 | /tmp/* 6 | /doc 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/README.md -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/config/config.exs -------------------------------------------------------------------------------- /lib/imagineer.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer.ex -------------------------------------------------------------------------------- /lib/imagineer/format_detector.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/format_detector.ex -------------------------------------------------------------------------------- /lib/imagineer/image.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image.ex -------------------------------------------------------------------------------- /lib/imagineer/image/jpg.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/jpg.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/chunk.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/chunk.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/chunk/decoders/background.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/chunk/decoders/background.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/chunk/decoders/data_content.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/chunk/decoders/data_content.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/chunk/decoders/end.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/chunk/decoders/end.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/chunk/decoders/gamma.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/chunk/decoders/gamma.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/chunk/decoders/header.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/chunk/decoders/header.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/chunk/decoders/palette.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/chunk/decoders/palette.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/chunk/decoders/physical_pixel_dimensions.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/chunk/decoders/physical_pixel_dimensions.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/chunk/decoders/text.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/chunk/decoders/text.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/chunk/decoders/time.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/chunk/decoders/time.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/chunk/decoders/transparency.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/chunk/decoders/transparency.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/chunk/encoders/background.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/chunk/encoders/background.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/chunk/encoders/data_content.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/chunk/encoders/data_content.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/chunk/encoders/end.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/chunk/encoders/end.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/chunk/encoders/gamma.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/chunk/encoders/gamma.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/chunk/encoders/header.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/chunk/encoders/header.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/chunk/encoders/palette.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/chunk/encoders/palette.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/chunk/encoders/physical_pixel_dimensions.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/chunk/encoders/physical_pixel_dimensions.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/chunk/encoders/time.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/chunk/encoders/time.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/chunk/encoders/transparency.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/chunk/encoders/transparency.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/chunk/helpers.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/chunk/helpers.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/compression.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/compression.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/compression/zlib.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/compression/zlib.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/data_content.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/data_content.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/filter.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/filter.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/filter/basic.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/filter/basic.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/filter/basic/average.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/filter/basic/average.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/filter/basic/paeth.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/filter/basic/paeth.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/filter/basic/sub.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/filter/basic/sub.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/filter/basic/up.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/filter/basic/up.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/helpers.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/helpers.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/interlace.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/interlace.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/interlace/adam7.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/interlace/adam7.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/interlace/adam7/pass.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/interlace/adam7/pass.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/interlace/adam7/scanlines.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/interlace/adam7/scanlines.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/interlace/none.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/interlace/none.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/palette.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/palette.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/pixels.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/pixels.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/pixels/adam7.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/pixels/adam7.ex -------------------------------------------------------------------------------- /lib/imagineer/image/png/pixels/no_interlace.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/lib/imagineer/image/png/pixels/no_interlace.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/mix.lock -------------------------------------------------------------------------------- /test/imagineer/image/png/chunk/encoders/physical_pixel_dimensions.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/chunk/encoders/physical_pixel_dimensions.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/chunk/encoders/time_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/chunk/encoders/time_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/compression/zlib_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/compression/zlib_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/data_content_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/data_content_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/filter/basic/average_text.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/filter/basic/average_text.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/filter/basic/paeth_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/filter/basic/paeth_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/filter/basic/sub_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/filter/basic/sub_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/filter/basic/up_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/filter/basic/up_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/filter/basic_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/filter/basic_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/interlace/adam7/pass_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/interlace/adam7/pass_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/interlace/adam7/scanlines_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/interlace/adam7/scanlines_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/interlace/adam7_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/interlace/adam7_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/interlace/none_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/interlace/none_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/pixels/adam7_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/pixels/adam7_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/pixels_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/pixels_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/pngsuite/ancillary/physical_pixel_dimensions_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/pngsuite/ancillary/physical_pixel_dimensions_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/pngsuite/ancillary/time_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/pngsuite/ancillary/time_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/pngsuite/background/background_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/pngsuite/background/background_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/pngsuite/background/no_background_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/pngsuite/background/no_background_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/pngsuite/basic/grayscale_alpha_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/pngsuite/basic/grayscale_alpha_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/pngsuite/basic/grayscale_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/pngsuite/basic/grayscale_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/pngsuite/basic/palatte_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/pngsuite/basic/palatte_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/pngsuite/basic/rgb_alpha_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/pngsuite/basic/rgb_alpha_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/pngsuite/basic/rgb_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/pngsuite/basic/rgb_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/pngsuite/compression/zlib_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/pngsuite/compression/zlib_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/pngsuite/interlaced/grayscale_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/pngsuite/interlaced/grayscale_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/pngsuite/ordering/chunk_ordering_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/pngsuite/ordering/chunk_ordering_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/pngsuite/sizes/big_and_odd_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/pngsuite/sizes/big_and_odd_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/pngsuite/sizes/small_and_weird_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/pngsuite/sizes/small_and_weird_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png/pngsuite/transparency/transparency_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png/pngsuite/transparency/transparency_test.exs -------------------------------------------------------------------------------- /test/imagineer/image/png_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer/image/png_test.exs -------------------------------------------------------------------------------- /test/imagineer_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/imagineer_test.exs -------------------------------------------------------------------------------- /test/support/images/jpg/black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/jpg/black.jpg -------------------------------------------------------------------------------- /test/support/images/png/alpaca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/png/alpaca.png -------------------------------------------------------------------------------- /test/support/images/png/baby_octopus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/png/baby_octopus.png -------------------------------------------------------------------------------- /test/support/images/png/seneca-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/png/seneca-logo.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/PngSuite.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/PngSuite.LICENSE -------------------------------------------------------------------------------- /test/support/images/pngsuite/PngSuite.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/PngSuite.README -------------------------------------------------------------------------------- /test/support/images/pngsuite/PngSuite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/PngSuite.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/ccwn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/ccwn2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/ccwn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/ccwn3p08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/cdfn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/cdfn2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/cdhn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/cdhn2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/cdsn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/cdsn2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/cdun2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/cdun2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/ch1n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/ch1n3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/ch2n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/ch2n3p08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/cm0n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/cm0n0g04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/cm7n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/cm7n0g04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/cm9n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/cm9n0g04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/cs3n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/cs3n2c16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/cs3n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/cs3n3p08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/cs5n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/cs5n2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/cs5n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/cs5n3p08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/cs8n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/cs8n2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/cs8n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/cs8n3p08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/ct0n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/ct0n0g04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/ct1n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/ct1n0g04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/cten0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/cten0g04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/ctfn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/ctfn0g04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/ctgn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/ctgn0g04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/cthn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/cthn0g04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/ctjn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/ctjn0g04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ancillary/ctzn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ancillary/ctzn0g04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/background/bgai4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/background/bgai4a08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/background/bgai4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/background/bgai4a16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/background/bgan6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/background/bgan6a08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/background/bgan6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/background/bgan6a16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/background/bgbn4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/background/bgbn4a08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/background/bggn4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/background/bggn4a16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/background/bgwn6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/background/bgwn6a08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/background/bgyn6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/background/bgyn6a16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/basic/basn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/basic/basn0g01.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/basic/basn0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/basic/basn0g02.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/basic/basn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/basic/basn0g04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/basic/basn0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/basic/basn0g08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/basic/basn0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/basic/basn0g16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/basic/basn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/basic/basn2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/basic/basn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/basic/basn2c16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/basic/basn3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/basic/basn3p01.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/basic/basn3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/basic/basn3p02.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/basic/basn3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/basic/basn3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/basic/basn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/basic/basn3p08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/basic/basn4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/basic/basn4a08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/basic/basn4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/basic/basn4a16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/basic/basn6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/basic/basn6a08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/basic/basn6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/basic/basn6a16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/compression/z00n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/compression/z00n2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/compression/z03n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/compression/z03n2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/compression/z06n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/compression/z06n2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/compression/z09n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/compression/z09n2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/corrupted/xc1n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/corrupted/xc1n0g08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/corrupted/xc9n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/corrupted/xc9n2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/corrupted/xcrn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/corrupted/xcrn0g04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/corrupted/xcsn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/corrupted/xcsn0g01.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/corrupted/xd0n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/corrupted/xd0n2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/corrupted/xd3n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/corrupted/xd3n2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/corrupted/xd9n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/corrupted/xd9n2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/corrupted/xdtn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/corrupted/xdtn0g01.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/corrupted/xhdn0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/corrupted/xhdn0g08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/corrupted/xlfn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/corrupted/xlfn0g04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/corrupted/xs1n0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/corrupted/xs1n0g01.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/corrupted/xs2n0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/corrupted/xs2n0g01.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/corrupted/xs4n0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/corrupted/xs4n0g01.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/corrupted/xs7n0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/corrupted/xs7n0g01.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/filtering/f00n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/filtering/f00n0g08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/filtering/f00n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/filtering/f00n2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/filtering/f01n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/filtering/f01n0g08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/filtering/f01n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/filtering/f01n2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/filtering/f02n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/filtering/f02n0g08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/filtering/f02n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/filtering/f02n2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/filtering/f03n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/filtering/f03n0g08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/filtering/f03n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/filtering/f03n2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/filtering/f04n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/filtering/f04n0g08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/filtering/f04n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/filtering/f04n2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/filtering/f99n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/filtering/f99n0g04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/gamma/g03n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/gamma/g03n0g16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/gamma/g03n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/gamma/g03n2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/gamma/g03n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/gamma/g03n3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/gamma/g04n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/gamma/g04n0g16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/gamma/g04n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/gamma/g04n2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/gamma/g04n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/gamma/g04n3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/gamma/g05n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/gamma/g05n0g16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/gamma/g05n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/gamma/g05n2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/gamma/g05n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/gamma/g05n3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/gamma/g07n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/gamma/g07n0g16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/gamma/g07n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/gamma/g07n2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/gamma/g07n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/gamma/g07n3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/gamma/g10n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/gamma/g10n0g16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/gamma/g10n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/gamma/g10n2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/gamma/g10n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/gamma/g10n3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/gamma/g25n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/gamma/g25n0g16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/gamma/g25n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/gamma/g25n2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/gamma/g25n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/gamma/g25n3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/interlaced/basi0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/interlaced/basi0g01.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/interlaced/basi0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/interlaced/basi0g02.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/interlaced/basi0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/interlaced/basi0g04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/interlaced/basi0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/interlaced/basi0g08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/interlaced/basi0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/interlaced/basi0g16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/interlaced/basi2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/interlaced/basi2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/interlaced/basi2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/interlaced/basi2c16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/interlaced/basi3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/interlaced/basi3p01.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/interlaced/basi3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/interlaced/basi3p02.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/interlaced/basi3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/interlaced/basi3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/interlaced/basi3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/interlaced/basi3p08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/interlaced/basi4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/interlaced/basi4a08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/interlaced/basi4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/interlaced/basi4a16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/interlaced/basi6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/interlaced/basi6a08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/interlaced/basi6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/interlaced/basi6a16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ordering/oi1n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ordering/oi1n0g16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ordering/oi1n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ordering/oi1n2c16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ordering/oi2n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ordering/oi2n0g16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ordering/oi2n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ordering/oi2n2c16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ordering/oi4n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ordering/oi4n0g16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ordering/oi4n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ordering/oi4n2c16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ordering/oi9n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ordering/oi9n0g16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/ordering/oi9n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/ordering/oi9n2c16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/palettes/pp0n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/palettes/pp0n2c16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/palettes/pp0n6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/palettes/pp0n6a08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/palettes/ps1n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/palettes/ps1n0g08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/palettes/ps1n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/palettes/ps1n2c16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/palettes/ps2n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/palettes/ps2n0g08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/palettes/ps2n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/palettes/ps2n2c16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s01i3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s01i3p01.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s01n3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s01n3p01.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s02i3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s02i3p01.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s02n3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s02n3p01.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s03i3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s03i3p01.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s03n3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s03n3p01.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s04i3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s04i3p01.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s04n3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s04n3p01.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s05i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s05i3p02.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s05n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s05n3p02.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s06i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s06i3p02.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s06n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s06n3p02.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s07i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s07i3p02.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s07n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s07n3p02.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s08i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s08i3p02.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s08n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s08n3p02.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s09i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s09i3p02.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s09n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s09n3p02.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s32i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s32i3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s32n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s32n3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s33i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s33i3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s33n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s33n3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s34i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s34i3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s34n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s34n3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s35i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s35i3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s35n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s35n3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s36i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s36i3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s36n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s36n3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s37i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s37i3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s37n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s37n3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s38i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s38i3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s38n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s38n3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s39i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s39i3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s39n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s39n3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s40i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s40i3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/sizes/s40n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/sizes/s40n3p04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/transparency/tbbn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/transparency/tbbn0g04.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/transparency/tbbn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/transparency/tbbn2c16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/transparency/tbbn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/transparency/tbbn3p08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/transparency/tbgn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/transparency/tbgn2c16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/transparency/tbgn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/transparency/tbgn3p08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/transparency/tbrn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/transparency/tbrn2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/transparency/tbwn0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/transparency/tbwn0g16.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/transparency/tbwn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/transparency/tbwn3p08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/transparency/tbyn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/transparency/tbyn3p08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/transparency/tm3n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/transparency/tm3n3p02.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/transparency/tp0n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/transparency/tp0n0g08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/transparency/tp0n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/transparency/tp0n2c08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/transparency/tp0n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/transparency/tp0n3p08.png -------------------------------------------------------------------------------- /test/support/images/pngsuite/transparency/tp1n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/images/pngsuite/transparency/tp1n3p08.png -------------------------------------------------------------------------------- /test/support/output_pixels.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyre/imagineer/HEAD/test/support/output_pixels.rb -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | 3 | File.mkdir_p!("./tmp") 4 | --------------------------------------------------------------------------------