├── .github ├── FUNDING.yml ├── disabled │ └── android.yml └── workflows │ ├── Documentation.yml │ ├── Tests.yml │ ├── iOS.yml │ ├── tvOS.yml │ ├── visionOS.yml │ └── watchOS.yml ├── .gitignore ├── .mailmap ├── Benchmarks ├── Compression │ ├── C │ │ ├── main │ │ └── main.c │ └── Swift │ │ └── Main.swift ├── Decompression │ ├── C │ │ ├── main │ │ └── main.c │ └── Swift │ │ └── Main.swift ├── README.md ├── Results │ ├── commit │ ├── compression-size@0.svg │ ├── compression-size@1.svg │ ├── compression-size@2.svg │ ├── compression-size@3.svg │ ├── compression-size@4.svg │ ├── compression-size@5.svg │ ├── compression-size@6.svg │ ├── compression-size@7.svg │ ├── compression-size@8.svg │ ├── compression-size@9.svg │ ├── compression-speed@0.svg │ ├── compression-speed@1.svg │ ├── compression-speed@2.svg │ ├── compression-speed@3.svg │ ├── compression-speed@4.svg │ ├── compression-speed@5.svg │ ├── compression-speed@6.svg │ ├── compression-speed@7.svg │ ├── compression-speed@8.svg │ ├── compression-speed@9.svg │ └── decompression-speed.svg └── Template.md ├── LICENSE ├── NOTICE ├── Notes ├── curves-nonphotographic-ii-1.svg ├── curves-photographic-ii-1.svg ├── histogram-iv-1.png ├── histogram-iv-2.png ├── histogram-iv-3.png ├── histogram-iv-4.png ├── histogram-v-1.png ├── histogram-v-2.png ├── improving-deflate-compression-ratio.md ├── improving-deflate-compression-speed.md └── low-level-swift-optimization.md ├── Package.resolved ├── Package.swift ├── README.md ├── Scripts └── TestAll ├── Snippets ├── LICENSE ├── LZ77 │ ├── BasicGzip.swift │ ├── StreamingGzip.swift │ └── StreamingZlib.swift └── PNG │ ├── BasicDecoding.swift │ ├── BasicEncoding.swift │ ├── CustomColor.swift │ ├── ImageMetadata.swift │ ├── ImagesInMemory.swift │ ├── Indexing.swift │ ├── OnlineDecoding.swift │ └── iPhoneOptimized.swift ├── Sources ├── LZ77 │ ├── Deflator │ │ ├── LZ77.Decades.swift │ │ ├── LZ77.Deflator.swift │ │ ├── LZ77.DeflatorBuffers.Stream.swift │ │ ├── LZ77.DeflatorBuffers.swift │ │ ├── LZ77.DeflatorDicing.Node.swift │ │ ├── LZ77.DeflatorDicing.swift │ │ ├── LZ77.DeflatorIn.swift │ │ ├── LZ77.DeflatorMatches.Depths.swift │ │ ├── LZ77.DeflatorMatches.swift │ │ ├── LZ77.DeflatorOut.swift │ │ ├── LZ77.DeflatorSearch.swift │ │ ├── LZ77.DeflatorTables.swift │ │ ├── LZ77.DeflatorTerm.Meta.swift │ │ ├── LZ77.DeflatorTerm.swift │ │ ├── LZ77.DeflatorWindow.Element.swift │ │ └── LZ77.DeflatorWindow.swift │ ├── F14 │ │ ├── F14.District.Index.swift │ │ ├── F14.District.swift │ │ ├── F14.Hash.swift │ │ ├── F14.HashTable.swift │ │ └── F14.swift │ ├── FixedWidthInteger (ext).swift │ ├── Gzip │ │ ├── Gzip.Deflator.swift │ │ ├── Gzip.Format.Integral.swift │ │ ├── Gzip.Format.swift │ │ ├── Gzip.Inflator.swift │ │ ├── Gzip.InflatorState.swift │ │ ├── Gzip.StreamHeader.swift │ │ ├── Gzip.StreamHeaderError.swift │ │ └── Gzip.swift │ ├── HuffmanCoding │ │ ├── LZ77.Codeword.swift │ │ ├── LZ77.Distance.swift │ │ ├── LZ77.Heap.swift │ │ ├── LZ77.HuffmanPattern.swift │ │ ├── LZ77.HuffmanTree.swift │ │ ├── LZ77.Metaword.swift │ │ └── LZ77.RunLiteral.swift │ ├── Inflator │ │ ├── LZ77.BlockMetadata.swift │ │ ├── LZ77.BlockShape.swift │ │ ├── LZ77.BlockState.swift │ │ ├── LZ77.BlockType.swift │ │ ├── LZ77.DecompressionError.swift │ │ ├── LZ77.Inflator.swift │ │ ├── LZ77.InflatorBuffers.Stream.swift │ │ ├── LZ77.InflatorBuffers.swift │ │ ├── LZ77.InflatorIn.swift │ │ ├── LZ77.InflatorOut.swift │ │ ├── LZ77.InflatorState.swift │ │ ├── LZ77.InflatorTables.swift │ │ ├── LZ77.StreamHeader.swift │ │ └── LZ77.StreamHeaderError.swift │ ├── LZ77.Composites.swift │ ├── LZ77.Reversed.swift │ ├── LZ77.swift │ ├── SIMD16 (ext).swift │ ├── Wrappers │ │ ├── LZ77.Format.swift │ │ ├── LZ77.FormatType.swift │ │ ├── LZ77.MRC32.swift │ │ └── LZ77.StreamIntegral.swift │ └── docs.docc │ │ ├── GzipCompression │ │ ├── GzipCompression.gz │ │ ├── GzipCompression.txt.gz │ │ ├── empty.gz │ │ └── single-byte.gz │ │ └── README.md ├── LZ77Tests │ ├── Bitstreams.swift │ ├── Compression.swift │ ├── CompressionMicro.swift │ └── HardwareAcceleration.swift ├── PNG │ ├── Array (ext).swift │ ├── ArraySlice (ext).swift │ ├── ColorTargets │ │ ├── PNG.Color.swift │ │ ├── PNG.RGBA.swift │ │ └── PNG.VA.swift │ ├── Decoding │ │ ├── PNG.Context.swift │ │ ├── PNG.Decoder.swift │ │ ├── PNG.DecodingError.swift │ │ ├── PNG.Metadata.swift │ │ └── PNG.Standard.swift │ ├── Encoding │ │ ├── PNG.Encoder.Pass.swift │ │ ├── PNG.Encoder.swift │ │ └── PNG.FormattingError.swift │ ├── Formats │ │ ├── PNG.Format.Pixel.swift │ │ ├── PNG.Format.swift │ │ └── PNG.Layout.swift │ ├── General.swift │ ├── LZ77.DecompressionError (ext).swift │ ├── LZ77.DeflateHeaderError (ext).swift │ ├── Lexing │ │ ├── PNG.BytestreamDestination.swift │ │ ├── PNG.BytestreamSource.swift │ │ ├── PNG.Chunk.swift │ │ └── PNG.LexingError.swift │ ├── PNG.Error.swift │ ├── PNG.Image.swift │ ├── PNG.swift │ ├── Parsing │ │ ├── PNG.Background.Case.swift │ │ ├── PNG.Background.swift │ │ ├── PNG.Chromaticity.swift │ │ ├── PNG.ColorProfile.swift │ │ ├── PNG.ColorRendering.swift │ │ ├── PNG.Gamma.swift │ │ ├── PNG.Header.swift │ │ ├── PNG.Histogram.swift │ │ ├── PNG.Palette.swift │ │ ├── PNG.ParsingError.swift │ │ ├── PNG.Percentmille.swift │ │ ├── PNG.PhysicalDimensions.swift │ │ ├── PNG.SignificantBits.Case.swift │ │ ├── PNG.SignificantBits.swift │ │ ├── PNG.SuggestedPalette.Entries.swift │ │ ├── PNG.SuggestedPalette.swift │ │ ├── PNG.Text.swift │ │ ├── PNG.TimeModified.swift │ │ ├── PNG.Transparency.Case.swift │ │ └── PNG.Transparency.swift │ ├── System.swift │ ├── UnsafeMutableBufferPointer (ext).swift │ ├── __Entrypoint.swift │ └── docs.docc │ │ ├── BasicDecoding │ │ ├── BasicDecoding.md │ │ ├── BasicDecoding.png │ │ ├── BasicDecoding.png.rgba │ │ ├── BasicDecoding.v.png │ │ └── BasicDecoding.va.png │ │ ├── BasicEncoding │ │ ├── BasicEncoding-color-rgb.png │ │ ├── BasicEncoding-color-rgb@0.png │ │ ├── BasicEncoding-color-rgb@13.png │ │ ├── BasicEncoding-color-rgb@4.png │ │ ├── BasicEncoding-color-rgb@8.png │ │ ├── BasicEncoding-color-v.png │ │ ├── BasicEncoding-luminance-rgb.png │ │ ├── BasicEncoding-luminance-v.png │ │ ├── BasicEncoding.md │ │ └── BasicEncoding.rgba │ │ ├── BuildFlags.md │ │ ├── CustomColor │ │ ├── CustomColor-hue.png │ │ ├── CustomColor-saturation.png │ │ ├── CustomColor-value.png │ │ ├── CustomColor.md │ │ ├── CustomColor.png │ │ └── CustomColor.png.png │ │ ├── ImageMetadata │ │ ├── ImageMetadata-newtime.png │ │ ├── ImageMetadata.md │ │ └── ImageMetadata.png │ │ ├── ImagesInMemory │ │ ├── ImagesInMemory.md │ │ ├── ImagesInMemory.png │ │ ├── ImagesInMemory.png.png │ │ └── ImagesInMemory.png.rgba │ │ ├── Indexing │ │ ├── Indexing-gradient.png │ │ ├── Indexing-indexed.png │ │ ├── Indexing.md │ │ └── Indexing.png │ │ ├── OnlineDecoding │ │ ├── OnlineDecoding-0.png │ │ ├── OnlineDecoding-1.png │ │ ├── OnlineDecoding-10.png │ │ ├── OnlineDecoding-2.png │ │ ├── OnlineDecoding-3.png │ │ ├── OnlineDecoding-4.png │ │ ├── OnlineDecoding-5.png │ │ ├── OnlineDecoding-6.png │ │ ├── OnlineDecoding-7.png │ │ ├── OnlineDecoding-8.png │ │ ├── OnlineDecoding-9.png │ │ ├── OnlineDecoding-progressive-0.png │ │ ├── OnlineDecoding-progressive-1.png │ │ ├── OnlineDecoding-progressive-10.png │ │ ├── OnlineDecoding-progressive-11.png │ │ ├── OnlineDecoding-progressive-2.png │ │ ├── OnlineDecoding-progressive-3.png │ │ ├── OnlineDecoding-progressive-4.png │ │ ├── OnlineDecoding-progressive-5.png │ │ ├── OnlineDecoding-progressive-6.png │ │ ├── OnlineDecoding-progressive-7.png │ │ ├── OnlineDecoding-progressive-8.png │ │ ├── OnlineDecoding-progressive-9.png │ │ ├── OnlineDecoding-progressive-overdrawn-0.png │ │ ├── OnlineDecoding-progressive-overdrawn-1.png │ │ ├── OnlineDecoding-progressive-overdrawn-10.png │ │ ├── OnlineDecoding-progressive-overdrawn-11.png │ │ ├── OnlineDecoding-progressive-overdrawn-2.png │ │ ├── OnlineDecoding-progressive-overdrawn-3.png │ │ ├── OnlineDecoding-progressive-overdrawn-4.png │ │ ├── OnlineDecoding-progressive-overdrawn-5.png │ │ ├── OnlineDecoding-progressive-overdrawn-6.png │ │ ├── OnlineDecoding-progressive-overdrawn-7.png │ │ ├── OnlineDecoding-progressive-overdrawn-8.png │ │ ├── OnlineDecoding-progressive-overdrawn-9.png │ │ ├── OnlineDecoding-progressive.png │ │ ├── OnlineDecoding.md │ │ └── OnlineDecoding.png │ │ ├── PNG.Chunk.md │ │ ├── PNG.md │ │ ├── README.md │ │ ├── System.md │ │ ├── iPhoneOptimized │ │ ├── iPhoneOptimized-bgr8.png │ │ ├── iPhoneOptimized-rgb8.png │ │ ├── iPhoneOptimized.md │ │ └── iPhoneOptimized.png │ │ └── sample-histogram.png ├── PNGCompressionTests │ └── Compression.swift ├── PNGInspection │ ├── PNG.Metadata (ext).swift │ ├── PNG.SuggestedPalette (ext).swift │ └── String (ext).swift ├── PNGIntegrationTests │ ├── Array (ext).swift │ ├── ArraySlice (ext).swift │ ├── ErrorHandling.swift │ ├── Inputs │ │ ├── Common │ │ │ ├── PngSuite.png │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── bgai4a08.png │ │ │ ├── bgai4a16.png │ │ │ ├── bgan6a08.png │ │ │ ├── bgan6a16.png │ │ │ ├── bgbn4a08.png │ │ │ ├── bggn4a16.png │ │ │ ├── bgwn6a08.png │ │ │ ├── bgyn6a16.png │ │ │ ├── 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 │ │ │ ├── f00n0g08.png │ │ │ ├── f00n2c08.png │ │ │ ├── f01n0g08.png │ │ │ ├── f01n2c08.png │ │ │ ├── f02n0g08.png │ │ │ ├── f02n2c08.png │ │ │ ├── f03n0g08.png │ │ │ ├── f03n2c08.png │ │ │ ├── f04n0g08.png │ │ │ ├── f04n2c08.png │ │ │ ├── f99n0g04.png │ │ │ ├── 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 │ │ │ ├── oi1n0g16.png │ │ │ ├── oi1n2c16.png │ │ │ ├── oi2n0g16.png │ │ │ ├── oi2n2c16.png │ │ │ ├── oi4n0g16.png │ │ │ ├── oi4n2c16.png │ │ │ ├── oi9n0g16.png │ │ │ ├── oi9n2c16.png │ │ │ ├── pp0n2c16.png │ │ │ ├── pp0n6a08.png │ │ │ ├── ps1n0g08.png │ │ │ ├── ps1n2c16.png │ │ │ ├── ps2n0g08.png │ │ │ ├── ps2n2c16.png │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── z00n2c08.png │ │ │ ├── z03n2c08.png │ │ │ ├── z06n2c08.png │ │ │ └── z09n2c08.png │ │ ├── Invalid │ │ │ ├── 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 │ │ └── iOS │ │ │ ├── PngSuite.png │ │ │ ├── basi2c08.png │ │ │ ├── basi6a08.png │ │ │ ├── basn2c08.png │ │ │ ├── basn6a08.png │ │ │ ├── bgan6a08.png │ │ │ ├── bgwn6a08.png │ │ │ ├── ccwn2c08.png │ │ │ ├── cdfn2c08.png │ │ │ ├── cdhn2c08.png │ │ │ ├── cdsn2c08.png │ │ │ ├── cdun2c08.png │ │ │ ├── cs5n2c08.png │ │ │ ├── cs8n2c08.png │ │ │ ├── f00n2c08.png │ │ │ ├── f01n2c08.png │ │ │ ├── f02n2c08.png │ │ │ ├── f03n2c08.png │ │ │ ├── f04n2c08.png │ │ │ ├── g03n2c08.png │ │ │ ├── g04n2c08.png │ │ │ ├── g05n2c08.png │ │ │ ├── g07n2c08.png │ │ │ ├── g10n2c08.png │ │ │ ├── g25n2c08.png │ │ │ ├── pp0n6a08.png │ │ │ ├── tbrn2c08.png │ │ │ ├── tp0n2c08.png │ │ │ ├── z00n2c08.png │ │ │ ├── z03n2c08.png │ │ │ ├── z06n2c08.png │ │ │ └── z09n2c08.png │ ├── Outputs │ │ ├── Common │ │ │ └── .gitignore │ │ └── iOS │ │ │ └── .gitignore │ ├── PngSuite.LICENSE │ ├── PngSuite.README │ ├── RGBA │ │ ├── PngSuite.png.rgba │ │ ├── basi0g01.png.rgba │ │ ├── basi0g02.png.rgba │ │ ├── basi0g04.png.rgba │ │ ├── basi0g08.png.rgba │ │ ├── basi0g16.png.rgba │ │ ├── basi2c08.png.rgba │ │ ├── basi2c16.png.rgba │ │ ├── basi3p01.png.rgba │ │ ├── basi3p02.png.rgba │ │ ├── basi3p04.png.rgba │ │ ├── basi3p08.png.rgba │ │ ├── basi4a08.png.rgba │ │ ├── basi4a16.png.rgba │ │ ├── basi6a08.png.rgba │ │ ├── basi6a16.png.rgba │ │ ├── basn0g01.png.rgba │ │ ├── basn0g02.png.rgba │ │ ├── basn0g04.png.rgba │ │ ├── basn0g08.png.rgba │ │ ├── basn0g16.png.rgba │ │ ├── basn2c08.png.rgba │ │ ├── basn2c16.png.rgba │ │ ├── basn3p01.png.rgba │ │ ├── basn3p02.png.rgba │ │ ├── basn3p04.png.rgba │ │ ├── basn3p08.png.rgba │ │ ├── basn4a08.png.rgba │ │ ├── basn4a16.png.rgba │ │ ├── basn6a08.png.rgba │ │ ├── basn6a16.png.rgba │ │ ├── bgai4a08.png.rgba │ │ ├── bgai4a16.png.rgba │ │ ├── bgan6a08.png.rgba │ │ ├── bgan6a16.png.rgba │ │ ├── bgbn4a08.png.rgba │ │ ├── bggn4a16.png.rgba │ │ ├── bgwn6a08.png.rgba │ │ ├── bgyn6a16.png.rgba │ │ ├── ccwn2c08.png.rgba │ │ ├── ccwn3p08.png.rgba │ │ ├── cdfn2c08.png.rgba │ │ ├── cdhn2c08.png.rgba │ │ ├── cdsn2c08.png.rgba │ │ ├── cdun2c08.png.rgba │ │ ├── ch1n3p04.png.rgba │ │ ├── ch2n3p08.png.rgba │ │ ├── cm0n0g04.png.rgba │ │ ├── cm7n0g04.png.rgba │ │ ├── cm9n0g04.png.rgba │ │ ├── cs3n2c16.png.rgba │ │ ├── cs3n3p08.png.rgba │ │ ├── cs5n2c08.png.rgba │ │ ├── cs5n3p08.png.rgba │ │ ├── cs8n2c08.png.rgba │ │ ├── cs8n3p08.png.rgba │ │ ├── ct0n0g04.png.rgba │ │ ├── ct1n0g04.png.rgba │ │ ├── cten0g04.png.rgba │ │ ├── ctfn0g04.png.rgba │ │ ├── ctgn0g04.png.rgba │ │ ├── cthn0g04.png.rgba │ │ ├── ctjn0g04.png.rgba │ │ ├── ctzn0g04.png.rgba │ │ ├── f00n0g08.png.rgba │ │ ├── f00n2c08.png.rgba │ │ ├── f01n0g08.png.rgba │ │ ├── f01n2c08.png.rgba │ │ ├── f02n0g08.png.rgba │ │ ├── f02n2c08.png.rgba │ │ ├── f03n0g08.png.rgba │ │ ├── f03n2c08.png.rgba │ │ ├── f04n0g08.png.rgba │ │ ├── f04n2c08.png.rgba │ │ ├── f99n0g04.png.rgba │ │ ├── g03n0g16.png.rgba │ │ ├── g03n2c08.png.rgba │ │ ├── g03n3p04.png.rgba │ │ ├── g04n0g16.png.rgba │ │ ├── g04n2c08.png.rgba │ │ ├── g04n3p04.png.rgba │ │ ├── g05n0g16.png.rgba │ │ ├── g05n2c08.png.rgba │ │ ├── g05n3p04.png.rgba │ │ ├── g07n0g16.png.rgba │ │ ├── g07n2c08.png.rgba │ │ ├── g07n3p04.png.rgba │ │ ├── g10n0g16.png.rgba │ │ ├── g10n2c08.png.rgba │ │ ├── g10n3p04.png.rgba │ │ ├── g25n0g16.png.rgba │ │ ├── g25n2c08.png.rgba │ │ ├── g25n3p04.png.rgba │ │ ├── oi1n0g16.png.rgba │ │ ├── oi1n2c16.png.rgba │ │ ├── oi2n0g16.png.rgba │ │ ├── oi2n2c16.png.rgba │ │ ├── oi4n0g16.png.rgba │ │ ├── oi4n2c16.png.rgba │ │ ├── oi9n0g16.png.rgba │ │ ├── oi9n2c16.png.rgba │ │ ├── palette-color-nonphotographic.png.rgba │ │ ├── palette-color-photographic.png.rgba │ │ ├── palette-grayscale-nonphotographic.png.rgba │ │ ├── palette-grayscale-photographic.png.rgba │ │ ├── pp0n2c16.png.rgba │ │ ├── pp0n6a08.png.rgba │ │ ├── ps1n0g08.png.rgba │ │ ├── ps1n2c16.png.rgba │ │ ├── ps2n0g08.png.rgba │ │ ├── ps2n2c16.png.rgba │ │ ├── rgb-color-nonphotographic.png.rgba │ │ ├── rgb-color-photographic.png.rgba │ │ ├── rgb-grayscale-nonphotographic.png.rgba │ │ ├── rgb-grayscale-photographic.png.rgba │ │ ├── s01i3p01.png.rgba │ │ ├── s01n3p01.png.rgba │ │ ├── s02i3p01.png.rgba │ │ ├── s02n3p01.png.rgba │ │ ├── s03i3p01.png.rgba │ │ ├── s03n3p01.png.rgba │ │ ├── s04i3p01.png.rgba │ │ ├── s04n3p01.png.rgba │ │ ├── s05i3p02.png.rgba │ │ ├── s05n3p02.png.rgba │ │ ├── s06i3p02.png.rgba │ │ ├── s06n3p02.png.rgba │ │ ├── s07i3p02.png.rgba │ │ ├── s07n3p02.png.rgba │ │ ├── s08i3p02.png.rgba │ │ ├── s08n3p02.png.rgba │ │ ├── s09i3p02.png.rgba │ │ ├── s09n3p02.png.rgba │ │ ├── s32i3p04.png.rgba │ │ ├── s32n3p04.png.rgba │ │ ├── s33i3p04.png.rgba │ │ ├── s33n3p04.png.rgba │ │ ├── s34i3p04.png.rgba │ │ ├── s34n3p04.png.rgba │ │ ├── s35i3p04.png.rgba │ │ ├── s35n3p04.png.rgba │ │ ├── s36i3p04.png.rgba │ │ ├── s36n3p04.png.rgba │ │ ├── s37i3p04.png.rgba │ │ ├── s37n3p04.png.rgba │ │ ├── s38i3p04.png.rgba │ │ ├── s38n3p04.png.rgba │ │ ├── s39i3p04.png.rgba │ │ ├── s39n3p04.png.rgba │ │ ├── s40i3p04.png.rgba │ │ ├── s40n3p04.png.rgba │ │ ├── tbbn0g04.png.rgba │ │ ├── tbbn2c16.png.rgba │ │ ├── tbbn3p08.png.rgba │ │ ├── tbgn2c16.png.rgba │ │ ├── tbgn3p08.png.rgba │ │ ├── tbrn2c08.png.rgba │ │ ├── tbwn0g16.png.rgba │ │ ├── tbwn3p08.png.rgba │ │ ├── tbyn3p08.png.rgba │ │ ├── tm3n3p02.png.rgba │ │ ├── tp0n0g08.png.rgba │ │ ├── tp0n2c08.png.rgba │ │ ├── tp0n3p08.png.rgba │ │ ├── tp1n3p08.png.rgba │ │ ├── v-grayscale-nonphotographic.png.rgba │ │ ├── v-grayscale-photographic.png.rgba │ │ ├── z00n2c08.png.rgba │ │ ├── z03n2c08.png.rgba │ │ ├── z06n2c08.png.rgba │ │ └── z09n2c08.png.rgba │ └── Roundtripping.swift └── PNGTests │ ├── Filtering.swift │ └── Premultiplication.swift ├── Tests ├── Baselines │ ├── indexed8-color-nonphotographic.png │ ├── indexed8-color-photographic.png │ ├── indexed8-monochrome-nonphotographic.png │ ├── indexed8-monochrome-photographic.png │ ├── rgb16-color-nonphotographic.png │ ├── rgb16-color-photographic.png │ ├── rgb16-monochrome-nonphotographic.png │ ├── rgb16-monochrome-photographic.png │ ├── rgb8-color-nonphotographic.png │ ├── rgb8-color-photographic.png │ ├── rgb8-monochrome-nonphotographic.png │ ├── rgb8-monochrome-photographic.png │ ├── rgba16-color-nonphotographic.png │ ├── rgba16-color-photographic.png │ ├── rgba16-monochrome-nonphotographic.png │ ├── rgba16-monochrome-photographic.png │ ├── rgba8-color-nonphotographic.png │ ├── rgba8-color-photographic.png │ ├── rgba8-monochrome-nonphotographic.png │ ├── rgba8-monochrome-photographic.png │ ├── v16-monochrome-nonphotographic.png │ ├── v16-monochrome-photographic.png │ ├── v8-monochrome-nonphotographic.png │ ├── v8-monochrome-photographic.png │ ├── va16-monochrome-nonphotographic.png │ ├── va16-monochrome-photographic.png │ ├── va8-monochrome-nonphotographic.png │ └── va8-monochrome-photographic.png └── Outputs │ ├── indexed8-color-nonphotographic.png │ ├── indexed8-color-photographic.png │ ├── indexed8-monochrome-nonphotographic.png │ ├── indexed8-monochrome-photographic.png │ ├── rgb16-color-nonphotographic.png │ ├── rgb16-color-photographic.png │ ├── rgb16-monochrome-nonphotographic.png │ ├── rgb16-monochrome-photographic.png │ ├── rgb8-color-nonphotographic.png │ ├── rgb8-color-photographic.png │ ├── rgb8-monochrome-nonphotographic.png │ ├── rgb8-monochrome-photographic.png │ ├── rgba16-color-nonphotographic.png │ ├── rgba16-color-photographic.png │ ├── rgba16-monochrome-nonphotographic.png │ ├── rgba16-monochrome-photographic.png │ ├── rgba8-color-nonphotographic.png │ ├── rgba8-color-photographic.png │ ├── rgba8-monochrome-nonphotographic.png │ ├── rgba8-monochrome-photographic.png │ ├── v16-monochrome-nonphotographic.png │ ├── v16-monochrome-photographic.png │ ├── v8-monochrome-nonphotographic.png │ ├── v8-monochrome-photographic.png │ ├── va16-monochrome-nonphotographic.png │ ├── va16-monochrome-photographic.png │ ├── va8-monochrome-nonphotographic.png │ └── va8-monochrome-photographic.png └── Tools ├── benchmark ├── benchmark_crunch.py ├── benchmark_latest.py ├── convert-to-bgra ├── convert-to-rgba ├── densityplot.py ├── differentialplot.py ├── examples ├── generate-documentation ├── svg.py └── toolchain.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [tayloraswift] 2 | -------------------------------------------------------------------------------- /.github/disabled/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/.github/disabled/android.yml -------------------------------------------------------------------------------- /.github/workflows/Documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/.github/workflows/Documentation.yml -------------------------------------------------------------------------------- /.github/workflows/Tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/.github/workflows/Tests.yml -------------------------------------------------------------------------------- /.github/workflows/iOS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/.github/workflows/iOS.yml -------------------------------------------------------------------------------- /.github/workflows/tvOS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/.github/workflows/tvOS.yml -------------------------------------------------------------------------------- /.github/workflows/visionOS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/.github/workflows/visionOS.yml -------------------------------------------------------------------------------- /.github/workflows/watchOS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/.github/workflows/watchOS.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/.mailmap -------------------------------------------------------------------------------- /Benchmarks/Compression/C/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Compression/C/main -------------------------------------------------------------------------------- /Benchmarks/Compression/C/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Compression/C/main.c -------------------------------------------------------------------------------- /Benchmarks/Compression/Swift/Main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Compression/Swift/Main.swift -------------------------------------------------------------------------------- /Benchmarks/Decompression/C/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Decompression/C/main -------------------------------------------------------------------------------- /Benchmarks/Decompression/C/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Decompression/C/main.c -------------------------------------------------------------------------------- /Benchmarks/Decompression/Swift/Main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Decompression/Swift/Main.swift -------------------------------------------------------------------------------- /Benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/README.md -------------------------------------------------------------------------------- /Benchmarks/Results/commit: -------------------------------------------------------------------------------- 1 | 8e6ac889f31480c995f873d2e38ea4154553081e 2 | -------------------------------------------------------------------------------- /Benchmarks/Results/compression-size@0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Results/compression-size@0.svg -------------------------------------------------------------------------------- /Benchmarks/Results/compression-size@1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Results/compression-size@1.svg -------------------------------------------------------------------------------- /Benchmarks/Results/compression-size@2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Results/compression-size@2.svg -------------------------------------------------------------------------------- /Benchmarks/Results/compression-size@3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Results/compression-size@3.svg -------------------------------------------------------------------------------- /Benchmarks/Results/compression-size@4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Results/compression-size@4.svg -------------------------------------------------------------------------------- /Benchmarks/Results/compression-size@5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Results/compression-size@5.svg -------------------------------------------------------------------------------- /Benchmarks/Results/compression-size@6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Results/compression-size@6.svg -------------------------------------------------------------------------------- /Benchmarks/Results/compression-size@7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Results/compression-size@7.svg -------------------------------------------------------------------------------- /Benchmarks/Results/compression-size@8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Results/compression-size@8.svg -------------------------------------------------------------------------------- /Benchmarks/Results/compression-size@9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Results/compression-size@9.svg -------------------------------------------------------------------------------- /Benchmarks/Results/compression-speed@0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Results/compression-speed@0.svg -------------------------------------------------------------------------------- /Benchmarks/Results/compression-speed@1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Results/compression-speed@1.svg -------------------------------------------------------------------------------- /Benchmarks/Results/compression-speed@2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Results/compression-speed@2.svg -------------------------------------------------------------------------------- /Benchmarks/Results/compression-speed@3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Results/compression-speed@3.svg -------------------------------------------------------------------------------- /Benchmarks/Results/compression-speed@4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Results/compression-speed@4.svg -------------------------------------------------------------------------------- /Benchmarks/Results/compression-speed@5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Results/compression-speed@5.svg -------------------------------------------------------------------------------- /Benchmarks/Results/compression-speed@6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Results/compression-speed@6.svg -------------------------------------------------------------------------------- /Benchmarks/Results/compression-speed@7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Results/compression-speed@7.svg -------------------------------------------------------------------------------- /Benchmarks/Results/compression-speed@8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Results/compression-speed@8.svg -------------------------------------------------------------------------------- /Benchmarks/Results/compression-speed@9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Results/compression-speed@9.svg -------------------------------------------------------------------------------- /Benchmarks/Results/decompression-speed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Results/decompression-speed.svg -------------------------------------------------------------------------------- /Benchmarks/Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Benchmarks/Template.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/NOTICE -------------------------------------------------------------------------------- /Notes/curves-nonphotographic-ii-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Notes/curves-nonphotographic-ii-1.svg -------------------------------------------------------------------------------- /Notes/curves-photographic-ii-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Notes/curves-photographic-ii-1.svg -------------------------------------------------------------------------------- /Notes/histogram-iv-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Notes/histogram-iv-1.png -------------------------------------------------------------------------------- /Notes/histogram-iv-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Notes/histogram-iv-2.png -------------------------------------------------------------------------------- /Notes/histogram-iv-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Notes/histogram-iv-3.png -------------------------------------------------------------------------------- /Notes/histogram-iv-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Notes/histogram-iv-4.png -------------------------------------------------------------------------------- /Notes/histogram-v-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Notes/histogram-v-1.png -------------------------------------------------------------------------------- /Notes/histogram-v-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Notes/histogram-v-2.png -------------------------------------------------------------------------------- /Notes/improving-deflate-compression-ratio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Notes/improving-deflate-compression-ratio.md -------------------------------------------------------------------------------- /Notes/improving-deflate-compression-speed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Notes/improving-deflate-compression-speed.md -------------------------------------------------------------------------------- /Notes/low-level-swift-optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Notes/low-level-swift-optimization.md -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/TestAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Scripts/TestAll -------------------------------------------------------------------------------- /Snippets/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Snippets/LICENSE -------------------------------------------------------------------------------- /Snippets/LZ77/BasicGzip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Snippets/LZ77/BasicGzip.swift -------------------------------------------------------------------------------- /Snippets/LZ77/StreamingGzip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Snippets/LZ77/StreamingGzip.swift -------------------------------------------------------------------------------- /Snippets/LZ77/StreamingZlib.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Snippets/LZ77/StreamingZlib.swift -------------------------------------------------------------------------------- /Snippets/PNG/BasicDecoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Snippets/PNG/BasicDecoding.swift -------------------------------------------------------------------------------- /Snippets/PNG/BasicEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Snippets/PNG/BasicEncoding.swift -------------------------------------------------------------------------------- /Snippets/PNG/CustomColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Snippets/PNG/CustomColor.swift -------------------------------------------------------------------------------- /Snippets/PNG/ImageMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Snippets/PNG/ImageMetadata.swift -------------------------------------------------------------------------------- /Snippets/PNG/ImagesInMemory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Snippets/PNG/ImagesInMemory.swift -------------------------------------------------------------------------------- /Snippets/PNG/Indexing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Snippets/PNG/Indexing.swift -------------------------------------------------------------------------------- /Snippets/PNG/OnlineDecoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Snippets/PNG/OnlineDecoding.swift -------------------------------------------------------------------------------- /Snippets/PNG/iPhoneOptimized.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Snippets/PNG/iPhoneOptimized.swift -------------------------------------------------------------------------------- /Sources/LZ77/Deflator/LZ77.Decades.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Deflator/LZ77.Decades.swift -------------------------------------------------------------------------------- /Sources/LZ77/Deflator/LZ77.Deflator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Deflator/LZ77.Deflator.swift -------------------------------------------------------------------------------- /Sources/LZ77/Deflator/LZ77.DeflatorBuffers.Stream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Deflator/LZ77.DeflatorBuffers.Stream.swift -------------------------------------------------------------------------------- /Sources/LZ77/Deflator/LZ77.DeflatorBuffers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Deflator/LZ77.DeflatorBuffers.swift -------------------------------------------------------------------------------- /Sources/LZ77/Deflator/LZ77.DeflatorDicing.Node.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Deflator/LZ77.DeflatorDicing.Node.swift -------------------------------------------------------------------------------- /Sources/LZ77/Deflator/LZ77.DeflatorDicing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Deflator/LZ77.DeflatorDicing.swift -------------------------------------------------------------------------------- /Sources/LZ77/Deflator/LZ77.DeflatorIn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Deflator/LZ77.DeflatorIn.swift -------------------------------------------------------------------------------- /Sources/LZ77/Deflator/LZ77.DeflatorMatches.Depths.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Deflator/LZ77.DeflatorMatches.Depths.swift -------------------------------------------------------------------------------- /Sources/LZ77/Deflator/LZ77.DeflatorMatches.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Deflator/LZ77.DeflatorMatches.swift -------------------------------------------------------------------------------- /Sources/LZ77/Deflator/LZ77.DeflatorOut.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Deflator/LZ77.DeflatorOut.swift -------------------------------------------------------------------------------- /Sources/LZ77/Deflator/LZ77.DeflatorSearch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Deflator/LZ77.DeflatorSearch.swift -------------------------------------------------------------------------------- /Sources/LZ77/Deflator/LZ77.DeflatorTables.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Deflator/LZ77.DeflatorTables.swift -------------------------------------------------------------------------------- /Sources/LZ77/Deflator/LZ77.DeflatorTerm.Meta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Deflator/LZ77.DeflatorTerm.Meta.swift -------------------------------------------------------------------------------- /Sources/LZ77/Deflator/LZ77.DeflatorTerm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Deflator/LZ77.DeflatorTerm.swift -------------------------------------------------------------------------------- /Sources/LZ77/Deflator/LZ77.DeflatorWindow.Element.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Deflator/LZ77.DeflatorWindow.Element.swift -------------------------------------------------------------------------------- /Sources/LZ77/Deflator/LZ77.DeflatorWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Deflator/LZ77.DeflatorWindow.swift -------------------------------------------------------------------------------- /Sources/LZ77/F14/F14.District.Index.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/F14/F14.District.Index.swift -------------------------------------------------------------------------------- /Sources/LZ77/F14/F14.District.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/F14/F14.District.swift -------------------------------------------------------------------------------- /Sources/LZ77/F14/F14.Hash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/F14/F14.Hash.swift -------------------------------------------------------------------------------- /Sources/LZ77/F14/F14.HashTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/F14/F14.HashTable.swift -------------------------------------------------------------------------------- /Sources/LZ77/F14/F14.swift: -------------------------------------------------------------------------------- 1 | @frozen @usableFromInline 2 | enum F14 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /Sources/LZ77/FixedWidthInteger (ext).swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/FixedWidthInteger (ext).swift -------------------------------------------------------------------------------- /Sources/LZ77/Gzip/Gzip.Deflator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Gzip/Gzip.Deflator.swift -------------------------------------------------------------------------------- /Sources/LZ77/Gzip/Gzip.Format.Integral.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Gzip/Gzip.Format.Integral.swift -------------------------------------------------------------------------------- /Sources/LZ77/Gzip/Gzip.Format.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Gzip/Gzip.Format.swift -------------------------------------------------------------------------------- /Sources/LZ77/Gzip/Gzip.Inflator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Gzip/Gzip.Inflator.swift -------------------------------------------------------------------------------- /Sources/LZ77/Gzip/Gzip.InflatorState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Gzip/Gzip.InflatorState.swift -------------------------------------------------------------------------------- /Sources/LZ77/Gzip/Gzip.StreamHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Gzip/Gzip.StreamHeader.swift -------------------------------------------------------------------------------- /Sources/LZ77/Gzip/Gzip.StreamHeaderError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Gzip/Gzip.StreamHeaderError.swift -------------------------------------------------------------------------------- /Sources/LZ77/Gzip/Gzip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Gzip/Gzip.swift -------------------------------------------------------------------------------- /Sources/LZ77/HuffmanCoding/LZ77.Codeword.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/HuffmanCoding/LZ77.Codeword.swift -------------------------------------------------------------------------------- /Sources/LZ77/HuffmanCoding/LZ77.Distance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/HuffmanCoding/LZ77.Distance.swift -------------------------------------------------------------------------------- /Sources/LZ77/HuffmanCoding/LZ77.Heap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/HuffmanCoding/LZ77.Heap.swift -------------------------------------------------------------------------------- /Sources/LZ77/HuffmanCoding/LZ77.HuffmanPattern.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/HuffmanCoding/LZ77.HuffmanPattern.swift -------------------------------------------------------------------------------- /Sources/LZ77/HuffmanCoding/LZ77.HuffmanTree.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/HuffmanCoding/LZ77.HuffmanTree.swift -------------------------------------------------------------------------------- /Sources/LZ77/HuffmanCoding/LZ77.Metaword.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/HuffmanCoding/LZ77.Metaword.swift -------------------------------------------------------------------------------- /Sources/LZ77/HuffmanCoding/LZ77.RunLiteral.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/HuffmanCoding/LZ77.RunLiteral.swift -------------------------------------------------------------------------------- /Sources/LZ77/Inflator/LZ77.BlockMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Inflator/LZ77.BlockMetadata.swift -------------------------------------------------------------------------------- /Sources/LZ77/Inflator/LZ77.BlockShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Inflator/LZ77.BlockShape.swift -------------------------------------------------------------------------------- /Sources/LZ77/Inflator/LZ77.BlockState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Inflator/LZ77.BlockState.swift -------------------------------------------------------------------------------- /Sources/LZ77/Inflator/LZ77.BlockType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Inflator/LZ77.BlockType.swift -------------------------------------------------------------------------------- /Sources/LZ77/Inflator/LZ77.DecompressionError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Inflator/LZ77.DecompressionError.swift -------------------------------------------------------------------------------- /Sources/LZ77/Inflator/LZ77.Inflator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Inflator/LZ77.Inflator.swift -------------------------------------------------------------------------------- /Sources/LZ77/Inflator/LZ77.InflatorBuffers.Stream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Inflator/LZ77.InflatorBuffers.Stream.swift -------------------------------------------------------------------------------- /Sources/LZ77/Inflator/LZ77.InflatorBuffers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Inflator/LZ77.InflatorBuffers.swift -------------------------------------------------------------------------------- /Sources/LZ77/Inflator/LZ77.InflatorIn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Inflator/LZ77.InflatorIn.swift -------------------------------------------------------------------------------- /Sources/LZ77/Inflator/LZ77.InflatorOut.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Inflator/LZ77.InflatorOut.swift -------------------------------------------------------------------------------- /Sources/LZ77/Inflator/LZ77.InflatorState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Inflator/LZ77.InflatorState.swift -------------------------------------------------------------------------------- /Sources/LZ77/Inflator/LZ77.InflatorTables.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Inflator/LZ77.InflatorTables.swift -------------------------------------------------------------------------------- /Sources/LZ77/Inflator/LZ77.StreamHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Inflator/LZ77.StreamHeader.swift -------------------------------------------------------------------------------- /Sources/LZ77/Inflator/LZ77.StreamHeaderError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Inflator/LZ77.StreamHeaderError.swift -------------------------------------------------------------------------------- /Sources/LZ77/LZ77.Composites.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/LZ77.Composites.swift -------------------------------------------------------------------------------- /Sources/LZ77/LZ77.Reversed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/LZ77.Reversed.swift -------------------------------------------------------------------------------- /Sources/LZ77/LZ77.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/LZ77.swift -------------------------------------------------------------------------------- /Sources/LZ77/SIMD16 (ext).swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/SIMD16 (ext).swift -------------------------------------------------------------------------------- /Sources/LZ77/Wrappers/LZ77.Format.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Wrappers/LZ77.Format.swift -------------------------------------------------------------------------------- /Sources/LZ77/Wrappers/LZ77.FormatType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Wrappers/LZ77.FormatType.swift -------------------------------------------------------------------------------- /Sources/LZ77/Wrappers/LZ77.MRC32.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Wrappers/LZ77.MRC32.swift -------------------------------------------------------------------------------- /Sources/LZ77/Wrappers/LZ77.StreamIntegral.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/Wrappers/LZ77.StreamIntegral.swift -------------------------------------------------------------------------------- /Sources/LZ77/docs.docc/GzipCompression/GzipCompression.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/docs.docc/GzipCompression/GzipCompression.gz -------------------------------------------------------------------------------- /Sources/LZ77/docs.docc/GzipCompression/GzipCompression.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/docs.docc/GzipCompression/GzipCompression.txt.gz -------------------------------------------------------------------------------- /Sources/LZ77/docs.docc/GzipCompression/empty.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/docs.docc/GzipCompression/empty.gz -------------------------------------------------------------------------------- /Sources/LZ77/docs.docc/GzipCompression/single-byte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/docs.docc/GzipCompression/single-byte.gz -------------------------------------------------------------------------------- /Sources/LZ77/docs.docc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77/docs.docc/README.md -------------------------------------------------------------------------------- /Sources/LZ77Tests/Bitstreams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77Tests/Bitstreams.swift -------------------------------------------------------------------------------- /Sources/LZ77Tests/Compression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77Tests/Compression.swift -------------------------------------------------------------------------------- /Sources/LZ77Tests/CompressionMicro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77Tests/CompressionMicro.swift -------------------------------------------------------------------------------- /Sources/LZ77Tests/HardwareAcceleration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/LZ77Tests/HardwareAcceleration.swift -------------------------------------------------------------------------------- /Sources/PNG/Array (ext).swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Array (ext).swift -------------------------------------------------------------------------------- /Sources/PNG/ArraySlice (ext).swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/ArraySlice (ext).swift -------------------------------------------------------------------------------- /Sources/PNG/ColorTargets/PNG.Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/ColorTargets/PNG.Color.swift -------------------------------------------------------------------------------- /Sources/PNG/ColorTargets/PNG.RGBA.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/ColorTargets/PNG.RGBA.swift -------------------------------------------------------------------------------- /Sources/PNG/ColorTargets/PNG.VA.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/ColorTargets/PNG.VA.swift -------------------------------------------------------------------------------- /Sources/PNG/Decoding/PNG.Context.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Decoding/PNG.Context.swift -------------------------------------------------------------------------------- /Sources/PNG/Decoding/PNG.Decoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Decoding/PNG.Decoder.swift -------------------------------------------------------------------------------- /Sources/PNG/Decoding/PNG.DecodingError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Decoding/PNG.DecodingError.swift -------------------------------------------------------------------------------- /Sources/PNG/Decoding/PNG.Metadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Decoding/PNG.Metadata.swift -------------------------------------------------------------------------------- /Sources/PNG/Decoding/PNG.Standard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Decoding/PNG.Standard.swift -------------------------------------------------------------------------------- /Sources/PNG/Encoding/PNG.Encoder.Pass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Encoding/PNG.Encoder.Pass.swift -------------------------------------------------------------------------------- /Sources/PNG/Encoding/PNG.Encoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Encoding/PNG.Encoder.swift -------------------------------------------------------------------------------- /Sources/PNG/Encoding/PNG.FormattingError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Encoding/PNG.FormattingError.swift -------------------------------------------------------------------------------- /Sources/PNG/Formats/PNG.Format.Pixel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Formats/PNG.Format.Pixel.swift -------------------------------------------------------------------------------- /Sources/PNG/Formats/PNG.Format.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Formats/PNG.Format.swift -------------------------------------------------------------------------------- /Sources/PNG/Formats/PNG.Layout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Formats/PNG.Layout.swift -------------------------------------------------------------------------------- /Sources/PNG/General.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/General.swift -------------------------------------------------------------------------------- /Sources/PNG/LZ77.DecompressionError (ext).swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/LZ77.DecompressionError (ext).swift -------------------------------------------------------------------------------- /Sources/PNG/LZ77.DeflateHeaderError (ext).swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/LZ77.DeflateHeaderError (ext).swift -------------------------------------------------------------------------------- /Sources/PNG/Lexing/PNG.BytestreamDestination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Lexing/PNG.BytestreamDestination.swift -------------------------------------------------------------------------------- /Sources/PNG/Lexing/PNG.BytestreamSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Lexing/PNG.BytestreamSource.swift -------------------------------------------------------------------------------- /Sources/PNG/Lexing/PNG.Chunk.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Lexing/PNG.Chunk.swift -------------------------------------------------------------------------------- /Sources/PNG/Lexing/PNG.LexingError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Lexing/PNG.LexingError.swift -------------------------------------------------------------------------------- /Sources/PNG/PNG.Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/PNG.Error.swift -------------------------------------------------------------------------------- /Sources/PNG/PNG.Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/PNG.Image.swift -------------------------------------------------------------------------------- /Sources/PNG/PNG.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/PNG.swift -------------------------------------------------------------------------------- /Sources/PNG/Parsing/PNG.Background.Case.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Parsing/PNG.Background.Case.swift -------------------------------------------------------------------------------- /Sources/PNG/Parsing/PNG.Background.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Parsing/PNG.Background.swift -------------------------------------------------------------------------------- /Sources/PNG/Parsing/PNG.Chromaticity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Parsing/PNG.Chromaticity.swift -------------------------------------------------------------------------------- /Sources/PNG/Parsing/PNG.ColorProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Parsing/PNG.ColorProfile.swift -------------------------------------------------------------------------------- /Sources/PNG/Parsing/PNG.ColorRendering.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Parsing/PNG.ColorRendering.swift -------------------------------------------------------------------------------- /Sources/PNG/Parsing/PNG.Gamma.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Parsing/PNG.Gamma.swift -------------------------------------------------------------------------------- /Sources/PNG/Parsing/PNG.Header.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Parsing/PNG.Header.swift -------------------------------------------------------------------------------- /Sources/PNG/Parsing/PNG.Histogram.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Parsing/PNG.Histogram.swift -------------------------------------------------------------------------------- /Sources/PNG/Parsing/PNG.Palette.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Parsing/PNG.Palette.swift -------------------------------------------------------------------------------- /Sources/PNG/Parsing/PNG.ParsingError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Parsing/PNG.ParsingError.swift -------------------------------------------------------------------------------- /Sources/PNG/Parsing/PNG.Percentmille.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Parsing/PNG.Percentmille.swift -------------------------------------------------------------------------------- /Sources/PNG/Parsing/PNG.PhysicalDimensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Parsing/PNG.PhysicalDimensions.swift -------------------------------------------------------------------------------- /Sources/PNG/Parsing/PNG.SignificantBits.Case.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Parsing/PNG.SignificantBits.Case.swift -------------------------------------------------------------------------------- /Sources/PNG/Parsing/PNG.SignificantBits.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Parsing/PNG.SignificantBits.swift -------------------------------------------------------------------------------- /Sources/PNG/Parsing/PNG.SuggestedPalette.Entries.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Parsing/PNG.SuggestedPalette.Entries.swift -------------------------------------------------------------------------------- /Sources/PNG/Parsing/PNG.SuggestedPalette.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Parsing/PNG.SuggestedPalette.swift -------------------------------------------------------------------------------- /Sources/PNG/Parsing/PNG.Text.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Parsing/PNG.Text.swift -------------------------------------------------------------------------------- /Sources/PNG/Parsing/PNG.TimeModified.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Parsing/PNG.TimeModified.swift -------------------------------------------------------------------------------- /Sources/PNG/Parsing/PNG.Transparency.Case.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Parsing/PNG.Transparency.Case.swift -------------------------------------------------------------------------------- /Sources/PNG/Parsing/PNG.Transparency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/Parsing/PNG.Transparency.swift -------------------------------------------------------------------------------- /Sources/PNG/System.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/System.swift -------------------------------------------------------------------------------- /Sources/PNG/UnsafeMutableBufferPointer (ext).swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/UnsafeMutableBufferPointer (ext).swift -------------------------------------------------------------------------------- /Sources/PNG/__Entrypoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/__Entrypoint.swift -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/BasicDecoding/BasicDecoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/BasicDecoding/BasicDecoding.md -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/BasicDecoding/BasicDecoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/BasicDecoding/BasicDecoding.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/BasicDecoding/BasicDecoding.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/BasicDecoding/BasicDecoding.png.rgba -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/BasicDecoding/BasicDecoding.v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/BasicDecoding/BasicDecoding.v.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/BasicDecoding/BasicDecoding.va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/BasicDecoding/BasicDecoding.va.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/BasicEncoding/BasicEncoding-color-rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/BasicEncoding/BasicEncoding-color-rgb.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/BasicEncoding/BasicEncoding-color-rgb@0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/BasicEncoding/BasicEncoding-color-rgb@0.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/BasicEncoding/BasicEncoding-color-rgb@13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/BasicEncoding/BasicEncoding-color-rgb@13.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/BasicEncoding/BasicEncoding-color-rgb@4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/BasicEncoding/BasicEncoding-color-rgb@4.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/BasicEncoding/BasicEncoding-color-rgb@8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/BasicEncoding/BasicEncoding-color-rgb@8.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/BasicEncoding/BasicEncoding-color-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/BasicEncoding/BasicEncoding-color-v.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/BasicEncoding/BasicEncoding-luminance-rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/BasicEncoding/BasicEncoding-luminance-rgb.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/BasicEncoding/BasicEncoding-luminance-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/BasicEncoding/BasicEncoding-luminance-v.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/BasicEncoding/BasicEncoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/BasicEncoding/BasicEncoding.md -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/BasicEncoding/BasicEncoding.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/BasicEncoding/BasicEncoding.rgba -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/BuildFlags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/BuildFlags.md -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/CustomColor/CustomColor-hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/CustomColor/CustomColor-hue.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/CustomColor/CustomColor-saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/CustomColor/CustomColor-saturation.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/CustomColor/CustomColor-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/CustomColor/CustomColor-value.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/CustomColor/CustomColor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/CustomColor/CustomColor.md -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/CustomColor/CustomColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/CustomColor/CustomColor.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/CustomColor/CustomColor.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/CustomColor/CustomColor.png.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/ImageMetadata/ImageMetadata-newtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/ImageMetadata/ImageMetadata-newtime.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/ImageMetadata/ImageMetadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/ImageMetadata/ImageMetadata.md -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/ImageMetadata/ImageMetadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/ImageMetadata/ImageMetadata.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/ImagesInMemory/ImagesInMemory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/ImagesInMemory/ImagesInMemory.md -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/ImagesInMemory/ImagesInMemory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/ImagesInMemory/ImagesInMemory.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/ImagesInMemory/ImagesInMemory.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/ImagesInMemory/ImagesInMemory.png.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/ImagesInMemory/ImagesInMemory.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/ImagesInMemory/ImagesInMemory.png.rgba -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/Indexing/Indexing-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/Indexing/Indexing-gradient.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/Indexing/Indexing-indexed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/Indexing/Indexing-indexed.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/Indexing/Indexing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/Indexing/Indexing.md -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/Indexing/Indexing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/Indexing/Indexing.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-0.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-1.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-10.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-2.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-3.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-4.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-5.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-6.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-7.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-8.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-9.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-0.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-1.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-10.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-11.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-2.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-3.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-4.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-5.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-6.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-7.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-8.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-9.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-0.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-1.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-10.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-11.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-2.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-3.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-4.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-5.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-6.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-7.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-8.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive-overdrawn-9.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding-progressive.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding.md -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/OnlineDecoding/OnlineDecoding.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/PNG.Chunk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/PNG.Chunk.md -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/PNG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/PNG.md -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/README.md -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/System.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/System.md -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/iPhoneOptimized/iPhoneOptimized-bgr8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/iPhoneOptimized/iPhoneOptimized-bgr8.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/iPhoneOptimized/iPhoneOptimized-rgb8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/iPhoneOptimized/iPhoneOptimized-rgb8.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/iPhoneOptimized/iPhoneOptimized.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/iPhoneOptimized/iPhoneOptimized.md -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/iPhoneOptimized/iPhoneOptimized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/iPhoneOptimized/iPhoneOptimized.png -------------------------------------------------------------------------------- /Sources/PNG/docs.docc/sample-histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNG/docs.docc/sample-histogram.png -------------------------------------------------------------------------------- /Sources/PNGCompressionTests/Compression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGCompressionTests/Compression.swift -------------------------------------------------------------------------------- /Sources/PNGInspection/PNG.Metadata (ext).swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGInspection/PNG.Metadata (ext).swift -------------------------------------------------------------------------------- /Sources/PNGInspection/PNG.SuggestedPalette (ext).swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGInspection/PNG.SuggestedPalette (ext).swift -------------------------------------------------------------------------------- /Sources/PNGInspection/String (ext).swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGInspection/String (ext).swift -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Array (ext).swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Array (ext).swift -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/ArraySlice (ext).swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/ArraySlice (ext).swift -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/ErrorHandling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/ErrorHandling.swift -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/PngSuite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/PngSuite.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basi0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basi0g01.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basi0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basi0g02.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basi0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basi0g04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basi0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basi0g08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basi0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basi0g16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basi2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basi2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basi2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basi2c16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basi3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basi3p01.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basi3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basi3p02.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basi3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basi3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basi3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basi3p08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basi4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basi4a08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basi4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basi4a16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basi6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basi6a08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basi6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basi6a16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basn0g01.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basn0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basn0g02.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basn0g04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basn0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basn0g08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basn0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basn0g16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basn2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basn2c16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basn3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basn3p01.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basn3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basn3p02.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basn3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basn3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basn3p08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basn4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basn4a08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basn4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basn4a16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basn6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basn6a08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/basn6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/basn6a16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/bgai4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/bgai4a08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/bgai4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/bgai4a16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/bgan6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/bgan6a08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/bgan6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/bgan6a16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/bgbn4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/bgbn4a08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/bggn4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/bggn4a16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/bgwn6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/bgwn6a08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/bgyn6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/bgyn6a16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/ccwn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/ccwn2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/ccwn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/ccwn3p08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/cdfn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/cdfn2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/cdhn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/cdhn2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/cdsn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/cdsn2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/cdun2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/cdun2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/ch1n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/ch1n3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/ch2n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/ch2n3p08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/cm0n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/cm0n0g04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/cm7n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/cm7n0g04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/cm9n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/cm9n0g04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/cs3n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/cs3n2c16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/cs3n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/cs3n3p08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/cs5n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/cs5n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/cs5n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/cs5n3p08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/cs8n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/cs8n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/cs8n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/cs8n3p08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/ct0n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/ct0n0g04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/ct1n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/ct1n0g04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/cten0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/cten0g04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/ctfn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/ctfn0g04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/ctgn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/ctgn0g04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/cthn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/cthn0g04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/ctjn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/ctjn0g04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/ctzn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/ctzn0g04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/f00n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/f00n0g08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/f00n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/f00n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/f01n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/f01n0g08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/f01n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/f01n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/f02n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/f02n0g08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/f02n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/f02n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/f03n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/f03n0g08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/f03n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/f03n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/f04n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/f04n0g08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/f04n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/f04n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/f99n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/f99n0g04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/g03n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/g03n0g16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/g03n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/g03n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/g03n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/g03n3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/g04n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/g04n0g16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/g04n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/g04n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/g04n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/g04n3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/g05n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/g05n0g16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/g05n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/g05n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/g05n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/g05n3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/g07n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/g07n0g16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/g07n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/g07n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/g07n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/g07n3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/g10n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/g10n0g16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/g10n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/g10n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/g10n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/g10n3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/g25n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/g25n0g16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/g25n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/g25n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/g25n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/g25n3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/oi1n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/oi1n0g16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/oi1n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/oi1n2c16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/oi2n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/oi2n0g16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/oi2n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/oi2n2c16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/oi4n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/oi4n0g16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/oi4n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/oi4n2c16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/oi9n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/oi9n0g16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/oi9n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/oi9n2c16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/pp0n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/pp0n2c16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/pp0n6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/pp0n6a08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/ps1n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/ps1n0g08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/ps1n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/ps1n2c16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/ps2n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/ps2n0g08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/ps2n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/ps2n2c16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s01i3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s01i3p01.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s01n3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s01n3p01.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s02i3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s02i3p01.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s02n3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s02n3p01.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s03i3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s03i3p01.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s03n3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s03n3p01.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s04i3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s04i3p01.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s04n3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s04n3p01.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s05i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s05i3p02.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s05n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s05n3p02.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s06i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s06i3p02.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s06n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s06n3p02.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s07i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s07i3p02.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s07n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s07n3p02.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s08i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s08i3p02.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s08n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s08n3p02.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s09i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s09i3p02.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s09n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s09n3p02.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s32i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s32i3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s32n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s32n3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s33i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s33i3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s33n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s33n3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s34i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s34i3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s34n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s34n3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s35i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s35i3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s35n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s35n3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s36i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s36i3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s36n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s36n3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s37i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s37i3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s37n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s37n3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s38i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s38i3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s38n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s38n3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s39i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s39i3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s39n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s39n3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s40i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s40i3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/s40n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/s40n3p04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/tbbn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/tbbn0g04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/tbbn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/tbbn2c16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/tbbn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/tbbn3p08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/tbgn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/tbgn2c16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/tbgn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/tbgn3p08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/tbrn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/tbrn2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/tbwn0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/tbwn0g16.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/tbwn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/tbwn3p08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/tbyn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/tbyn3p08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/tm3n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/tm3n3p02.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/tp0n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/tp0n0g08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/tp0n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/tp0n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/tp0n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/tp0n3p08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/tp1n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/tp1n3p08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/z00n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/z00n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/z03n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/z03n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/z06n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/z06n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Common/z09n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Common/z09n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Invalid/xc1n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Invalid/xc1n0g08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Invalid/xc9n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Invalid/xc9n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Invalid/xcrn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Invalid/xcrn0g04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Invalid/xcsn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Invalid/xcsn0g01.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Invalid/xd0n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Invalid/xd0n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Invalid/xd3n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Invalid/xd3n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Invalid/xd9n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Invalid/xd9n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Invalid/xdtn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Invalid/xdtn0g01.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Invalid/xhdn0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Invalid/xhdn0g08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Invalid/xlfn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Invalid/xlfn0g04.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Invalid/xs1n0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Invalid/xs1n0g01.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Invalid/xs2n0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Invalid/xs2n0g01.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Invalid/xs4n0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Invalid/xs4n0g01.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/Invalid/xs7n0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/Invalid/xs7n0g01.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/PngSuite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/PngSuite.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/basi2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/basi2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/basi6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/basi6a08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/basn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/basn2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/basn6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/basn6a08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/bgan6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/bgan6a08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/bgwn6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/bgwn6a08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/ccwn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/ccwn2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/cdfn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/cdfn2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/cdhn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/cdhn2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/cdsn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/cdsn2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/cdun2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/cdun2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/cs5n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/cs5n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/cs8n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/cs8n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/f00n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/f00n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/f01n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/f01n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/f02n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/f02n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/f03n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/f03n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/f04n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/f04n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/g03n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/g03n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/g04n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/g04n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/g05n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/g05n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/g07n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/g07n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/g10n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/g10n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/g25n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/g25n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/pp0n6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/pp0n6a08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/tbrn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/tbrn2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/tp0n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/tp0n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/z00n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/z00n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/z03n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/z03n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/z06n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/z06n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Inputs/iOS/z09n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Inputs/iOS/z09n2c08.png -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Outputs/Common/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Outputs/iOS/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/PngSuite.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/PngSuite.LICENSE -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/PngSuite.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/PngSuite.README -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/PngSuite.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/PngSuite.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basi0g01.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basi0g01.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basi0g02.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basi0g02.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basi0g04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basi0g04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basi0g08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basi0g08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basi0g16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basi0g16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basi2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basi2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basi2c16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basi2c16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basi3p01.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basi3p01.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basi3p02.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basi3p02.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basi3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basi3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basi3p08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basi3p08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basi4a08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basi4a08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basi4a16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basi4a16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basi6a08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basi6a08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basi6a16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basi6a16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basn0g01.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basn0g01.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basn0g02.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basn0g02.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basn0g04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basn0g04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basn0g08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basn0g08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basn0g16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basn0g16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basn2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basn2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basn2c16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basn2c16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basn3p01.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basn3p01.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basn3p02.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basn3p02.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basn3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basn3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basn3p08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basn3p08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basn4a08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basn4a08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basn4a16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basn4a16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basn6a08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basn6a08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/basn6a16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/basn6a16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/bgai4a08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/bgai4a08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/bgai4a16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/bgai4a16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/bgan6a08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/bgan6a08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/bgan6a16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/bgan6a16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/bgbn4a08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/bgbn4a08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/bggn4a16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/bggn4a16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/bgwn6a08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/bgwn6a08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/bgyn6a16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/bgyn6a16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/ccwn2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/ccwn2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/ccwn3p08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/ccwn3p08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/cdfn2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/cdfn2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/cdhn2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/cdhn2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/cdsn2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/cdsn2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/cdun2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/cdun2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/ch1n3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/ch1n3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/ch2n3p08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/ch2n3p08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/cm0n0g04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/cm0n0g04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/cm7n0g04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/cm7n0g04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/cm9n0g04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/cm9n0g04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/cs3n2c16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/cs3n2c16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/cs3n3p08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/cs3n3p08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/cs5n2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/cs5n2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/cs5n3p08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/cs5n3p08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/cs8n2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/cs8n2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/cs8n3p08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/cs8n3p08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/ct0n0g04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/ct0n0g04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/ct1n0g04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/ct1n0g04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/cten0g04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/cten0g04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/ctfn0g04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/ctfn0g04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/ctgn0g04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/ctgn0g04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/cthn0g04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/cthn0g04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/ctjn0g04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/ctjn0g04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/ctzn0g04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/ctzn0g04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/f00n0g08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/f00n0g08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/f00n2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/f00n2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/f01n0g08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/f01n0g08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/f01n2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/f01n2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/f02n0g08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/f02n0g08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/f02n2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/f02n2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/f03n0g08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/f03n0g08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/f03n2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/f03n2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/f04n0g08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/f04n0g08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/f04n2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/f04n2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/f99n0g04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/f99n0g04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/g03n0g16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/g03n0g16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/g03n2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/g03n2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/g03n3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/g03n3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/g04n0g16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/g04n0g16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/g04n2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/g04n2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/g04n3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/g04n3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/g05n0g16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/g05n0g16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/g05n2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/g05n2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/g05n3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/g05n3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/g07n0g16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/g07n0g16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/g07n2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/g07n2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/g07n3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/g07n3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/g10n0g16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/g10n0g16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/g10n2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/g10n2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/g10n3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/g10n3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/g25n0g16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/g25n0g16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/g25n2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/g25n2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/g25n3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/g25n3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/oi1n0g16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/oi1n0g16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/oi1n2c16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/oi1n2c16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/oi2n0g16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/oi2n0g16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/oi2n2c16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/oi2n2c16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/oi4n0g16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/oi4n0g16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/oi4n2c16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/oi4n2c16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/oi9n0g16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/oi9n0g16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/oi9n2c16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/oi9n2c16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/palette-color-nonphotographic.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/palette-color-nonphotographic.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/palette-color-photographic.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/palette-color-photographic.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/palette-grayscale-nonphotographic.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/palette-grayscale-nonphotographic.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/palette-grayscale-photographic.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/palette-grayscale-photographic.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/pp0n2c16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/pp0n2c16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/pp0n6a08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/pp0n6a08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/ps1n0g08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/ps1n0g08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/ps1n2c16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/ps1n2c16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/ps2n0g08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/ps2n0g08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/ps2n2c16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/ps2n2c16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/rgb-color-nonphotographic.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/rgb-color-nonphotographic.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/rgb-color-photographic.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/rgb-color-photographic.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/rgb-grayscale-nonphotographic.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/rgb-grayscale-nonphotographic.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/rgb-grayscale-photographic.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/rgb-grayscale-photographic.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s01i3p01.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s01i3p01.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s01n3p01.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s01n3p01.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s02i3p01.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s02i3p01.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s02n3p01.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s02n3p01.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s03i3p01.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s03i3p01.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s03n3p01.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s03n3p01.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s04i3p01.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s04i3p01.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s04n3p01.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s04n3p01.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s05i3p02.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s05i3p02.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s05n3p02.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s05n3p02.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s06i3p02.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s06i3p02.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s06n3p02.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s06n3p02.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s07i3p02.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s07i3p02.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s07n3p02.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s07n3p02.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s08i3p02.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s08i3p02.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s08n3p02.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s08n3p02.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s09i3p02.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s09i3p02.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s09n3p02.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s09n3p02.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s32i3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s32i3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s32n3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s32n3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s33i3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s33i3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s33n3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s33n3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s34i3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s34i3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s34n3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s34n3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s35i3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s35i3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s35n3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s35n3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s36i3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s36i3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s36n3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s36n3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s37i3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s37i3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s37n3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s37n3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s38i3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s38i3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s38n3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s38n3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s39i3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s39i3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s39n3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s39n3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s40i3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s40i3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/s40n3p04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/s40n3p04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/tbbn0g04.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/tbbn0g04.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/tbbn2c16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/tbbn2c16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/tbbn3p08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/tbbn3p08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/tbgn2c16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/tbgn2c16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/tbgn3p08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/tbgn3p08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/tbrn2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/tbrn2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/tbwn0g16.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/tbwn0g16.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/tbwn3p08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/tbwn3p08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/tbyn3p08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/tbyn3p08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/tm3n3p02.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/tm3n3p02.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/tp0n0g08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/tp0n0g08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/tp0n2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/tp0n2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/tp0n3p08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/tp0n3p08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/tp1n3p08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/tp1n3p08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/v-grayscale-nonphotographic.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/v-grayscale-nonphotographic.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/v-grayscale-photographic.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/v-grayscale-photographic.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/z00n2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/z00n2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/z03n2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/z03n2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/z06n2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/z06n2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/RGBA/z09n2c08.png.rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/RGBA/z09n2c08.png.rgba -------------------------------------------------------------------------------- /Sources/PNGIntegrationTests/Roundtripping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGIntegrationTests/Roundtripping.swift -------------------------------------------------------------------------------- /Sources/PNGTests/Filtering.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGTests/Filtering.swift -------------------------------------------------------------------------------- /Sources/PNGTests/Premultiplication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Sources/PNGTests/Premultiplication.swift -------------------------------------------------------------------------------- /Tests/Baselines/indexed8-color-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/indexed8-color-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Baselines/indexed8-color-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/indexed8-color-photographic.png -------------------------------------------------------------------------------- /Tests/Baselines/indexed8-monochrome-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/indexed8-monochrome-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Baselines/indexed8-monochrome-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/indexed8-monochrome-photographic.png -------------------------------------------------------------------------------- /Tests/Baselines/rgb16-color-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/rgb16-color-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Baselines/rgb16-color-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/rgb16-color-photographic.png -------------------------------------------------------------------------------- /Tests/Baselines/rgb16-monochrome-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/rgb16-monochrome-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Baselines/rgb16-monochrome-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/rgb16-monochrome-photographic.png -------------------------------------------------------------------------------- /Tests/Baselines/rgb8-color-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/rgb8-color-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Baselines/rgb8-color-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/rgb8-color-photographic.png -------------------------------------------------------------------------------- /Tests/Baselines/rgb8-monochrome-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/rgb8-monochrome-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Baselines/rgb8-monochrome-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/rgb8-monochrome-photographic.png -------------------------------------------------------------------------------- /Tests/Baselines/rgba16-color-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/rgba16-color-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Baselines/rgba16-color-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/rgba16-color-photographic.png -------------------------------------------------------------------------------- /Tests/Baselines/rgba16-monochrome-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/rgba16-monochrome-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Baselines/rgba16-monochrome-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/rgba16-monochrome-photographic.png -------------------------------------------------------------------------------- /Tests/Baselines/rgba8-color-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/rgba8-color-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Baselines/rgba8-color-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/rgba8-color-photographic.png -------------------------------------------------------------------------------- /Tests/Baselines/rgba8-monochrome-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/rgba8-monochrome-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Baselines/rgba8-monochrome-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/rgba8-monochrome-photographic.png -------------------------------------------------------------------------------- /Tests/Baselines/v16-monochrome-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/v16-monochrome-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Baselines/v16-monochrome-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/v16-monochrome-photographic.png -------------------------------------------------------------------------------- /Tests/Baselines/v8-monochrome-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/v8-monochrome-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Baselines/v8-monochrome-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/v8-monochrome-photographic.png -------------------------------------------------------------------------------- /Tests/Baselines/va16-monochrome-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/va16-monochrome-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Baselines/va16-monochrome-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/va16-monochrome-photographic.png -------------------------------------------------------------------------------- /Tests/Baselines/va8-monochrome-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/va8-monochrome-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Baselines/va8-monochrome-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Baselines/va8-monochrome-photographic.png -------------------------------------------------------------------------------- /Tests/Outputs/indexed8-color-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/indexed8-color-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Outputs/indexed8-color-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/indexed8-color-photographic.png -------------------------------------------------------------------------------- /Tests/Outputs/indexed8-monochrome-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/indexed8-monochrome-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Outputs/indexed8-monochrome-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/indexed8-monochrome-photographic.png -------------------------------------------------------------------------------- /Tests/Outputs/rgb16-color-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/rgb16-color-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Outputs/rgb16-color-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/rgb16-color-photographic.png -------------------------------------------------------------------------------- /Tests/Outputs/rgb16-monochrome-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/rgb16-monochrome-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Outputs/rgb16-monochrome-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/rgb16-monochrome-photographic.png -------------------------------------------------------------------------------- /Tests/Outputs/rgb8-color-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/rgb8-color-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Outputs/rgb8-color-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/rgb8-color-photographic.png -------------------------------------------------------------------------------- /Tests/Outputs/rgb8-monochrome-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/rgb8-monochrome-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Outputs/rgb8-monochrome-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/rgb8-monochrome-photographic.png -------------------------------------------------------------------------------- /Tests/Outputs/rgba16-color-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/rgba16-color-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Outputs/rgba16-color-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/rgba16-color-photographic.png -------------------------------------------------------------------------------- /Tests/Outputs/rgba16-monochrome-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/rgba16-monochrome-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Outputs/rgba16-monochrome-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/rgba16-monochrome-photographic.png -------------------------------------------------------------------------------- /Tests/Outputs/rgba8-color-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/rgba8-color-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Outputs/rgba8-color-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/rgba8-color-photographic.png -------------------------------------------------------------------------------- /Tests/Outputs/rgba8-monochrome-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/rgba8-monochrome-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Outputs/rgba8-monochrome-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/rgba8-monochrome-photographic.png -------------------------------------------------------------------------------- /Tests/Outputs/v16-monochrome-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/v16-monochrome-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Outputs/v16-monochrome-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/v16-monochrome-photographic.png -------------------------------------------------------------------------------- /Tests/Outputs/v8-monochrome-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/v8-monochrome-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Outputs/v8-monochrome-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/v8-monochrome-photographic.png -------------------------------------------------------------------------------- /Tests/Outputs/va16-monochrome-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/va16-monochrome-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Outputs/va16-monochrome-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/va16-monochrome-photographic.png -------------------------------------------------------------------------------- /Tests/Outputs/va8-monochrome-nonphotographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/va8-monochrome-nonphotographic.png -------------------------------------------------------------------------------- /Tests/Outputs/va8-monochrome-photographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tests/Outputs/va8-monochrome-photographic.png -------------------------------------------------------------------------------- /Tools/benchmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tools/benchmark -------------------------------------------------------------------------------- /Tools/benchmark_crunch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tools/benchmark_crunch.py -------------------------------------------------------------------------------- /Tools/benchmark_latest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tools/benchmark_latest.py -------------------------------------------------------------------------------- /Tools/convert-to-bgra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tools/convert-to-bgra -------------------------------------------------------------------------------- /Tools/convert-to-rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tools/convert-to-rgba -------------------------------------------------------------------------------- /Tools/densityplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tools/densityplot.py -------------------------------------------------------------------------------- /Tools/differentialplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tools/differentialplot.py -------------------------------------------------------------------------------- /Tools/examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tools/examples -------------------------------------------------------------------------------- /Tools/generate-documentation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tools/generate-documentation -------------------------------------------------------------------------------- /Tools/svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tools/svg.py -------------------------------------------------------------------------------- /Tools/toolchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayloraswift/swift-png/HEAD/Tools/toolchain.py --------------------------------------------------------------------------------