├── .editorconfig ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── config.yml │ └── oss-bug-report.yml ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── build-and-test.yml │ └── code-coverage.yml ├── .gitignore ├── .gitmodules ├── .runsettings ├── CODE_OF_CONDUCT.md ├── Directory.Build.props ├── Directory.Build.targets ├── ImageSharp.sln ├── LICENSE ├── README.md ├── SixLabors.ImageSharp.props ├── THIRD-PARTY-NOTICES.TXT ├── ci-build.ps1 ├── ci-pack.ps1 ├── ci-test.ps1 ├── codecov.yml ├── src ├── Directory.Build.props ├── Directory.Build.targets ├── ImageSharp.ruleset ├── ImageSharp │ ├── Advanced │ │ ├── AdvancedImageExtensions.cs │ │ ├── AotCompilerTools.cs │ │ ├── IConfigurationProvider.cs │ │ ├── IImageVisitor.cs │ │ ├── IPixelSource.cs │ │ ├── IRowIntervalOperation.cs │ │ ├── IRowIntervalOperation{TBuffer}.cs │ │ ├── IRowOperation.cs │ │ ├── IRowOperation{TBuffer}.cs │ │ ├── ParallelExecutionSettings.cs │ │ ├── ParallelRowIterator.Wrappers.cs │ │ ├── ParallelRowIterator.cs │ │ └── PreserveAttribute.cs │ ├── Color │ │ ├── Color.NamedColors.cs │ │ ├── Color.WebSafePalette.cs │ │ ├── Color.WernerPalette.cs │ │ └── Color.cs │ ├── ColorProfiles │ │ ├── ChromaticAdaptionWhitePointSource.cs │ │ ├── CieConstants.cs │ │ ├── CieLab.cs │ │ ├── CieLch.cs │ │ ├── CieLchuv.cs │ │ ├── CieLuv.cs │ │ ├── CieXyChromaticityCoordinates.cs │ │ ├── CieXyy.cs │ │ ├── CieXyz.cs │ │ ├── Cmyk.cs │ │ ├── ColorConversionOptions.cs │ │ ├── ColorProfileConverter.cs │ │ ├── ColorProfileConverterExtensionsCieLabCieLab.cs │ │ ├── ColorProfileConverterExtensionsCieLabCieXyz.cs │ │ ├── ColorProfileConverterExtensionsCieLabRgb.cs │ │ ├── ColorProfileConverterExtensionsCieXyzCieLab.cs │ │ ├── ColorProfileConverterExtensionsCieXyzCieXyz.cs │ │ ├── ColorProfileConverterExtensionsCieXyzRgb.cs │ │ ├── ColorProfileConverterExtensionsIcc.cs │ │ ├── ColorProfileConverterExtensionsRgbCieLab.cs │ │ ├── ColorProfileConverterExtensionsRgbCieXyz.cs │ │ ├── ColorProfileConverterExtensionsRgbRgb.cs │ │ ├── Companding │ │ │ ├── CompandingUtilities.cs │ │ │ ├── GammaCompanding.cs │ │ │ ├── LCompanding.cs │ │ │ ├── Rec2020Companding.cs │ │ │ ├── Rec709Companding.cs │ │ │ └── SRgbCompanding.cs │ │ ├── Hsl.cs │ │ ├── Hsv.cs │ │ ├── HunterLab.cs │ │ ├── IColorProfile.cs │ │ ├── IProfileConnectingSpace.cs │ │ ├── Icc │ │ │ ├── Calculators │ │ │ │ ├── ClutCalculator.cs │ │ │ │ ├── ColorTrcCalculator.cs │ │ │ │ ├── CurveCalculator.CalculationType.cs │ │ │ │ ├── CurveCalculator.cs │ │ │ │ ├── GrayTrcCalculator.cs │ │ │ │ ├── ISingleCalculator.cs │ │ │ │ ├── IVector4Calculator.cs │ │ │ │ ├── LutABCalculator.CalculationType.cs │ │ │ │ ├── LutABCalculator.cs │ │ │ │ ├── LutCalculator.cs │ │ │ │ ├── LutEntryCalculator.cs │ │ │ │ ├── MatrixCalculator.cs │ │ │ │ ├── ParametricCurveCalculator.cs │ │ │ │ └── TrcCalculator.cs │ │ │ ├── IccConverterBase.Checks.cs │ │ │ ├── IccConverterBase.ConversionMethod.cs │ │ │ ├── IccConverterbase.Conversions.cs │ │ │ ├── IccConverterbase.cs │ │ │ ├── IccDataToDataConverter.cs │ │ │ ├── IccDataToPcsConverter.cs │ │ │ ├── IccPcsToDataConverter.cs │ │ │ ├── IccPcsToPcsConverter.cs │ │ │ └── SrgbV4Profile.Generated.cs │ │ ├── KnownChromaticAdaptationMatrices.cs │ │ ├── KnownIlluminants.cs │ │ ├── KnownRgbWorkingSpaces.cs │ │ ├── KnownYCbCrMatrices.cs │ │ ├── Lms.cs │ │ ├── Rgb.cs │ │ ├── RgbPrimariesChromaticityCoordinates.cs │ │ ├── VonKriesChromaticAdaptation.cs │ │ ├── WorkingSpaces │ │ │ ├── GammaWorkingSpace.cs │ │ │ ├── LWorkingSpace.cs │ │ │ ├── Rec2020WorkingSpace.cs │ │ │ ├── Rec709WorkingSpace.cs │ │ │ ├── RgbWorkingSpace.cs │ │ │ └── SRgbWorkingSpace.cs │ │ ├── Y.cs │ │ ├── YCbCr.cs │ │ ├── YcbCrMatrix.cs │ │ └── YccK.cs │ ├── Common │ │ ├── ByteOrder.cs │ │ ├── Constants.cs │ │ ├── Exceptions │ │ │ ├── ImageFormatException.cs │ │ │ ├── ImageProcessingException.cs │ │ │ ├── InvalidImageContentException.cs │ │ │ └── UnknownImageFormatException.cs │ │ ├── Extensions │ │ │ ├── ConfigurationExtensions.cs │ │ │ ├── EnumerableExtensions.cs │ │ │ ├── StreamExtensions.cs │ │ │ └── Vector4Extensions.cs │ │ ├── Helpers │ │ │ ├── ColorNumerics.cs │ │ │ ├── DebugGuard.cs │ │ │ ├── EnumUtils.cs │ │ │ ├── ExifResolutionValues.cs │ │ │ ├── Guard.cs │ │ │ ├── HexConverter.cs │ │ │ ├── InliningOptions.cs │ │ │ ├── Numerics.cs │ │ │ ├── RuntimeUtility.cs │ │ │ ├── Shuffle │ │ │ │ ├── IComponentShuffle.cs │ │ │ │ ├── IPad3Shuffle4.cs │ │ │ │ ├── IShuffle3.cs │ │ │ │ ├── IShuffle4.cs │ │ │ │ └── IShuffle4Slice3.cs │ │ │ ├── SimdUtils.Convert.cs │ │ │ ├── SimdUtils.HwIntrinsics.cs │ │ │ ├── SimdUtils.Pack.cs │ │ │ ├── SimdUtils.Shuffle.cs │ │ │ ├── SimdUtils.cs │ │ │ ├── TestHelpers.cs │ │ │ ├── TolerantMath.cs │ │ │ ├── UnitConverter.cs │ │ │ ├── Vector128Utilities.cs │ │ │ ├── Vector256Utilities.cs │ │ │ └── Vector512Utilities.cs │ │ ├── InlineArray.cs │ │ ├── InlineArray.tt │ │ └── Tuples │ │ │ └── Octet{T}.cs │ ├── Compression │ │ └── Zlib │ │ │ ├── Adler32.cs │ │ │ ├── DeflateCompressionLevel.cs │ │ │ ├── DeflateThrowHelper.cs │ │ │ ├── Deflater.cs │ │ │ ├── DeflaterConstants.cs │ │ │ ├── DeflaterEngine.cs │ │ │ ├── DeflaterHuffman.cs │ │ │ ├── DeflaterOutputStream.cs │ │ │ ├── DeflaterPendingBuffer.cs │ │ │ ├── README.md │ │ │ ├── ZlibDeflateStream.cs │ │ │ └── ZlibInflateStream.cs │ ├── Configuration.cs │ ├── Diagnostics │ │ └── MemoryDiagnostics.cs │ ├── Formats │ │ ├── AlphaAwareImageEncoder.cs │ │ ├── AnimationUtilities.cs │ │ ├── Bmp │ │ │ ├── BmpArrayFileHeader.cs │ │ │ ├── BmpBitsPerPixel.cs │ │ │ ├── BmpColorSpace.cs │ │ │ ├── BmpCompression.cs │ │ │ ├── BmpConfigurationModule.cs │ │ │ ├── BmpConstants.cs │ │ │ ├── BmpDecoder.cs │ │ │ ├── BmpDecoderCore.cs │ │ │ ├── BmpDecoderOptions.cs │ │ │ ├── BmpEncoder.cs │ │ │ ├── BmpEncoderCore.cs │ │ │ ├── BmpFileHeader.cs │ │ │ ├── BmpFileMarkerType.cs │ │ │ ├── BmpFormat.cs │ │ │ ├── BmpImageFormatDetector.cs │ │ │ ├── BmpInfoHeader.cs │ │ │ ├── BmpInfoHeaderType.cs │ │ │ ├── BmpMetadata.cs │ │ │ ├── BmpRenderingIntent.cs │ │ │ ├── BmpThrowHelper.cs │ │ │ ├── README.md │ │ │ └── RleSkippedPixelHandling.cs │ │ ├── ColorProfileHandling.cs │ │ ├── Cur │ │ │ ├── CurConfigurationModule.cs │ │ │ ├── CurConstants.cs │ │ │ ├── CurDecoder.cs │ │ │ ├── CurDecoderCore.cs │ │ │ ├── CurEncoder.cs │ │ │ ├── CurEncoderCore.cs │ │ │ ├── CurFormat.cs │ │ │ ├── CurFrameMetadata.cs │ │ │ └── CurMetadata.cs │ │ ├── DecoderOptions.cs │ │ ├── EncodingType.cs │ │ ├── EncodingUtilities.cs │ │ ├── FormatConnectingFrameMetadata.cs │ │ ├── FormatConnectingMetadata.cs │ │ ├── FrameBlendMode.cs │ │ ├── FrameColorTableMode.cs │ │ ├── FrameDisposalMode.cs │ │ ├── Gif │ │ │ ├── GifConfigurationModule.cs │ │ │ ├── GifConstants.cs │ │ │ ├── GifDecoder.cs │ │ │ ├── GifDecoderCore.cs │ │ │ ├── GifEncoder.cs │ │ │ ├── GifEncoderCore.cs │ │ │ ├── GifFormat.cs │ │ │ ├── GifFrameMetadata.cs │ │ │ ├── GifImageFormatDetector.cs │ │ │ ├── GifMetadata.cs │ │ │ ├── GifThrowHelper.cs │ │ │ ├── LzwDecoder.cs │ │ │ ├── LzwEncoder.cs │ │ │ ├── README.md │ │ │ ├── Sections │ │ │ │ ├── GifGraphicControlExtension.cs │ │ │ │ ├── GifImageDescriptor.cs │ │ │ │ ├── GifLogicalScreenDescriptor.cs │ │ │ │ ├── GifNetscapeLoopingApplicationExtension.cs │ │ │ │ ├── GifXmpApplicationExtension.cs │ │ │ │ └── IGifExtension.cs │ │ │ └── spec-gif89a.txt │ │ ├── IAnimatedImageEncoder.cs │ │ ├── IFormatFrameMetadata.cs │ │ ├── IFormatMetadata.cs │ │ ├── IImageDecoder.cs │ │ ├── IImageEncoder.cs │ │ ├── IImageFormat.cs │ │ ├── IImageFormatConfigurationModule.cs │ │ ├── IImageFormatDetector.cs │ │ ├── IQuantizingImageEncoder.cs │ │ ├── ISpecializedDecoderOptions.cs │ │ ├── ISpecializedImageDecoder{T}.cs │ │ ├── Ico │ │ │ ├── IcoConfigurationModule.cs │ │ │ ├── IcoConstants.cs │ │ │ ├── IcoDecoder.cs │ │ │ ├── IcoDecoderCore.cs │ │ │ ├── IcoEncoder.cs │ │ │ ├── IcoEncoderCore.cs │ │ │ ├── IcoFormat.cs │ │ │ ├── IcoFrameMetadata.cs │ │ │ └── IcoMetadata.cs │ │ ├── Icon │ │ │ ├── IconDecoderCore.cs │ │ │ ├── IconDir.cs │ │ │ ├── IconDirEntry.cs │ │ │ ├── IconEncoderCore.cs │ │ │ ├── IconFileType.cs │ │ │ ├── IconFrameCompression.cs │ │ │ └── IconImageFormatDetector.cs │ │ ├── ImageDecoder.cs │ │ ├── ImageDecoderCore.cs │ │ ├── ImageEncoder.cs │ │ ├── ImageFormatManager.cs │ │ ├── Jpeg │ │ │ ├── 5116.DCT_Filter.pdf │ │ │ ├── Components │ │ │ │ ├── Block8x8.Intrinsic.cs │ │ │ │ ├── Block8x8.cs │ │ │ │ ├── Block8x8F.ScaledCopy.cs │ │ │ │ ├── Block8x8F.Vector128.cs │ │ │ │ ├── Block8x8F.Vector256.cs │ │ │ │ ├── Block8x8F.cs │ │ │ │ ├── ColorConverters │ │ │ │ │ ├── JpegColorConverter.CmykScalar.cs │ │ │ │ │ ├── JpegColorConverter.CmykVector128.cs │ │ │ │ │ ├── JpegColorConverter.CmykVector256.cs │ │ │ │ │ ├── JpegColorConverter.CmykVector512.cs │ │ │ │ │ ├── JpegColorConverter.GrayScaleScalar.cs │ │ │ │ │ ├── JpegColorConverter.GrayScaleVector128.cs │ │ │ │ │ ├── JpegColorConverter.GrayScaleVector256.cs │ │ │ │ │ ├── JpegColorConverter.GrayScaleVector512.cs │ │ │ │ │ ├── JpegColorConverter.RgbScalar.cs │ │ │ │ │ ├── JpegColorConverter.RgbVector128.cs │ │ │ │ │ ├── JpegColorConverter.RgbVector256.cs │ │ │ │ │ ├── JpegColorConverter.RgbVector512.cs │ │ │ │ │ ├── JpegColorConverter.YCbCrScalar.cs │ │ │ │ │ ├── JpegColorConverter.YCbCrVector128.cs │ │ │ │ │ ├── JpegColorConverter.YCbCrVector256.cs │ │ │ │ │ ├── JpegColorConverter.YCbCrVector512.cs │ │ │ │ │ ├── JpegColorConverter.YccKScalar.cs │ │ │ │ │ ├── JpegColorConverter.YccKVector128.cs │ │ │ │ │ ├── JpegColorConverter.YccKVector256.cs │ │ │ │ │ ├── JpegColorConverter.YccKVector512.cs │ │ │ │ │ ├── JpegColorConverterBase.cs │ │ │ │ │ ├── JpegColorConverterScalar.cs │ │ │ │ │ ├── JpegColorConverterVector.cs │ │ │ │ │ ├── JpegColorConverterVector128.cs │ │ │ │ │ ├── JpegColorConverterVector256.cs │ │ │ │ │ └── JpegColorConverterVector512.cs │ │ │ │ ├── ComponentType.cs │ │ │ │ ├── Decoder │ │ │ │ │ ├── AdobeMarker.cs │ │ │ │ │ ├── ArithmeticDecodingComponent.cs │ │ │ │ │ ├── ArithmeticDecodingTable.cs │ │ │ │ │ ├── ArithmeticScanDecoder.cs │ │ │ │ │ ├── ArithmeticStatistics.cs │ │ │ │ │ ├── ComponentProcessors │ │ │ │ │ │ ├── ComponentProcessor.cs │ │ │ │ │ │ ├── DirectComponentProcessor.cs │ │ │ │ │ │ ├── DownScalingComponentProcessor2.cs │ │ │ │ │ │ ├── DownScalingComponentProcessor4.cs │ │ │ │ │ │ └── DownScalingComponentProcessor8.cs │ │ │ │ │ ├── HuffmanScanDecoder.cs │ │ │ │ │ ├── HuffmanTable.cs │ │ │ │ │ ├── IJpegComponent.cs │ │ │ │ │ ├── IJpegScanDecoder.cs │ │ │ │ │ ├── IRawJpegData.cs │ │ │ │ │ ├── JFifMarker.cs │ │ │ │ │ ├── JpegBitReader.cs │ │ │ │ │ ├── JpegComponent.cs │ │ │ │ │ ├── JpegFileMarker.cs │ │ │ │ │ ├── JpegFrame.cs │ │ │ │ │ ├── ProfileResolver.cs │ │ │ │ │ ├── SpectralConverter.cs │ │ │ │ │ └── SpectralConverter{TPixel}.cs │ │ │ │ ├── Encoder │ │ │ │ │ ├── Component.cs │ │ │ │ │ ├── ComponentProcessor.cs │ │ │ │ │ ├── EncodingConfigs │ │ │ │ │ │ ├── JpegComponentConfig.cs │ │ │ │ │ │ ├── JpegFrameConfig.cs │ │ │ │ │ │ ├── JpegHuffmanTableConfig.cs │ │ │ │ │ │ └── JpegQuantizationTableConfig.cs │ │ │ │ │ ├── HuffmanLut.cs │ │ │ │ │ ├── HuffmanScanEncoder.cs │ │ │ │ │ ├── HuffmanSpec.cs │ │ │ │ │ ├── JpegFrame.cs │ │ │ │ │ ├── SpectralConverter.cs │ │ │ │ │ └── SpectralConverter{TPixel}.cs │ │ │ │ ├── FloatingPointDCT.Vector256.cs │ │ │ │ ├── FloatingPointDCT.cs │ │ │ │ ├── JpegColorSpace.cs │ │ │ │ ├── Quantization.cs │ │ │ │ ├── RowOctet.cs │ │ │ │ ├── ScaledFloatingPointDCT.cs │ │ │ │ ├── SizeExtensions.cs │ │ │ │ ├── ZigZag.Intrinsic.cs │ │ │ │ └── ZigZag.cs │ │ │ ├── JpegColorType.cs │ │ │ ├── JpegComData.cs │ │ │ ├── JpegConfigurationModule.cs │ │ │ ├── JpegConstants.cs │ │ │ ├── JpegDecoder.cs │ │ │ ├── JpegDecoderCore.cs │ │ │ ├── JpegDecoderOptions.cs │ │ │ ├── JpegDecoderResizeMode.cs │ │ │ ├── JpegEncoder.cs │ │ │ ├── JpegEncoderCore.FrameConfig.cs │ │ │ ├── JpegEncoderCore.cs │ │ │ ├── JpegFormat.cs │ │ │ ├── JpegImageFormatDetector.cs │ │ │ ├── JpegMetadata.cs │ │ │ ├── JpegThrowHelper.cs │ │ │ ├── README.md │ │ │ └── itu-t81.pdf │ │ ├── Pbm │ │ │ ├── BinaryDecoder.cs │ │ │ ├── BinaryEncoder.cs │ │ │ ├── BufferedReadStreamExtensions.cs │ │ │ ├── PbmColorType.cs │ │ │ ├── PbmComponentType.cs │ │ │ ├── PbmConfigurationModule.cs │ │ │ ├── PbmConstants.cs │ │ │ ├── PbmDecoder.cs │ │ │ ├── PbmDecoderCore.cs │ │ │ ├── PbmEncoder.cs │ │ │ ├── PbmEncoderCore.cs │ │ │ ├── PbmEncoding.cs │ │ │ ├── PbmFormat.cs │ │ │ ├── PbmImageFormatDetector.cs │ │ │ ├── PbmMetadata.cs │ │ │ ├── PlainDecoder.cs │ │ │ └── PlainEncoder.cs │ │ ├── Png │ │ │ ├── Adam7.cs │ │ │ ├── Chunks │ │ │ │ ├── AnimationControl.cs │ │ │ │ ├── FrameControl.cs │ │ │ │ ├── PngHeader.cs │ │ │ │ ├── PngPhysical.cs │ │ │ │ └── PngTextData.cs │ │ │ ├── Filters │ │ │ │ ├── AverageFilter.cs │ │ │ │ ├── FilterType.cs │ │ │ │ ├── NoneFilter.cs │ │ │ │ ├── PaethFilter.cs │ │ │ │ ├── SubFilter.cs │ │ │ │ └── UpFilter.cs │ │ │ ├── PngBitDepth.cs │ │ │ ├── PngChunk.cs │ │ │ ├── PngChunkFilter.cs │ │ │ ├── PngChunkType.cs │ │ │ ├── PngColorType.cs │ │ │ ├── PngCompressionLevel.cs │ │ │ ├── PngConfigurationModule.cs │ │ │ ├── PngConstants.cs │ │ │ ├── PngDecoder.cs │ │ │ ├── PngDecoderCore.cs │ │ │ ├── PngDecoderOptions.cs │ │ │ ├── PngEncoder.cs │ │ │ ├── PngEncoderCore.cs │ │ │ ├── PngEncoderHelpers.cs │ │ │ ├── PngFilterMethod.cs │ │ │ ├── PngFormat.cs │ │ │ ├── PngFrameMetadata.cs │ │ │ ├── PngImageFormatDetector.cs │ │ │ ├── PngInterlaceMode.cs │ │ │ ├── PngMetadata.cs │ │ │ ├── PngScanlineProcessor.cs │ │ │ ├── PngThrowHelper.cs │ │ │ └── README.md │ │ ├── Qoi │ │ │ ├── QoiChannels.cs │ │ │ ├── QoiChunk.cs │ │ │ ├── QoiColorSpace.cs │ │ │ ├── QoiConfigurationModule.cs │ │ │ ├── QoiConstants.cs │ │ │ ├── QoiDecoder.cs │ │ │ ├── QoiDecoderCore.cs │ │ │ ├── QoiEncoder.cs │ │ │ ├── QoiEncoderCore.cs │ │ │ ├── QoiFormat.cs │ │ │ ├── QoiHeader.cs │ │ │ ├── QoiImageFormatDetector.cs │ │ │ ├── QoiMetadata.cs │ │ │ └── qoi-specification.pdf │ │ ├── SegmentIntegrityHandling.cs │ │ ├── SpecializedImageDecoder{T}.cs │ │ ├── Tga │ │ │ ├── README.md │ │ │ ├── TGA_Specification.pdf │ │ │ ├── TgaBitsPerPixel.cs │ │ │ ├── TgaCompression.cs │ │ │ ├── TgaConfigurationModule.cs │ │ │ ├── TgaConstants.cs │ │ │ ├── TgaDecoder.cs │ │ │ ├── TgaDecoderCore.cs │ │ │ ├── TgaEncoder.cs │ │ │ ├── TgaEncoderCore.cs │ │ │ ├── TgaFileHeader.cs │ │ │ ├── TgaFormat.cs │ │ │ ├── TgaImageFormatDetector.cs │ │ │ ├── TgaImageOrigin.cs │ │ │ ├── TgaImageType.cs │ │ │ ├── TgaImageTypeExtensions.cs │ │ │ ├── TgaMetadata.cs │ │ │ └── TgaThrowHelper.cs │ │ ├── Tiff │ │ │ ├── Compression │ │ │ │ ├── BitWriterUtils.cs │ │ │ │ ├── Compressors │ │ │ │ │ ├── DeflateCompressor.cs │ │ │ │ │ ├── LzwCompressor.cs │ │ │ │ │ ├── NoCompressor.cs │ │ │ │ │ ├── PackBitsCompressor.cs │ │ │ │ │ ├── PackBitsWriter.cs │ │ │ │ │ ├── T4BitCompressor.cs │ │ │ │ │ ├── T6BitCompressor.cs │ │ │ │ │ ├── TiffCcittCompressor.cs │ │ │ │ │ ├── TiffJpegCompressor.cs │ │ │ │ │ └── TiffLzwEncoder.cs │ │ │ │ ├── Decompressors │ │ │ │ │ ├── CcittReferenceScanline.cs │ │ │ │ │ ├── CcittTwoDimensionalCode.cs │ │ │ │ │ ├── CcittTwoDimensionalCodeType.cs │ │ │ │ │ ├── DeflateTiffCompression.cs │ │ │ │ │ ├── GrayJpegSpectralConverter.cs │ │ │ │ │ ├── JpegCompressionUtils.cs │ │ │ │ │ ├── JpegTiffCompression.cs │ │ │ │ │ ├── LzwString.cs │ │ │ │ │ ├── LzwTiffCompression.cs │ │ │ │ │ ├── ModifiedHuffmanBitReader.cs │ │ │ │ │ ├── ModifiedHuffmanTiffCompression.cs │ │ │ │ │ ├── NoneTiffCompression.cs │ │ │ │ │ ├── OldJpegTiffCompression.cs │ │ │ │ │ ├── PackBitsTiffCompression.cs │ │ │ │ │ ├── RgbJpegSpectralConverter.cs │ │ │ │ │ ├── T4BitReader.cs │ │ │ │ │ ├── T4TiffCompression.cs │ │ │ │ │ ├── T6BitReader.cs │ │ │ │ │ ├── T6TiffCompression.cs │ │ │ │ │ ├── TiffJpegSpectralConverter{TPixel}.cs │ │ │ │ │ ├── TiffLzwDecoder.cs │ │ │ │ │ ├── TiffOldJpegSpectralConverter{TPixel}.cs │ │ │ │ │ └── WebpTiffCompression.cs │ │ │ │ ├── FaxCompressionOptions.cs │ │ │ │ ├── HorizontalPredictor.cs │ │ │ │ ├── TiffBaseCompression.cs │ │ │ │ ├── TiffBaseCompressor.cs │ │ │ │ ├── TiffBaseDecompressor.cs │ │ │ │ ├── TiffCompressorFactory.cs │ │ │ │ ├── TiffDecoderCompressionType.cs │ │ │ │ └── TiffDecompressorsFactory.cs │ │ │ ├── Constants │ │ │ │ ├── TiffCompression.cs │ │ │ │ ├── TiffConstants.cs │ │ │ │ ├── TiffExtraSamples.cs │ │ │ │ ├── TiffFillOrder.cs │ │ │ │ ├── TiffInkSet.cs │ │ │ │ ├── TiffNewSubfileType.cs │ │ │ │ ├── TiffOrientation.cs │ │ │ │ ├── TiffPhotometricInterpretation.cs │ │ │ │ ├── TiffPlanarConfiguration.cs │ │ │ │ ├── TiffPredictor.cs │ │ │ │ ├── TiffSampleFormat.cs │ │ │ │ ├── TiffSubfileType.cs │ │ │ │ └── TiffThresholding.cs │ │ │ ├── Ifd │ │ │ │ ├── DirectoryReader.cs │ │ │ │ └── EntryReader.cs │ │ │ ├── PhotometricInterpretation │ │ │ │ ├── BlackIsZero16TiffColor{TPixel}.cs │ │ │ │ ├── BlackIsZero1TiffColor{TPixel}.cs │ │ │ │ ├── BlackIsZero24TiffColor{TPixel}.cs │ │ │ │ ├── BlackIsZero32FloatTiffColor{TPixel}.cs │ │ │ │ ├── BlackIsZero32TiffColor{TPixel}.cs │ │ │ │ ├── BlackIsZero4TiffColor{TPixel}.cs │ │ │ │ ├── BlackIsZero8TiffColor{TPixel}.cs │ │ │ │ ├── BlackIsZeroTiffColor{TPixel}.cs │ │ │ │ ├── CieLabPlanarTiffColor{TPixel}.cs │ │ │ │ ├── CieLabTiffColor{TPixel}.cs │ │ │ │ ├── CmykTiffColor{TPixel}.cs │ │ │ │ ├── PaletteTiffColor{TPixel}.cs │ │ │ │ ├── Rgb161616TiffColor{TPixel}.cs │ │ │ │ ├── Rgb16PlanarTiffColor{TPixel}.cs │ │ │ │ ├── Rgb242424TiffColor{TPixel}.cs │ │ │ │ ├── Rgb24PlanarTiffColor{TPixel}.cs │ │ │ │ ├── Rgb323232TiffColor{TPixel}.cs │ │ │ │ ├── Rgb32PlanarTiffColor{TPixel}.cs │ │ │ │ ├── Rgb444TiffColor{TPixel}.cs │ │ │ │ ├── Rgb888TiffColor{TPixel}.cs │ │ │ │ ├── RgbFloat323232TiffColor{TPixel}.cs │ │ │ │ ├── RgbPlanarTiffColor{TPixel}.cs │ │ │ │ ├── RgbTiffColor{TPixel}.cs │ │ │ │ ├── Rgba16161616TiffColor{TPixel}.cs │ │ │ │ ├── Rgba16PlanarTiffColor{TPixel}.cs │ │ │ │ ├── Rgba24242424TiffColor{TPixel}.cs │ │ │ │ ├── Rgba24PlanarTiffColor{TPixel}.cs │ │ │ │ ├── Rgba32323232TiffColor{TPixel}.cs │ │ │ │ ├── Rgba32PlanarTiffColor{TPixel}.cs │ │ │ │ ├── Rgba8888TiffColor{TPixel}.cs │ │ │ │ ├── RgbaFloat32323232TiffColor{TPixel}.cs │ │ │ │ ├── RgbaPlanarTiffColor{TPixel}.cs │ │ │ │ ├── RgbaTiffColor{TPixel}.cs │ │ │ │ ├── TiffBaseColorDecoder{TPixel}.cs │ │ │ │ ├── TiffBasePlanarColorDecoder{TPixel}.cs │ │ │ │ ├── TiffColorDecoderFactory{TPixel}.cs │ │ │ │ ├── TiffColorType.cs │ │ │ │ ├── WhiteIsZero16TiffColor{TPixel}.cs │ │ │ │ ├── WhiteIsZero1TiffColor{TPixel}.cs │ │ │ │ ├── WhiteIsZero24TiffColor{TPixel}.cs │ │ │ │ ├── WhiteIsZero32FloatTiffColor{TPixel}.cs │ │ │ │ ├── WhiteIsZero32TiffColor{TPixel}.cs │ │ │ │ ├── WhiteIsZero4TiffColor{TPixel}.cs │ │ │ │ ├── WhiteIsZero8TiffColor{TPixel}.cs │ │ │ │ ├── WhiteIsZeroTiffColor{TPixel}.cs │ │ │ │ ├── YCbCrConverter.cs │ │ │ │ ├── YCbCrPlanarTiffColor{TPixel}.cs │ │ │ │ └── YCbCrTiffColor{TPixel}.cs │ │ │ ├── README.md │ │ │ ├── T-REC-T.4-198811-S!!PDF-E.pdf │ │ │ ├── T-REC-T.6-198811-I!!PDF-E.pdf │ │ │ ├── TIFF-AdobeTechNote-22032002.pdf │ │ │ ├── TIFF-v6.pdf │ │ │ ├── TiffBitsPerPixel.cs │ │ │ ├── TiffBitsPerSample.cs │ │ │ ├── TiffConfigurationModule.cs │ │ │ ├── TiffDecoder.cs │ │ │ ├── TiffDecoderCore.cs │ │ │ ├── TiffDecoderMetadataCreator.cs │ │ │ ├── TiffDecoderOptionsParser.cs │ │ │ ├── TiffEncoder.cs │ │ │ ├── TiffEncoderCore.cs │ │ │ ├── TiffEncoderEntriesCollector.cs │ │ │ ├── TiffExtraSampleType.cs │ │ │ ├── TiffFormat.cs │ │ │ ├── TiffFormatType.cs │ │ │ ├── TiffFrameMetadata.cs │ │ │ ├── TiffImageFormatDetector.cs │ │ │ ├── TiffMetadata.cs │ │ │ ├── TiffThrowHelper.cs │ │ │ ├── Utils │ │ │ │ ├── BitReader.cs │ │ │ │ └── TiffUtilities.cs │ │ │ └── Writers │ │ │ │ ├── TiffBaseColorWriter{TPixel}.cs │ │ │ │ ├── TiffBiColorWriter{TPixel}.cs │ │ │ │ ├── TiffColorWriterFactory.cs │ │ │ │ ├── TiffCompositeColorWriter{TPixel}.cs │ │ │ │ ├── TiffGrayL16Writer{TPixel}.cs │ │ │ │ ├── TiffGrayWriter{TPixel}.cs │ │ │ │ ├── TiffPaletteWriter{TPixel}.cs │ │ │ │ ├── TiffRgbWriter{TPixel}.cs │ │ │ │ └── TiffStreamWriter.cs │ │ ├── TransparentColorMode.cs │ │ ├── Webp │ │ │ ├── AlphaDecoder.cs │ │ │ ├── AlphaEncoder.cs │ │ │ ├── BackgroundColorHandling.cs │ │ │ ├── BitReader │ │ │ │ ├── BitReaderBase.cs │ │ │ │ ├── Vp8BitReader.cs │ │ │ │ └── Vp8LBitReader.cs │ │ │ ├── BitWriter │ │ │ │ ├── BitWriterBase.cs │ │ │ │ ├── Vp8BitWriter.cs │ │ │ │ └── Vp8LBitWriter.cs │ │ │ ├── Chunks │ │ │ │ ├── WebpAnimationParameter.cs │ │ │ │ ├── WebpFrameData.cs │ │ │ │ └── WebpVp8X.cs │ │ │ ├── EntropyIx.cs │ │ │ ├── HistoIx.cs │ │ │ ├── Lossless │ │ │ │ ├── BackwardReferenceEncoder.cs │ │ │ │ ├── ColorCache.cs │ │ │ │ ├── ColorSpaceTransformUtils.cs │ │ │ │ ├── CostCacheInterval.cs │ │ │ │ ├── CostInterval.cs │ │ │ │ ├── CostManager.cs │ │ │ │ ├── CostModel.cs │ │ │ │ ├── CrunchConfig.cs │ │ │ │ ├── CrunchSubConfig.cs │ │ │ │ ├── DominantCostRange.cs │ │ │ │ ├── HTreeGroup.cs │ │ │ │ ├── HistogramBinInfo.cs │ │ │ │ ├── HistogramEncoder.cs │ │ │ │ ├── HistogramPair.cs │ │ │ │ ├── HuffIndex.cs │ │ │ │ ├── HuffmanCode.cs │ │ │ │ ├── HuffmanTree.cs │ │ │ │ ├── HuffmanTreeCode.cs │ │ │ │ ├── HuffmanTreeToken.cs │ │ │ │ ├── HuffmanUtils.cs │ │ │ │ ├── LosslessUtils.cs │ │ │ │ ├── NearLosslessEnc.cs │ │ │ │ ├── PixOrCopy.cs │ │ │ │ ├── PixOrCopyMode.cs │ │ │ │ ├── PredictorEncoder.cs │ │ │ │ ├── Vp8LBackwardRefs.cs │ │ │ │ ├── Vp8LBitEntropy.cs │ │ │ │ ├── Vp8LDecoder.cs │ │ │ │ ├── Vp8LEncoder.cs │ │ │ │ ├── Vp8LHashChain.cs │ │ │ │ ├── Vp8LHistogram.cs │ │ │ │ ├── Vp8LHistogramSet.cs │ │ │ │ ├── Vp8LLz77Type.cs │ │ │ │ ├── Vp8LMetadata.cs │ │ │ │ ├── Vp8LMultipliers.cs │ │ │ │ ├── Vp8LStreaks.cs │ │ │ │ ├── Vp8LTransform.cs │ │ │ │ ├── Vp8LTransformType.cs │ │ │ │ ├── WebpLosslessDecoder.cs │ │ │ │ └── Webp_Lossless_Bitstream_Specification.pdf │ │ │ ├── Lossy │ │ │ │ ├── IntraPredictionMode.cs │ │ │ │ ├── LoopFilter.cs │ │ │ │ ├── LossyUtils.cs │ │ │ │ ├── PassStats.cs │ │ │ │ ├── QuantEnc.cs │ │ │ │ ├── Vp8BandProbas.cs │ │ │ │ ├── Vp8CostArray.cs │ │ │ │ ├── Vp8Costs.cs │ │ │ │ ├── Vp8Decoder.cs │ │ │ │ ├── Vp8EncIterator.cs │ │ │ │ ├── Vp8EncProba.cs │ │ │ │ ├── Vp8EncSegmentHeader.cs │ │ │ │ ├── Vp8Encoder.cs │ │ │ │ ├── Vp8Encoding.cs │ │ │ │ ├── Vp8FilterHeader.cs │ │ │ │ ├── Vp8FilterInfo.cs │ │ │ │ ├── Vp8FrameHeader.cs │ │ │ │ ├── Vp8Histogram.cs │ │ │ │ ├── Vp8Io.cs │ │ │ │ ├── Vp8MacroBlock.cs │ │ │ │ ├── Vp8MacroBlockData.cs │ │ │ │ ├── Vp8MacroBlockInfo.cs │ │ │ │ ├── Vp8MacroBlockType.cs │ │ │ │ ├── Vp8Matrix.cs │ │ │ │ ├── Vp8ModeScore.cs │ │ │ │ ├── Vp8PictureHeader.cs │ │ │ │ ├── Vp8Proba.cs │ │ │ │ ├── Vp8ProbaArray.cs │ │ │ │ ├── Vp8QuantMatrix.cs │ │ │ │ ├── Vp8RDLevel.cs │ │ │ │ ├── Vp8Residual.cs │ │ │ │ ├── Vp8SegmentHeader.cs │ │ │ │ ├── Vp8SegmentInfo.cs │ │ │ │ ├── Vp8Stats.cs │ │ │ │ ├── Vp8StatsArray.cs │ │ │ │ ├── Vp8TopSamples.cs │ │ │ │ ├── WebpLossyDecoder.cs │ │ │ │ ├── YuvConversion.cs │ │ │ │ └── rfc6386_lossy_specification.pdf │ │ │ ├── Readme.md │ │ │ ├── RiffHelper.cs │ │ │ ├── WebpAlphaCompressionMethod.cs │ │ │ ├── WebpAlphaFilterType.cs │ │ │ ├── WebpAnimationDecoder.cs │ │ │ ├── WebpBitsPerPixel.cs │ │ │ ├── WebpChunkParsingUtils.cs │ │ │ ├── WebpChunkType.cs │ │ │ ├── WebpColorType.cs │ │ │ ├── WebpCommonUtils.cs │ │ │ ├── WebpConfigurationModule.cs │ │ │ ├── WebpConstants.cs │ │ │ ├── WebpDecoder.cs │ │ │ ├── WebpDecoderCore.cs │ │ │ ├── WebpDecoderOptions.cs │ │ │ ├── WebpEncoder.cs │ │ │ ├── WebpEncoderCore.cs │ │ │ ├── WebpEncodingMethod.cs │ │ │ ├── WebpFeatures.cs │ │ │ ├── WebpFileFormatType.cs │ │ │ ├── WebpFormat.cs │ │ │ ├── WebpFrameMetadata.cs │ │ │ ├── WebpImageFormatDetector.cs │ │ │ ├── WebpImageInfo.cs │ │ │ ├── WebpLookupTables.cs │ │ │ ├── WebpMetadata.cs │ │ │ ├── WebpThrowHelper.cs │ │ │ └── Webp_Container_Specification.pdf │ │ └── _Generated │ │ │ ├── ImageExtensions.Save.cs │ │ │ ├── ImageExtensions.Save.tt │ │ │ ├── ImageMetadataExtensions.cs │ │ │ ├── ImageMetadataExtensions.tt │ │ │ └── _Formats.ttinclude │ ├── GeometryUtilities.cs │ ├── GraphicOptionsDefaultsExtensions.cs │ ├── GraphicsOptions.cs │ ├── IDeepCloneable.cs │ ├── IO │ │ ├── BufferedReadStream.cs │ │ ├── ChunkedMemoryStream.cs │ │ ├── IFileSystem.cs │ │ └── LocalFileSystem.cs │ ├── Image.Decode.cs │ ├── Image.FromBytes.cs │ ├── Image.FromFile.cs │ ├── Image.FromStream.cs │ ├── Image.LoadPixelData.cs │ ├── Image.WrapMemory.cs │ ├── Image.cs │ ├── ImageExtensions.Internal.cs │ ├── ImageExtensions.cs │ ├── ImageFrame.LoadPixelData.cs │ ├── ImageFrame.cs │ ├── ImageFrameCollection.cs │ ├── ImageFrameCollectionExtensions.cs │ ├── ImageFrameCollection{TPixel}.cs │ ├── ImageFrame{TPixel}.cs │ ├── ImageInfo.cs │ ├── ImageSharp.csproj │ ├── Image{TPixel}.cs │ ├── IndexedImageFrame{TPixel}.cs │ ├── Memory │ │ ├── Allocators │ │ │ ├── AllocationOptions.cs │ │ │ ├── AllocationOptionsExtensions.cs │ │ │ ├── Internals │ │ │ │ ├── BasicArrayBuffer.cs │ │ │ │ ├── Gen2GcCallback.cs │ │ │ │ ├── IRefCounted.cs │ │ │ │ ├── ManagedBufferBase.cs │ │ │ │ ├── RefCountedMemoryLifetimeGuard.cs │ │ │ │ ├── SharedArrayPoolBuffer{T}.cs │ │ │ │ ├── UniformUnmanagedMemoryPool.LifetimeGuards.cs │ │ │ │ ├── UniformUnmanagedMemoryPool.cs │ │ │ │ ├── UnmanagedBufferLifetimeGuard.cs │ │ │ │ ├── UnmanagedBuffer{T}.cs │ │ │ │ └── UnmanagedMemoryHandle.cs │ │ │ ├── MemoryAllocator.cs │ │ │ ├── MemoryAllocatorOptions.cs │ │ │ ├── SimpleGcMemoryAllocator.cs │ │ │ ├── UniformUnmanagedMemoryPoolMemoryAllocator.cs │ │ │ └── UnmanagedMemoryAllocator.cs │ │ ├── Buffer2DExtensions.cs │ │ ├── Buffer2DRegion{T}.cs │ │ ├── Buffer2D{T}.cs │ │ ├── ByteMemoryManager{T}.cs │ │ ├── ByteMemoryOwner{T}.cs │ │ ├── DiscontiguousBuffers │ │ │ ├── IMemoryGroup{T}.cs │ │ │ ├── MemoryGroupEnumerator{T}.cs │ │ │ ├── MemoryGroupExtensions.cs │ │ │ ├── MemoryGroupSpanCache.cs │ │ │ ├── MemoryGroupView{T}.cs │ │ │ ├── MemoryGroup{T}.Consumed.cs │ │ │ ├── MemoryGroup{T}.Owned.cs │ │ │ ├── MemoryGroup{T}.cs │ │ │ └── SpanCacheMode.cs │ │ ├── InvalidMemoryOperationException.cs │ │ ├── MemoryAllocatorExtensions.cs │ │ ├── MemoryOwnerExtensions.cs │ │ ├── RowInterval.cs │ │ ├── TransformItemsDelegate{TSource, TTarget}.cs │ │ ├── TransformItemsInplaceDelegate.cs │ │ └── UnmanagedMemoryManager{T}.cs │ ├── Metadata │ │ ├── ImageFrameMetadata.cs │ │ ├── ImageMetadata.cs │ │ ├── PixelResolutionUnit.cs │ │ └── Profiles │ │ │ ├── CICP │ │ │ ├── CicpProfile.cs │ │ │ ├── Enums │ │ │ │ ├── CicpColorPrimaries.cs │ │ │ │ ├── CicpMatrixCoefficients.cs │ │ │ │ └── CicpTransferCharacteristics.cs │ │ │ └── T-REC-H.273-202107-S!!PDF-E.pdf │ │ │ ├── Exif │ │ │ ├── DC-X008-Translation-2019-E.pdf │ │ │ ├── ExifConstants.cs │ │ │ ├── ExifDataType.cs │ │ │ ├── ExifDataTypes.cs │ │ │ ├── ExifEncodedStringHelpers.cs │ │ │ ├── ExifParts.cs │ │ │ ├── ExifProfile.cs │ │ │ ├── ExifReader.cs │ │ │ ├── ExifTagDescriptionAttribute.cs │ │ │ ├── ExifTags.cs │ │ │ ├── ExifUcs2StringHelpers.cs │ │ │ ├── ExifWriter.cs │ │ │ ├── README.md │ │ │ ├── Tags │ │ │ │ ├── ExifTag.Byte.cs │ │ │ │ ├── ExifTag.ByteArray.cs │ │ │ │ ├── ExifTag.DoubleArray.cs │ │ │ │ ├── ExifTag.EncodedString.cs │ │ │ │ ├── ExifTag.Long.cs │ │ │ │ ├── ExifTag.LongArray.cs │ │ │ │ ├── ExifTag.Number.cs │ │ │ │ ├── ExifTag.NumberArray.cs │ │ │ │ ├── ExifTag.Rational.cs │ │ │ │ ├── ExifTag.RationalArray.cs │ │ │ │ ├── ExifTag.Short.cs │ │ │ │ ├── ExifTag.ShortArray.cs │ │ │ │ ├── ExifTag.SignedRational.cs │ │ │ │ ├── ExifTag.SignedRationalArray.cs │ │ │ │ ├── ExifTag.SignedShortArray.cs │ │ │ │ ├── ExifTag.String.cs │ │ │ │ ├── ExifTag.Ucs2String.cs │ │ │ │ ├── ExifTag.Undefined.cs │ │ │ │ ├── ExifTag.cs │ │ │ │ ├── ExifTagValue.cs │ │ │ │ ├── ExifTag{TValueType}.cs │ │ │ │ └── UnkownExifTag.cs │ │ │ └── Values │ │ │ │ ├── EncodedString.cs │ │ │ │ ├── ExifArrayValue{TValueType}.cs │ │ │ │ ├── ExifByte.cs │ │ │ │ ├── ExifByteArray.cs │ │ │ │ ├── ExifDouble.cs │ │ │ │ ├── ExifDoubleArray.cs │ │ │ │ ├── ExifEncodedString.cs │ │ │ │ ├── ExifFloat.cs │ │ │ │ ├── ExifFloatArray.cs │ │ │ │ ├── ExifLong.cs │ │ │ │ ├── ExifLong8.cs │ │ │ │ ├── ExifLong8Array.cs │ │ │ │ ├── ExifLongArray.cs │ │ │ │ ├── ExifNumber.cs │ │ │ │ ├── ExifNumberArray.cs │ │ │ │ ├── ExifOrientationMode.cs │ │ │ │ ├── ExifRational.cs │ │ │ │ ├── ExifRationalArray.cs │ │ │ │ ├── ExifShort.cs │ │ │ │ ├── ExifShortArray.cs │ │ │ │ ├── ExifSignedByte.cs │ │ │ │ ├── ExifSignedByteArray.cs │ │ │ │ ├── ExifSignedLong.cs │ │ │ │ ├── ExifSignedLong8.cs │ │ │ │ ├── ExifSignedLong8Array.cs │ │ │ │ ├── ExifSignedLongArray.cs │ │ │ │ ├── ExifSignedRational.cs │ │ │ │ ├── ExifSignedRationalArray.cs │ │ │ │ ├── ExifSignedShort.cs │ │ │ │ ├── ExifSignedShortArray.cs │ │ │ │ ├── ExifString.cs │ │ │ │ ├── ExifUcs2String.cs │ │ │ │ ├── ExifValue.cs │ │ │ │ ├── ExifValues.cs │ │ │ │ ├── ExifValue{TValueType}.cs │ │ │ │ ├── IExifValue.cs │ │ │ │ └── IExifValue{TValueType}.cs │ │ │ ├── ICC │ │ │ ├── Curves │ │ │ │ ├── IccCurveSegment.cs │ │ │ │ ├── IccFormulaCurveElement.cs │ │ │ │ ├── IccOneDimensionalCurve.cs │ │ │ │ ├── IccParametricCurve.cs │ │ │ │ ├── IccResponseCurve.cs │ │ │ │ └── IccSampledCurveElement.cs │ │ │ ├── DataReader │ │ │ │ ├── IccDataReader.Curves.cs │ │ │ │ ├── IccDataReader.Lut.cs │ │ │ │ ├── IccDataReader.Matrix.cs │ │ │ │ ├── IccDataReader.MultiProcessElement.cs │ │ │ │ ├── IccDataReader.NonPrimitives.cs │ │ │ │ ├── IccDataReader.Primitives.cs │ │ │ │ ├── IccDataReader.TagDataEntry.cs │ │ │ │ └── IccDataReader.cs │ │ │ ├── DataWriter │ │ │ │ ├── IccDataWriter.Curves.cs │ │ │ │ ├── IccDataWriter.Lut.cs │ │ │ │ ├── IccDataWriter.Matrix.cs │ │ │ │ ├── IccDataWriter.MultiProcessElement.cs │ │ │ │ ├── IccDataWriter.NonPrimitives.cs │ │ │ │ ├── IccDataWriter.Primitives.cs │ │ │ │ ├── IccDataWriter.TagDataEntry.cs │ │ │ │ └── IccDataWriter.cs │ │ │ ├── Enums │ │ │ │ ├── IccClutDataType.cs │ │ │ │ ├── IccColorSpaceType.cs │ │ │ │ ├── IccColorantEncoding.cs │ │ │ │ ├── IccCurveMeasurementEncodings.cs │ │ │ │ ├── IccCurveSegmentSignature.cs │ │ │ │ ├── IccDataType.cs │ │ │ │ ├── IccDeviceAttribute.cs │ │ │ │ ├── IccFormulaCurveType.cs │ │ │ │ ├── IccMeasurementGeometry.cs │ │ │ │ ├── IccMultiProcessElementSignature.cs │ │ │ │ ├── IccParametricCurveType.cs │ │ │ │ ├── IccPrimaryPlatformType.cs │ │ │ │ ├── IccProfileClass.cs │ │ │ │ ├── IccProfileFlag.cs │ │ │ │ ├── IccProfileTag.cs │ │ │ │ ├── IccRenderingIntent.cs │ │ │ │ ├── IccScreeningFlag.cs │ │ │ │ ├── IccScreeningSpotType.cs │ │ │ │ ├── IccSignatureName.cs │ │ │ │ ├── IccStandardIlluminant.cs │ │ │ │ ├── IccStandardObserver.cs │ │ │ │ └── IccTypeSignature.cs │ │ │ ├── Exceptions │ │ │ │ └── InvalidIccProfileException.cs │ │ │ ├── ICC.1-2022-05.pdf │ │ │ ├── IccProfile.cs │ │ │ ├── IccProfileHeader.cs │ │ │ ├── IccReader.cs │ │ │ ├── IccTagDataEntry.cs │ │ │ ├── IccWriter.cs │ │ │ ├── MultiProcessElements │ │ │ │ ├── IccBAcsProcessElement.cs │ │ │ │ ├── IccClutProcessElement.cs │ │ │ │ ├── IccCurveSetProcessElement.cs │ │ │ │ ├── IccEAcsProcessElement.cs │ │ │ │ ├── IccMatrixProcessElement.cs │ │ │ │ └── IccMultiProcessElement.cs │ │ │ ├── TagDataEntries │ │ │ │ ├── IccChromaticityTagDataEntry.cs │ │ │ │ ├── IccColorantOrderTagDataEntry.cs │ │ │ │ ├── IccColorantTableTagDataEntry.cs │ │ │ │ ├── IccCrdInfoTagDataEntry.cs │ │ │ │ ├── IccCurveTagDataEntry.cs │ │ │ │ ├── IccDataTagDataEntry.cs │ │ │ │ ├── IccDateTimeTagDataEntry.cs │ │ │ │ ├── IccFix16ArrayTagDataEntry.cs │ │ │ │ ├── IccLut16TagDataEntry.cs │ │ │ │ ├── IccLut8TagDataEntry.cs │ │ │ │ ├── IccLutAToBTagDataEntry.cs │ │ │ │ ├── IccLutBToATagDataEntry.cs │ │ │ │ ├── IccMeasurementTagDataEntry.cs │ │ │ │ ├── IccMultiLocalizedUnicodeTagDataEntry.cs │ │ │ │ ├── IccMultiProcessElementsTagDataEntry.cs │ │ │ │ ├── IccNamedColor2TagDataEntry.cs │ │ │ │ ├── IccParametricCurveTagDataEntry.cs │ │ │ │ ├── IccProfileSequenceDescTagDataEntry.cs │ │ │ │ ├── IccProfileSequenceIdentifierTagDataEntry.cs │ │ │ │ ├── IccResponseCurveSet16TagDataEntry.cs │ │ │ │ ├── IccScreeningTagDataEntry.cs │ │ │ │ ├── IccSignatureTagDataEntry.cs │ │ │ │ ├── IccTextDescriptionTagDataEntry.cs │ │ │ │ ├── IccTextTagDataEntry.cs │ │ │ │ ├── IccUFix16ArrayTagDataEntry.cs │ │ │ │ ├── IccUInt16ArrayTagDataEntry.cs │ │ │ │ ├── IccUInt32ArrayTagDataEntry.cs │ │ │ │ ├── IccUInt64ArrayTagDataEntry.cs │ │ │ │ ├── IccUInt8ArrayTagDataEntry.cs │ │ │ │ ├── IccUcrBgTagDataEntry.cs │ │ │ │ ├── IccUnknownTagDataEntry.cs │ │ │ │ ├── IccViewingConditionsTagDataEntry.cs │ │ │ │ └── IccXyzTagDataEntry.cs │ │ │ └── Various │ │ │ │ ├── IccClut.cs │ │ │ │ ├── IccColorantTableEntry.cs │ │ │ │ ├── IccLocalizedString.cs │ │ │ │ ├── IccLut.cs │ │ │ │ ├── IccNamedColor.cs │ │ │ │ ├── IccPositionNumber.cs │ │ │ │ ├── IccProfileDescription.cs │ │ │ │ ├── IccProfileId.cs │ │ │ │ ├── IccProfileSequenceIdentifier.cs │ │ │ │ ├── IccResponseNumber.cs │ │ │ │ ├── IccScreeningChannel.cs │ │ │ │ ├── IccTagTableEntry.cs │ │ │ │ └── IccVersion.cs │ │ │ ├── IPTC │ │ │ ├── IIMV4.2_IPTC.pdf │ │ │ ├── IptcProfile.cs │ │ │ ├── IptcRecordNumber.cs │ │ │ ├── IptcTag.cs │ │ │ ├── IptcTagExtensions.cs │ │ │ ├── IptcValue.cs │ │ │ └── README.md │ │ │ └── XMP │ │ │ └── XmpProfile.cs │ ├── PixelAccessor{TPixel}.cs │ ├── PixelFormats │ │ ├── HalfTypeHelper.cs │ │ ├── IPackedVector{TPacked}.cs │ │ ├── IPixel.cs │ │ ├── PixelAlphaCompositionMode.cs │ │ ├── PixelAlphaRepresentation.cs │ │ ├── PixelBlenders │ │ │ ├── DefaultPixelBlenders.Generated.cs │ │ │ ├── DefaultPixelBlenders.Generated.tt │ │ │ ├── PorterDuffFunctions.Generated.cs │ │ │ ├── PorterDuffFunctions.Generated.tt │ │ │ └── PorterDuffFunctions.cs │ │ ├── PixelBlender{TPixel}.cs │ │ ├── PixelColorBlendingMode.cs │ │ ├── PixelColorType.cs │ │ ├── PixelComponentBitDepth.cs │ │ ├── PixelComponentInfo.cs │ │ ├── PixelConversionModifiers.cs │ │ ├── PixelConversionModifiersExtensions.cs │ │ ├── PixelImplementations │ │ │ ├── A8.cs │ │ │ ├── Abgr32.cs │ │ │ ├── Argb32.cs │ │ │ ├── Bgr24.cs │ │ │ ├── Bgr565.cs │ │ │ ├── Bgra32.cs │ │ │ ├── Bgra4444.cs │ │ │ ├── Bgra5551.cs │ │ │ ├── Byte4.cs │ │ │ ├── HalfSingle.cs │ │ │ ├── HalfVector2.cs │ │ │ ├── HalfVector4.cs │ │ │ ├── L16.cs │ │ │ ├── L8.cs │ │ │ ├── La16.cs │ │ │ ├── La32.cs │ │ │ ├── NormalizedByte2.cs │ │ │ ├── NormalizedByte4.cs │ │ │ ├── NormalizedShort2.cs │ │ │ ├── NormalizedShort4.cs │ │ │ ├── PixelOperations │ │ │ │ ├── A8.PixelOperations.cs │ │ │ │ ├── Abgr32.PixelOperations.cs │ │ │ │ ├── Argb32.PixelOperations.cs │ │ │ │ ├── Bgr24.PixelOperations.cs │ │ │ │ ├── Bgr565.PixelOperations.cs │ │ │ │ ├── Bgra32.PixelOperations.cs │ │ │ │ ├── Bgra4444.PixelOperations.cs │ │ │ │ ├── Bgra5551.PixelOperations.cs │ │ │ │ ├── Byte4.PixelOperations.cs │ │ │ │ ├── Generated │ │ │ │ │ ├── Abgr32.PixelOperations.Generated.cs │ │ │ │ │ ├── Abgr32.PixelOperations.Generated.tt │ │ │ │ │ ├── Argb32.PixelOperations.Generated.cs │ │ │ │ │ ├── Argb32.PixelOperations.Generated.tt │ │ │ │ │ ├── Bgr24.PixelOperations.Generated.cs │ │ │ │ │ ├── Bgr24.PixelOperations.Generated.tt │ │ │ │ │ ├── Bgra32.PixelOperations.Generated.cs │ │ │ │ │ ├── Bgra32.PixelOperations.Generated.tt │ │ │ │ │ ├── Bgra5551.PixelOperations.Generated.cs │ │ │ │ │ ├── Bgra5551.PixelOperations.Generated.tt │ │ │ │ │ ├── L16.PixelOperations.Generated.cs │ │ │ │ │ ├── L16.PixelOperations.Generated.tt │ │ │ │ │ ├── L8.PixelOperations.Generated.cs │ │ │ │ │ ├── L8.PixelOperations.Generated.tt │ │ │ │ │ ├── La16.PixelOperations.Generated.cs │ │ │ │ │ ├── La16.PixelOperations.Generated.tt │ │ │ │ │ ├── La32.PixelOperations.Generated.cs │ │ │ │ │ ├── La32.PixelOperations.Generated.tt │ │ │ │ │ ├── Rgb24.PixelOperations.Generated.cs │ │ │ │ │ ├── Rgb24.PixelOperations.Generated.tt │ │ │ │ │ ├── Rgb48.PixelOperations.Generated.cs │ │ │ │ │ ├── Rgb48.PixelOperations.Generated.tt │ │ │ │ │ ├── Rgba32.PixelOperations.Generated.cs │ │ │ │ │ ├── Rgba32.PixelOperations.Generated.tt │ │ │ │ │ ├── Rgba64.PixelOperations.Generated.cs │ │ │ │ │ ├── Rgba64.PixelOperations.Generated.tt │ │ │ │ │ └── _Common.ttinclude │ │ │ │ ├── HalfSingle.PixelOperations.cs │ │ │ │ ├── HalfVector2.PixelOperations.cs │ │ │ │ ├── HalfVector4.PixelOperations.cs │ │ │ │ ├── L16.PixelOperations.cs │ │ │ │ ├── L8.PixelOperations.cs │ │ │ │ ├── La16.PixelOperations.cs │ │ │ │ ├── La32.PixelOperations.cs │ │ │ │ ├── NormalizedByte2.PixelOperations.cs │ │ │ │ ├── NormalizedByte4.PixelOperations.cs │ │ │ │ ├── NormalizedShort2.PixelOperations.cs │ │ │ │ ├── NormalizedShort4.PixelOperations.cs │ │ │ │ ├── Rg32.PixelOperations.cs │ │ │ │ ├── Rgb24.PixelOperations.cs │ │ │ │ ├── Rgb48.PixelOperations.cs │ │ │ │ ├── Rgba1010102.PixelOperations.cs │ │ │ │ ├── Rgba32.PixelOperations.cs │ │ │ │ ├── Rgba64.PixelOperations.cs │ │ │ │ ├── RgbaVector.PixelOperations.cs │ │ │ │ ├── Short2.PixelOperations.cs │ │ │ │ └── Short4.PixelOperations.cs │ │ │ ├── Rg32.cs │ │ │ ├── Rgb24.cs │ │ │ ├── Rgb48.cs │ │ │ ├── Rgba1010102.cs │ │ │ ├── Rgba32.cs │ │ │ ├── Rgba64.cs │ │ │ ├── RgbaVector.cs │ │ │ ├── Short2.cs │ │ │ └── Short4.cs │ │ ├── PixelOperations{TPixel}.Generated.cs │ │ ├── PixelOperations{TPixel}.Generated.tt │ │ ├── PixelOperations{TPixel}.PixelBenders.cs │ │ ├── PixelOperations{TPixel}.cs │ │ ├── PixelTypeInfo.cs │ │ ├── README.md │ │ ├── RgbaComponent.cs │ │ └── Utils │ │ │ ├── PixelConverter.cs │ │ │ ├── Vector4Converters.Default.cs │ │ │ ├── Vector4Converters.RgbaCompatible.cs │ │ │ └── Vector4Converters.cs │ ├── Primitives │ │ ├── ColorMatrix.Impl.cs │ │ ├── ColorMatrix.cs │ │ ├── Complex64.cs │ │ ├── ComplexVector4.cs │ │ ├── DenseMatrix{T}.cs │ │ ├── LongRational.cs │ │ ├── Matrix3x2Extensions.cs │ │ ├── Number.cs │ │ ├── Point.cs │ │ ├── PointF.cs │ │ ├── Rational.cs │ │ ├── Rectangle.cs │ │ ├── RectangleF.cs │ │ ├── SignedRational.cs │ │ ├── Size.cs │ │ ├── SizeF.cs │ │ └── ValueSize.cs │ ├── Processing │ │ ├── AdaptiveThresholdExtensions.cs │ │ ├── AffineTransformBuilder.cs │ │ ├── AnchorPositionMode.cs │ │ ├── BinaryThresholdMode.cs │ │ ├── ColorBlindnessMode.cs │ │ ├── DefaultImageProcessorContext{TPixel}.cs │ │ ├── Extensions │ │ │ ├── Binarization │ │ │ │ ├── BinaryDitherExtensions.cs │ │ │ │ └── BinaryThresholdExtensions.cs │ │ │ ├── Convolution │ │ │ │ ├── BokehBlurExtensions.cs │ │ │ │ ├── BoxBlurExtensions.cs │ │ │ │ ├── ConvolutionExtensions.cs │ │ │ │ ├── DetectEdgesExtensions.cs │ │ │ │ ├── GaussianBlurExtensions.cs │ │ │ │ ├── GaussianSharpenExtensions.cs │ │ │ │ └── MedianBlurExtensions.cs │ │ │ ├── Dithering │ │ │ │ └── DitherExtensions.cs │ │ │ ├── Drawing │ │ │ │ └── DrawImageExtensions.cs │ │ │ ├── Effects │ │ │ │ ├── OilPaintExtensions.cs │ │ │ │ ├── PixelRowDelegateExtensions.cs │ │ │ │ └── PixelateExtensions.cs │ │ │ ├── Filters │ │ │ │ ├── BlackWhiteExtensions.cs │ │ │ │ ├── BrightnessExtensions.cs │ │ │ │ ├── ColorBlindnessExtensions.cs │ │ │ │ ├── ContrastExtensions.cs │ │ │ │ ├── FilterExtensions.cs │ │ │ │ ├── GrayscaleExtensions.cs │ │ │ │ ├── HueExtensions.cs │ │ │ │ ├── InvertExtensions.cs │ │ │ │ ├── KodachromeExtensions.cs │ │ │ │ ├── LightnessExtensions.cs │ │ │ │ ├── LomographExtensions.cs │ │ │ │ ├── OpacityExtensions.cs │ │ │ │ ├── PolaroidExtensions.cs │ │ │ │ ├── SaturateExtensions.cs │ │ │ │ └── SepiaExtensions.cs │ │ │ ├── Normalization │ │ │ │ └── HistogramEqualizationExtensions.cs │ │ │ ├── Overlays │ │ │ │ ├── BackgroundColorExtensions.cs │ │ │ │ ├── GlowExtensions.cs │ │ │ │ └── VignetteExtensions.cs │ │ │ ├── ProcessingExtensions.IntegralImage.cs │ │ │ ├── ProcessingExtensions.cs │ │ │ ├── Quantization │ │ │ │ └── QuantizeExtensions.cs │ │ │ └── Transforms │ │ │ │ ├── AutoOrientExtensions.cs │ │ │ │ ├── CropExtensions.cs │ │ │ │ ├── EntropyCropExtensions.cs │ │ │ │ ├── FlipExtensions.cs │ │ │ │ ├── PadExtensions.cs │ │ │ │ ├── ResizeExtensions.cs │ │ │ │ ├── RotateExtensions.cs │ │ │ │ ├── RotateFlipExtensions.cs │ │ │ │ ├── SkewExtensions.cs │ │ │ │ ├── SwizzleExtensions.cs │ │ │ │ └── TransformExtensions.cs │ │ ├── FlipMode.cs │ │ ├── GrayscaleMode.cs │ │ ├── IImageProcessingContext.cs │ │ ├── IImageProcessingContextFactory.cs │ │ ├── IInternalImageProcessingContext{TPixel}.cs │ │ ├── KnownDitherings.cs │ │ ├── KnownEdgeDetectorKernels.cs │ │ ├── KnownFilterMatrices.cs │ │ ├── KnownQuantizers.cs │ │ ├── KnownResamplers.cs │ │ ├── PixelRowOperation.cs │ │ ├── Processors │ │ │ ├── Binarization │ │ │ │ ├── AdaptiveThresholdProcessor.cs │ │ │ │ ├── AdaptiveThresholdProcessor{TPixel}.cs │ │ │ │ ├── BinaryThresholdProcessor.cs │ │ │ │ └── BinaryThresholdProcessor{TPixel}.cs │ │ │ ├── CloningImageProcessor.cs │ │ │ ├── CloningImageProcessor{TPixel}.cs │ │ │ ├── Convolution │ │ │ │ ├── BokehBlurProcessor.cs │ │ │ │ ├── BokehBlurProcessor{TPixel}.cs │ │ │ │ ├── BorderWrappingMode.cs │ │ │ │ ├── BoxBlurProcessor.cs │ │ │ │ ├── BoxBlurProcessor{TPixel}.cs │ │ │ │ ├── Convolution2DProcessor{TPixel}.cs │ │ │ │ ├── Convolution2DRowOperation{TPixel}.cs │ │ │ │ ├── Convolution2DState.cs │ │ │ │ ├── Convolution2PassProcessor{TPixel}.cs │ │ │ │ ├── ConvolutionProcessor.cs │ │ │ │ ├── ConvolutionProcessorHelpers.cs │ │ │ │ ├── ConvolutionProcessor{TPixel}.cs │ │ │ │ ├── ConvolutionState.cs │ │ │ │ ├── EdgeDetector2DProcessor.cs │ │ │ │ ├── EdgeDetector2DProcessor{TPixel}.cs │ │ │ │ ├── EdgeDetectorCompassProcessor.cs │ │ │ │ ├── EdgeDetectorCompassProcessor{TPixel}.cs │ │ │ │ ├── EdgeDetectorProcessor.cs │ │ │ │ ├── EdgeDetectorProcessor{TPixel}.cs │ │ │ │ ├── GaussianBlurProcessor.cs │ │ │ │ ├── GaussianBlurProcessor{TPixel}.cs │ │ │ │ ├── GaussianSharpenProcessor.cs │ │ │ │ ├── GaussianSharpenProcessor{TPixel}.cs │ │ │ │ ├── Kernel.cs │ │ │ │ ├── KernelSamplingMap.cs │ │ │ │ ├── Kernels │ │ │ │ │ ├── EdgeDetector2DKernel.cs │ │ │ │ │ ├── EdgeDetectorCompassKernel.cs │ │ │ │ │ ├── EdgeDetectorKernel.cs │ │ │ │ │ └── Implementation │ │ │ │ │ │ ├── KayyaliKernels.cs │ │ │ │ │ │ ├── KirschKernels.cs │ │ │ │ │ │ ├── LaplacianKernelFactory.cs │ │ │ │ │ │ ├── LaplacianKernels.cs │ │ │ │ │ │ ├── PrewittKernels.cs │ │ │ │ │ │ ├── RobertsCrossKernels.cs │ │ │ │ │ │ ├── RobinsonKernels.cs │ │ │ │ │ │ ├── ScharrKernels.cs │ │ │ │ │ │ └── SobelKernels.cs │ │ │ │ ├── MedianBlurProcessor.cs │ │ │ │ ├── MedianBlurProcessor{TPixel}.cs │ │ │ │ ├── MedianConvolutionState.cs │ │ │ │ ├── MedianRowOperation{TPixel}.cs │ │ │ │ ├── Parameters │ │ │ │ │ ├── BokehBlurKernelData.cs │ │ │ │ │ ├── BokehBlurKernelDataProvider.cs │ │ │ │ │ └── BokehBlurParameters.cs │ │ │ │ └── ReadOnlyKernel.cs │ │ │ ├── Dithering │ │ │ │ ├── DHALF.TXT │ │ │ │ ├── DITHER.TXT │ │ │ │ ├── ErrorDither.KnownTypes.cs │ │ │ │ ├── ErrorDither.cs │ │ │ │ ├── IDither.cs │ │ │ │ ├── IPaletteDitherImageProcessor{TPixel}.cs │ │ │ │ ├── OrderedDither.KnownTypes.cs │ │ │ │ ├── OrderedDither.cs │ │ │ │ ├── OrderedDitherFactory.cs │ │ │ │ ├── PaletteDitherProcessor.cs │ │ │ │ ├── PaletteDitherProcessor{TPixel}.cs │ │ │ │ ├── error_diffusion.txt │ │ │ │ └── optimal-parallel-error-diffusion-dithering.pdf │ │ │ ├── Drawing │ │ │ │ ├── DrawImageProcessor.cs │ │ │ │ └── DrawImageProcessor{TPixelBg,TPixelFg}.cs │ │ │ ├── Effects │ │ │ │ ├── IPixelRowDelegate.cs │ │ │ │ ├── OilPaintingProcessor.cs │ │ │ │ ├── OilPaintingProcessor{TPixel}.cs │ │ │ │ ├── PixelRowDelegateProcessor.cs │ │ │ │ ├── PixelRowDelegateProcessor{TPixel,TDelegate}.cs │ │ │ │ ├── PixelateProcessor.cs │ │ │ │ ├── PixelateProcessor{TPixel}.cs │ │ │ │ └── PositionAwarePixelRowDelegateProcessor.cs │ │ │ ├── Filters │ │ │ │ ├── AchromatomalyProcessor.cs │ │ │ │ ├── AchromatopsiaProcessor.cs │ │ │ │ ├── BlackWhiteProcessor.cs │ │ │ │ ├── BrightnessProcessor.cs │ │ │ │ ├── ContrastProcessor.cs │ │ │ │ ├── DeuteranomalyProcessor.cs │ │ │ │ ├── DeuteranopiaProcessor.cs │ │ │ │ ├── FilterProcessor.cs │ │ │ │ ├── FilterProcessor{TPixel}.cs │ │ │ │ ├── GrayscaleBt601Processor.cs │ │ │ │ ├── GrayscaleBt709Processor.cs │ │ │ │ ├── HueProcessor.cs │ │ │ │ ├── InvertProcessor.cs │ │ │ │ ├── KodachromeProcessor.cs │ │ │ │ ├── LightnessProcessor.cs │ │ │ │ ├── LomographProcessor.cs │ │ │ │ ├── LomographProcessor{TPixel}.cs │ │ │ │ ├── OpacityProcessor.cs │ │ │ │ ├── OpaqueProcessor{TPixel}.cs │ │ │ │ ├── PolaroidProcessor.cs │ │ │ │ ├── PolaroidProcessor{TPixel}.cs │ │ │ │ ├── ProtanomalyProcessor.cs │ │ │ │ ├── ProtanopiaProcessor.cs │ │ │ │ ├── README.md │ │ │ │ ├── SaturateProcessor.cs │ │ │ │ ├── SepiaProcessor.cs │ │ │ │ ├── TritanomalyProcessor.cs │ │ │ │ └── TritanopiaProcessor.cs │ │ │ ├── ICloningImageProcessor.cs │ │ │ ├── ICloningImageProcessor{TPixel}.cs │ │ │ ├── IImageProcessor.cs │ │ │ ├── IImageProcessor{TPixel}.cs │ │ │ ├── ImageProcessorExtensions.cs │ │ │ ├── ImageProcessor{TPixel}.cs │ │ │ ├── Normalization │ │ │ │ ├── AdaptiveHistogramEqualizationProcessor.cs │ │ │ │ ├── AdaptiveHistogramEqualizationProcessor{TPixel}.cs │ │ │ │ ├── AdaptiveHistogramEqualizationSlidingWindowProcessor.cs │ │ │ │ ├── AdaptiveHistogramEqualizationSlidingWindowProcessor{TPixel}.cs │ │ │ │ ├── AutoLevelProcessor.cs │ │ │ │ ├── AutoLevelProcessor{TPixel}.cs │ │ │ │ ├── GlobalHistogramEqualizationProcessor.cs │ │ │ │ ├── GlobalHistogramEqualizationProcessor{TPixel}.cs │ │ │ │ ├── GrayscaleLevelsRowOperation{TPixel}.cs │ │ │ │ ├── HistogramEqualizationMethod.cs │ │ │ │ ├── HistogramEqualizationOptions.cs │ │ │ │ ├── HistogramEqualizationProcessor.cs │ │ │ │ └── HistogramEqualizationProcessor{TPixel}.cs │ │ │ ├── Overlays │ │ │ │ ├── BackgroundColorProcessor.cs │ │ │ │ ├── BackgroundColorProcessor{TPixel}.cs │ │ │ │ ├── GlowProcessor.cs │ │ │ │ ├── GlowProcessor{TPixel}.cs │ │ │ │ ├── VignetteProcessor.cs │ │ │ │ └── VignetteProcessor{TPixel}.cs │ │ │ ├── Quantization │ │ │ │ ├── ColorMatchingMode.cs │ │ │ │ ├── DefaultPixelSamplingStrategy.cs │ │ │ │ ├── EuclideanPixelMap{TPixel,TCache}.cs │ │ │ │ ├── ExtensivePixelSamplingStrategy.cs │ │ │ │ ├── IColorIndexCache.cs │ │ │ │ ├── IPixelSamplingStrategy.cs │ │ │ │ ├── IQuantizer.cs │ │ │ │ ├── IQuantizer{TPixel}.cs │ │ │ │ ├── IQuantizingPixelRowDelegate{TPixel}.cs │ │ │ │ ├── OctreeQuantizer.cs │ │ │ │ ├── OctreeQuantizer{TPixel}.cs │ │ │ │ ├── PaletteQuantizer.cs │ │ │ │ ├── PaletteQuantizer{TPixel}.cs │ │ │ │ ├── QuantizeProcessor.cs │ │ │ │ ├── QuantizeProcessor{TPixel}.cs │ │ │ │ ├── QuantizerConstants.cs │ │ │ │ ├── QuantizerOptions.cs │ │ │ │ ├── QuantizerUtilities.cs │ │ │ │ ├── WebSafePaletteQuantizer.cs │ │ │ │ ├── WernerPaletteQuantizer.cs │ │ │ │ ├── WuQuantizer.cs │ │ │ │ └── WuQuantizer{TPixel}.cs │ │ │ └── Transforms │ │ │ │ ├── CropProcessor.cs │ │ │ │ ├── CropProcessor{TPixel}.cs │ │ │ │ ├── DegenerateTransformException.cs │ │ │ │ ├── EntropyCropProcessor.cs │ │ │ │ ├── EntropyCropProcessor{TPixel}.cs │ │ │ │ ├── IResampler.cs │ │ │ │ ├── IResamplingTransformImageProcessor{TPixel}.cs │ │ │ │ ├── ISwizzler.cs │ │ │ │ ├── Linear │ │ │ │ ├── AffineTransformProcessor.cs │ │ │ │ ├── AffineTransformProcessor{TPixel}.cs │ │ │ │ ├── AutoOrientProcessor.cs │ │ │ │ ├── AutoOrientProcessor{TPixel}.cs │ │ │ │ ├── FlipProcessor.cs │ │ │ │ ├── FlipProcessor{TPixel}.cs │ │ │ │ ├── GaussianEliminationSolver.cs │ │ │ │ ├── LinearTransformUtility.cs │ │ │ │ ├── ProjectiveTransformProcessor.cs │ │ │ │ ├── ProjectiveTransformProcessor{TPixel}.cs │ │ │ │ ├── RotateProcessor.cs │ │ │ │ ├── RotateProcessor{TPixel}.cs │ │ │ │ └── SkewProcessor.cs │ │ │ │ ├── Resamplers │ │ │ │ ├── BicubicResampler.cs │ │ │ │ ├── BoxResampler.cs │ │ │ │ ├── CubicResampler.cs │ │ │ │ ├── LanczosResampler.cs │ │ │ │ ├── NearestNeighborResampler.cs │ │ │ │ ├── TriangleResampler.cs │ │ │ │ └── WelchResampler.cs │ │ │ │ ├── Resize │ │ │ │ ├── ResizeHelper.cs │ │ │ │ ├── ResizeKernel.cs │ │ │ │ ├── ResizeKernelMap.PeriodicKernelMap.cs │ │ │ │ ├── ResizeKernelMap.cs │ │ │ │ ├── ResizeProcessor.cs │ │ │ │ ├── ResizeProcessor{TPixel}.cs │ │ │ │ ├── ResizeWorker.cs │ │ │ │ └── ResizeWorker.pptx │ │ │ │ ├── SwizzleProcessor{TSwizzler,TPixel}.cs │ │ │ │ ├── SwizzleProcessor{TSwizzler}.cs │ │ │ │ ├── TransformProcessor{TPixel}.cs │ │ │ │ └── TransformUtils.cs │ │ ├── ProjectiveTransformBuilder.cs │ │ ├── ResizeMode.cs │ │ ├── ResizeOptions.cs │ │ ├── RotateMode.cs │ │ ├── TaperCorner.cs │ │ ├── TaperSide.cs │ │ └── TransformSpace.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── ReadOrigin.cs └── README.md └── tests ├── Directory.Build.props ├── Directory.Build.targets ├── ImageSharp.Benchmarks ├── Bulk │ ├── ColorMatrixTransforms.cs │ ├── FromRgba32Bytes.cs │ ├── FromVector4.cs │ ├── FromVector4_Rgb24.cs │ ├── Pad3Shuffle4Channel.cs │ ├── PremultiplyVector4.cs │ ├── Rgb24Bytes.cs │ ├── Shuffle3Channel.cs │ ├── Shuffle4Slice3Channel.cs │ ├── ShuffleByte4Channel.cs │ ├── ShuffleFloat4Channel.cs │ ├── ToRgba32Bytes.cs │ ├── ToVector4.cs │ ├── ToVector4_Bgra32.cs │ ├── ToVector4_Rgb24.cs │ ├── ToVector4_Rgba32.cs │ ├── UnPremultiplyVector4.cs │ └── Vector4Factory.cs ├── Codecs │ ├── Bmp │ │ ├── DecodeBmp.cs │ │ ├── EncodeBmp.cs │ │ └── EncodeBmpMultiple.cs │ ├── Gif │ │ ├── DecodeEncodeGif.cs │ │ ├── DecodeGif.cs │ │ ├── EncodeGif.cs │ │ └── EncodeGifMultiple.cs │ ├── ImageBenchmarkTests.cs │ ├── Jpeg │ │ ├── BlockOperations │ │ │ ├── Block8x8F_AddInPlace.cs │ │ │ ├── Block8x8F_CopyTo1x1.cs │ │ │ ├── Block8x8F_CopyTo2x2.cs │ │ │ ├── Block8x8F_DivideRound.cs │ │ │ ├── Block8x8F_LoadFromInt16.cs │ │ │ ├── Block8x8F_MultiplyInPlaceBlock.cs │ │ │ ├── Block8x8F_MultiplyInPlaceScalar.cs │ │ │ ├── Block8x8F_Quantize.cs │ │ │ ├── Block8x8F_Round.cs │ │ │ └── Block8x8F_Transpose.cs │ │ ├── ColorConversion │ │ │ ├── CmykColorConversion.cs │ │ │ ├── ColorConversionBenchmark.cs │ │ │ ├── GrayscaleColorConversion.cs │ │ │ ├── RgbColorConversion.cs │ │ │ ├── YCbCrColorConversion.cs │ │ │ └── YccKColorConverter.cs │ │ ├── DecodeJpeg.cs │ │ ├── DecodeJpegParseStreamOnly.cs │ │ ├── DecodeJpeg_Aggregate.cs │ │ ├── DecodeJpeg_ImageSpecific.cs │ │ ├── EncodeJpegComparison.cs │ │ ├── EncodeJpegFeatures.cs │ │ └── IdentifyJpeg.cs │ ├── MultiImageBenchmarkBase.cs │ ├── Png │ │ ├── DecodeFilteredPng.cs │ │ ├── DecodePng.cs │ │ ├── EncodeIndexedPng.cs │ │ └── EncodePng.cs │ ├── Tga │ │ ├── DecodeTga.cs │ │ └── EncodeTga.cs │ ├── Tiff │ │ ├── DecodeTiff.cs │ │ └── EncodeTiff.cs │ └── Webp │ │ ├── DecodeWebp.cs │ │ └── EncodeWebp.cs ├── Color │ ├── ColorEquality.cs │ ├── ColorspaceCieXyzToCieLabConvert.cs │ ├── ColorspaceCieXyzToHunterLabConvert.cs │ ├── ColorspaceCieXyzToLmsConvert.cs │ ├── ColorspaceCieXyzToRgbConvert.cs │ ├── RgbWorkingSpaceAdapt.cs │ └── YcbCrToRgb.cs ├── Config.HwIntrinsics.cs ├── Config.cs ├── General │ ├── Adler32Benchmark.cs │ ├── Array2D.cs │ ├── ArrayReverse.cs │ ├── BasicMath │ │ ├── Abs.cs │ │ ├── ClampFloat.cs │ │ ├── ClampInt32IntoByte.cs │ │ ├── ClampSpan.cs │ │ ├── ClampVector4.cs │ │ ├── ModuloPowerOfTwoConstant.cs │ │ ├── ModuloPowerOfTwoVariable.cs │ │ ├── Pow.cs │ │ └── Round.cs │ ├── Buffer2D_DangerousGetRowSpan.cs │ ├── CopyBuffers.cs │ ├── GetSetPixel.cs │ ├── IO │ │ ├── BufferedReadStreamWrapper.cs │ │ └── BufferedStreams.cs │ ├── PixelConversion │ │ ├── ITestPixel.cs │ │ ├── PixelConversion_ConvertFromRgba32.cs │ │ ├── PixelConversion_ConvertFromVector4.cs │ │ ├── PixelConversion_ConvertToRgba32.cs │ │ ├── PixelConversion_ConvertToRgba32_AsPartOfCompositeOperation.cs │ │ ├── PixelConversion_ConvertToVector4.cs │ │ ├── PixelConversion_ConvertToVector4_AsPartOfCompositeOperation.cs │ │ ├── PixelConversion_PackFromRgbPlanes.cs │ │ ├── PixelConversion_Rgba32_To_Argb32.cs │ │ ├── PixelConversion_Rgba32_To_Bgra32.cs │ │ ├── TestArgb.cs │ │ ├── TestRgba.cs │ │ └── TestRgbaVector.cs │ ├── StructCasting.cs │ ├── Vector4Constants.cs │ └── Vectorization │ │ ├── BitwiseOrUint32.cs │ │ ├── DivFloat.cs │ │ ├── DivUInt32.cs │ │ ├── Divide.cs │ │ ├── MulFloat.cs │ │ ├── MulUInt32.cs │ │ ├── Multiply.cs │ │ ├── Premultiply.cs │ │ ├── ReinterpretUInt32AsFloat.cs │ │ ├── SIMDBenchmarkBase.cs │ │ ├── UInt32ToSingle.cs │ │ ├── VectorFetching.cs │ │ └── WidenBytesToUInt32.cs ├── ImageSharp.Benchmarks.csproj ├── LoadResizeSave │ ├── LoadResizeSaveStressBenchmarks.cs │ ├── LoadResizeSaveStressRunner.cs │ └── README.md ├── PixelBlenders │ ├── PorterDuffBulkVsPixel.cs │ └── PorterDuffBulkVsSingleVector.cs ├── Processing │ ├── BokehBlur.cs │ ├── Crop.cs │ ├── DetectEdges.cs │ ├── Diffuse.cs │ ├── GaussianBlur.cs │ ├── HistogramEqualization.cs │ ├── OilPaint.cs │ ├── Resize.cs │ ├── Rotate.cs │ └── Skew.cs └── Program.cs ├── ImageSharp.Tests.ProfilingSandbox ├── ImageSharp.Tests.ProfilingSandbox.csproj ├── LoadResizeSaveParallelMemoryStress.cs ├── Program.cs ├── README.md └── app.config ├── ImageSharp.Tests.ruleset ├── ImageSharp.Tests ├── Advanced │ └── AdvancedImageExtensionsTests.cs ├── Color │ ├── ColorTests.CastFrom.cs │ ├── ColorTests.CastTo.cs │ ├── ColorTests.ConstructFrom.cs │ ├── ColorTests.cs │ ├── ReferencePalette.cs │ └── RgbaDouble.cs ├── ColorProfiles │ ├── ApproximateColorProfileComparer.cs │ ├── CieLabAndCieLchConversionTests.cs │ ├── CieLabAndCieLchuvConversionTests.cs │ ├── CieLabAndCieLuvConversionTests.cs │ ├── CieLabAndCieXyyConversionTests.cs │ ├── CieLabAndCmykConversionTests.cs │ ├── CieLabAndHslConversionTests.cs │ ├── CieLabAndHsvConversionTests.cs │ ├── CieLabAndHunterLabConversionTests.cs │ ├── CieLabAndLmsConversionTests.cs │ ├── CieLabAndRgbConversionTests.cs │ ├── CieLabAndYCbCrConversionTests.cs │ ├── CieLabTests.cs │ ├── CieLchAndCieLuvConversionTests.cs │ ├── CieLchAndCieXyyConversionTests.cs │ ├── CieLchTests.cs │ ├── CieLchuvAndCieLchConversionTests.cs │ ├── CieLchuvAndCieLuvConversionTests.cs │ ├── CieLchuvAndCmykConversionTests.cs │ ├── CieLchuvTests.cs │ ├── CieLuvAndCieXyyConversionTests.cs │ ├── CieLuvAndHslConversionTests.cs │ ├── CieLuvAndHsvConversionTests.cs │ ├── CieLuvAndHunterLabConversionTests.cs │ ├── CieLuvAndLmsConversionTests.cs │ ├── CieLuvAndRgbConversionTests.cs │ ├── CieLuvAndYCbCrConversionTests.cs │ ├── CieLuvTests.cs │ ├── CieXyChromaticityCoordinatesTests.cs │ ├── CieXyyAndHslConversionTests.cs │ ├── CieXyyAndHsvConversionTests.cs │ ├── CieXyyAndHunterLabConversionTests.cs │ ├── CieXyyAndLmsConversionTests.cs │ ├── CieXyyAndRgbConversionTests.cs │ ├── CieXyyAndYCbCrConversionTests.cs │ ├── CieXyyTests.cs │ ├── CieXyzAndCieLabConversionTest.cs │ ├── CieXyzAndCieLchConversionTests.cs │ ├── CieXyzAndCieLchuvConversionTests.cs │ ├── CieXyzAndCieLuvConversionTest.cs │ ├── CieXyzAndCieXyyConversionTest.cs │ ├── CieXyzAndHslConversionTests.cs │ ├── CieXyzAndHsvConversionTests.cs │ ├── CieXyzAndHunterLabConversionTest.cs │ ├── CieXyzAndLmsConversionTest.cs │ ├── CieXyzAndYCbCrConversionTests.cs │ ├── CieXyzTests.cs │ ├── CmykAndCieLchConversionTests.cs │ ├── CmykAndCieLuvConversionTests.cs │ ├── CmykAndYCbCrConversionTests.cs │ ├── CmykTests.cs │ ├── ColorProfileConverterChomaticAdaptationTests.cs │ ├── CompandingTests.cs │ ├── HslTests.cs │ ├── HsvTests.cs │ ├── HunterLabTests.cs │ ├── Icc │ │ ├── Calculators │ │ │ ├── ClutCalculatorTests.cs │ │ │ ├── CurveCalculatorTests.cs │ │ │ ├── LutABCalculatorTests.cs │ │ │ ├── LutCalculatorTests.cs │ │ │ ├── LutEntryCalculatorTests.cs │ │ │ ├── MatrixCalculatorTests.cs │ │ │ ├── ParametricCurveCalculatorTests.cs │ │ │ └── TrcCalculatorTests.cs │ │ ├── ColorProfileConverterTests.Icc.cs │ │ └── TestIccProfiles.cs │ ├── LmsTests.cs │ ├── RbgAndYConversionTests.cs │ ├── RgbAndCieXyzConversionTest.cs │ ├── RgbAndCmykConversionTest.cs │ ├── RgbAndHslConversionTest.cs │ ├── RgbAndHsvConversionTest.cs │ ├── RgbAndYCbCrConversionTest.cs │ ├── RgbAndYccKConversionTests.cs │ ├── RgbTests.cs │ ├── StringRepresentationTests.cs │ ├── VonKriesChromaticAdaptationTests.cs │ ├── YCbCrTests.cs │ ├── YTests.cs │ └── YccKTests.cs ├── Common │ ├── ConstantsTests.cs │ ├── EncoderExtensionsTests.cs │ ├── GaussianEliminationSolverTest.cs │ ├── NumericsTests.cs │ ├── SimdUtilsTests.Shuffle.cs │ ├── SimdUtilsTests.cs │ ├── StreamExtensionsTests.cs │ └── Tuple8.cs ├── ConfigurationTests.cs ├── Drawing │ ├── DrawImageExtensionsTests.cs │ └── DrawImageTests.cs ├── Formats │ ├── Bmp │ │ ├── BmpDecoderTests.cs │ │ ├── BmpEncoderTests.cs │ │ ├── BmpFileHeaderTests.cs │ │ ├── BmpMetadataTests.cs │ │ └── ImageExtensionsTest.cs │ ├── GeneralFormatTests.cs │ ├── Gif │ │ ├── GifDecoderTests.cs │ │ ├── GifEncoderTests.cs │ │ ├── GifFrameMetadataTests.cs │ │ ├── GifMetadataTests.cs │ │ ├── ImageExtensionsTest.cs │ │ └── Sections │ │ │ ├── GifGraphicControlExtensionTests.cs │ │ │ ├── GifImageDescriptorTests.cs │ │ │ └── GifLogicalScreenDescriptorTests.cs │ ├── Icon │ │ ├── Cur │ │ │ ├── CurDecoderTests.cs │ │ │ └── CurEncoderTests.cs │ │ └── Ico │ │ │ ├── IcoDecoderTests.cs │ │ │ └── IcoEncoderTests.cs │ ├── ImageFormatManagerTests.cs │ ├── Jpg │ │ ├── AdobeMarkerTests.cs │ │ ├── Block8x8FTests.cs │ │ ├── Block8x8Tests.cs │ │ ├── DCTTests.cs │ │ ├── HuffmanScanEncoderTests.cs │ │ ├── ImageExtensionsTest.cs │ │ ├── JFifMarkerTests.cs │ │ ├── JpegColorConverterTests.cs │ │ ├── JpegDecoderTests.Baseline.cs │ │ ├── JpegDecoderTests.Images.cs │ │ ├── JpegDecoderTests.Internal.cs │ │ ├── JpegDecoderTests.Metadata.cs │ │ ├── JpegDecoderTests.Progressive.cs │ │ ├── JpegDecoderTests.cs │ │ ├── JpegEncoderTests.Metadata.cs │ │ ├── JpegEncoderTests.cs │ │ ├── JpegFileMarkerTests.cs │ │ ├── JpegMetadataTests.cs │ │ ├── LibJpegToolsTests.cs │ │ ├── ParseStreamTests.cs │ │ ├── ProfileResolverTests.cs │ │ ├── QuantizationTests.cs │ │ ├── ReferenceImplementationsTests.AccurateDCT.cs │ │ ├── ReferenceImplementationsTests.FastFloatingPointDCT.cs │ │ ├── ReferenceImplementationsTests.StandardIntegerDCT.cs │ │ ├── ReferenceImplementationsTests.cs │ │ ├── SpectralConverterTests.cs │ │ ├── SpectralJpegTests.cs │ │ ├── SpectralToPixelConversionTests.cs │ │ ├── Utils │ │ │ ├── JpegFixture.cs │ │ │ ├── LibJpegTools.ComponentData.cs │ │ │ ├── LibJpegTools.SpectralData.cs │ │ │ ├── LibJpegTools.cs │ │ │ ├── ReferenceImplementations.AccurateDCT.cs │ │ │ ├── ReferenceImplementations.GT_FloatingPoint_DCT.cs │ │ │ ├── ReferenceImplementations.LLM_FloatingPoint_DCT.cs │ │ │ ├── ReferenceImplementations.StandardIntegerDCT.cs │ │ │ ├── ReferenceImplementations.cs │ │ │ ├── SpanExtensions.cs │ │ │ └── VerifyJpeg.cs │ │ ├── ZigZagTests.cs │ │ └── pdfjs │ │ │ ├── baseline │ │ │ └── ycck - Copy.jpg │ │ │ ├── jpeg-converter.htm │ │ │ ├── jpeg.htm │ │ │ └── jpg.js │ ├── Pbm │ │ ├── ImageExtensionsTest.cs │ │ ├── PbmDecoderTests.cs │ │ ├── PbmEncoderTests.cs │ │ ├── PbmMetadataTests.cs │ │ └── PbmRoundTripTests.cs │ ├── Png │ │ ├── Adler32Tests.cs │ │ ├── ImageExtensionsTest.cs │ │ ├── PngChunkTypeTests.cs │ │ ├── PngDecoderFilterTests.cs │ │ ├── PngDecoderTests.Chunks.cs │ │ ├── PngDecoderTests.cs │ │ ├── PngEncoderFilterTests.cs │ │ ├── PngEncoderTests.Chunks.cs │ │ ├── PngEncoderTests.cs │ │ ├── PngFrameMetadataTests.cs │ │ ├── PngMetadataTests.cs │ │ ├── PngSmokeTests.cs │ │ ├── PngTextDataTests.cs │ │ └── ReferenceImplementations.cs │ ├── Qoi │ │ ├── ImageExtensionsTest.cs │ │ ├── QoiDecoderTests.cs │ │ └── QoiEncoderTests.cs │ ├── Tga │ │ ├── ImageExtensionsTest.cs │ │ ├── TgaDecoderTests.cs │ │ ├── TgaEncoderTests.cs │ │ └── TgaFileHeaderTests.cs │ ├── Tiff │ │ ├── BigTiffDecoderTests.cs │ │ ├── BigTiffMetadataTests.cs │ │ ├── Compression │ │ │ ├── DeflateTiffCompressionTests.cs │ │ │ ├── LzwTiffCompressionTests.cs │ │ │ ├── NoneTiffCompressionTests.cs │ │ │ └── PackBitsTiffCompressionTests.cs │ │ ├── ImageExtensionsTest.cs │ │ ├── PhotometricInterpretation │ │ │ ├── BlackIsZeroTiffColorTests.cs │ │ │ ├── PaletteTiffColorTests.cs │ │ │ ├── PhotometricInterpretationTestBase.cs │ │ │ ├── RgbPlanarTiffColorTests.cs │ │ │ ├── RgbTiffColorTests.cs │ │ │ └── WhiteIsZeroTiffColorTests.cs │ │ ├── TiffDecoderBaseTester.cs │ │ ├── TiffDecoderTests.cs │ │ ├── TiffEncoderBaseTester.cs │ │ ├── TiffEncoderHeaderTests.cs │ │ ├── TiffEncoderMultiframeTests.cs │ │ ├── TiffEncoderTests.cs │ │ ├── TiffFormatTests.cs │ │ ├── TiffMetadataTests.cs │ │ └── Utils │ │ │ └── TiffWriterTests.cs │ └── WebP │ │ ├── ColorSpaceTransformUtilsTests.cs │ │ ├── DominantCostRangeTests.cs │ │ ├── ImageExtensionsTests.cs │ │ ├── LosslessUtilsTests.cs │ │ ├── LossyUtilsTests.cs │ │ ├── PredictorEncoderTests.cs │ │ ├── QuantEncTests.cs │ │ ├── Vp8EncodingTests.cs │ │ ├── Vp8HistogramTests.cs │ │ ├── Vp8LHistogramTests.cs │ │ ├── Vp8ModeScoreTests.cs │ │ ├── Vp8ResidualTests.cs │ │ ├── WebpCommonUtilsTests.cs │ │ ├── WebpDecoderTests.cs │ │ ├── WebpEncoderTests.cs │ │ ├── WebpMetaDataTests.cs │ │ └── YuvConversionTests.cs ├── GraphicOptionsDefaultsExtensionsTests.cs ├── GraphicsOptionsTests.cs ├── Helpers │ ├── ColorNumericsTests.cs │ ├── NumericsTests.cs │ ├── ParallelExecutionSettingsTests.cs │ ├── ParallelRowIteratorTests.cs │ ├── RowIntervalTests.cs │ ├── TolerantMathTests.cs │ └── UnitConverterHelperTests.cs ├── IO │ ├── BufferedReadStreamTests.cs │ ├── ChunkedMemoryStreamTests.cs │ └── LocalFileSystemTests.cs ├── Image │ ├── ImageCloneTests.cs │ ├── ImageFrameCollectionTests.Generic.cs │ ├── ImageFrameCollectionTests.NonGeneric.cs │ ├── ImageFrameCollectionTests.cs │ ├── ImageFrameTests.cs │ ├── ImageRotationTests.cs │ ├── ImageSaveTests.cs │ ├── ImageTests.Decode_Cancellation.cs │ ├── ImageTests.DetectFormat.cs │ ├── ImageTests.EncodeCancellation.cs │ ├── ImageTests.Identify.cs │ ├── ImageTests.ImageLoadTestBase.cs │ ├── ImageTests.LoadPixelData.cs │ ├── ImageTests.Load_FileSystemPath_PassLocalConfiguration.cs │ ├── ImageTests.Load_FileSystemPath_UseDefaultConfiguration.cs │ ├── ImageTests.Load_FromBytes_PassLocalConfiguration.cs │ ├── ImageTests.Load_FromBytes_UseGlobalConfiguration.cs │ ├── ImageTests.Load_FromStream_PassLocalConfiguration.cs │ ├── ImageTests.Load_FromStream_ThrowsRightException.cs │ ├── ImageTests.Load_FromStream_UseDefaultConfiguration.cs │ ├── ImageTests.Save.cs │ ├── ImageTests.SaveAsync.cs │ ├── ImageTests.WrapMemory.cs │ ├── ImageTests.cs │ ├── LargeImageIntegrationTests.cs │ ├── MockImageFormatDetector.cs │ ├── NonSeekableStream.cs │ └── ProcessPixelRowsTestBase.cs ├── ImageInfoTests.cs ├── ImageSharp.Tests.csproj ├── Issues │ └── Issue594.cs ├── Memory │ ├── Allocators │ │ ├── BufferExtensions.cs │ │ ├── BufferTestSuite.cs │ │ ├── MemoryDiagnosticsTests.cs │ │ ├── RefCountedLifetimeGuardTests.cs │ │ ├── SharedArrayPoolBufferTests.cs │ │ ├── SimpleGcMemoryAllocatorTests.cs │ │ ├── UniformUnmanagedMemoryPoolTests.Trim.cs │ │ ├── UniformUnmanagedMemoryPoolTests.cs │ │ ├── UniformUnmanagedPoolMemoryAllocatorTests.cs │ │ ├── UnmanagedBufferTests.cs │ │ └── UnmanagedMemoryHandleTests.cs │ ├── Buffer2DTests.SwapOrCopyContent.cs │ ├── Buffer2DTests.cs │ ├── BufferAreaTests.cs │ ├── DiscontiguousBuffers │ │ ├── MemoryGroupIndex.cs │ │ ├── MemoryGroupIndexTests.cs │ │ ├── MemoryGroupTests.Allocate.cs │ │ ├── MemoryGroupTests.CopyTo.cs │ │ ├── MemoryGroupTests.View.cs │ │ ├── MemoryGroupTests.cs │ │ └── MemoryGroupTestsBase.cs │ └── TestStructs.cs ├── MemoryAllocatorValidator.cs ├── Metadata │ ├── ImageFrameMetadataTests.cs │ ├── ImageMetadataTests.cs │ └── Profiles │ │ ├── CICP │ │ └── CicpProfileTests.cs │ │ ├── Exif │ │ ├── ExifProfileTests.cs │ │ ├── ExifReaderTests.cs │ │ ├── ExifTagDescriptionAttributeTests.cs │ │ ├── ExifValueTests.cs │ │ └── Values │ │ │ └── ExifValuesTests.cs │ │ ├── ICC │ │ ├── DataReader │ │ │ ├── IccDataReaderCurvesTests.cs │ │ │ ├── IccDataReaderLutTests.cs │ │ │ ├── IccDataReaderMatrixTests.cs │ │ │ ├── IccDataReaderMultiProcessElementTests.cs │ │ │ ├── IccDataReaderNonPrimitivesTests.cs │ │ │ ├── IccDataReaderPrimitivesTests.cs │ │ │ ├── IccDataReaderTagDataEntryTests.cs │ │ │ └── IccDataReaderTests.cs │ │ ├── DataWriter │ │ │ ├── IccDataWriterCurvesTests.cs │ │ │ ├── IccDataWriterLutTests.cs │ │ │ ├── IccDataWriterLutTests1.cs │ │ │ ├── IccDataWriterLutTests2.cs │ │ │ ├── IccDataWriterMatrixTests.cs │ │ │ ├── IccDataWriterMultiProcessElementTests.cs │ │ │ ├── IccDataWriterNonPrimitivesTests.cs │ │ │ ├── IccDataWriterPrimitivesTests.cs │ │ │ ├── IccDataWriterTagDataEntryTests.cs │ │ │ └── IccDataWriterTests.cs │ │ ├── IccProfileTests.cs │ │ ├── IccReaderTests.cs │ │ ├── IccWriterTests.cs │ │ └── Various │ │ │ └── IccProfileIdTests.cs │ │ ├── IPTC │ │ └── IptcProfileTests.cs │ │ └── XMP │ │ └── XmpProfileTests.cs ├── Numerics │ ├── RationalTests.cs │ └── SignedRationalTests.cs ├── PixelFormats │ ├── A8Tests.cs │ ├── Abgr32Tests.cs │ ├── Argb32Tests.cs │ ├── Bgr24Tests.cs │ ├── Bgr565Tests.cs │ ├── Bgra32Tests.cs │ ├── Bgra4444Tests.cs │ ├── Bgra5551Tests.cs │ ├── Byte4Tests.cs │ ├── HalfSingleTests.cs │ ├── HalfVector2Tests.cs │ ├── HalfVector4Tests.cs │ ├── L16Tests.cs │ ├── L8Tests.cs │ ├── La16Tests.cs │ ├── La32Tests.cs │ ├── NormalizedByte2Tests.cs │ ├── NormalizedByte4Tests.cs │ ├── NormalizedShort2Tests.cs │ ├── NormalizedShort4Tests.cs │ ├── PixelBlenderTests.cs │ ├── PixelBlenders │ │ ├── PorterDuffCompositorTests.cs │ │ ├── PorterDuffFunctionsTests.cs │ │ └── PorterDuffFunctionsTestsTPixel.cs │ ├── PixelColorTypeTests.cs │ ├── PixelConverterTests.ReferenceImplementations.cs │ ├── PixelConverterTests.cs │ ├── PixelOperations │ │ ├── Generated │ │ │ ├── PixelOperationsTests.Specialized.Generated.cs │ │ │ ├── PixelOperationsTests.Specialized.Generated.tt │ │ │ └── _Common.ttinclude │ │ ├── PixelConversionModifiersExtensionsTests.cs │ │ ├── PixelOperationsTests.Rgba32OperationsTests.cs │ │ └── PixelOperationsTests.cs │ ├── Rg32Tests.cs │ ├── Rgb24Tests.cs │ ├── Rgb48Tests.cs │ ├── Rgba1010102Tests.cs │ ├── Rgba32Tests.cs │ ├── Rgba64Tests.cs │ ├── RgbaVectorTests.cs │ ├── Short2Tests.cs │ ├── Short4Tests.cs │ └── UnPackedPixelTests.cs ├── Primitives │ ├── ColorMatrixTests.cs │ ├── DenseMatrixTests.cs │ ├── PointFTests.cs │ ├── PointTests.cs │ ├── RectangleFTests.cs │ ├── RectangleTests.cs │ ├── SizeFTests.cs │ └── SizeTests.cs ├── Processing │ ├── BaseImageOperationsExtensionTest.cs │ ├── Binarization │ │ ├── AdaptiveThresholdTests.cs │ │ ├── BinaryThresholdTest.cs │ │ └── OrderedDitherFactoryTests.cs │ ├── Convolution │ │ ├── BoxBlurTest.cs │ │ ├── DetectEdgesTest.cs │ │ ├── GaussianBlurTest.cs │ │ ├── GaussianSharpenTest.cs │ │ ├── KernelSamplingMapTest.cs │ │ ├── MedianBlurTest.cs │ │ └── Processors │ │ │ ├── EdgeDetectorKernelTests.cs │ │ │ └── LaplacianKernelFactoryTests.cs │ ├── Dithering │ │ └── DitherTest.cs │ ├── Effects │ │ ├── BackgroundColorTest.cs │ │ ├── OilPaintTest.cs │ │ └── PixelateTest.cs │ ├── FakeImageOperationsProvider.cs │ ├── Filters │ │ ├── BlackWhiteTest.cs │ │ ├── BrightnessTest.cs │ │ ├── ColorBlindnessTest.cs │ │ ├── ContrastTest.cs │ │ ├── FilterTest.cs │ │ ├── GrayscaleTest.cs │ │ ├── HueTest.cs │ │ ├── InvertTest.cs │ │ ├── KodachromeTest.cs │ │ ├── LightnessTest.cs │ │ ├── LomographTest.cs │ │ ├── OpacityTest.cs │ │ ├── PolaroidTest.cs │ │ ├── SaturateTest.cs │ │ └── SepiaTest.cs │ ├── ImageOperationTests.cs │ ├── ImageProcessingContextTests.cs │ ├── IntegralImageTests.cs │ ├── Normalization │ │ ├── HistogramEqualizationTests.cs │ │ └── MagickCompareTests.cs │ ├── Overlays │ │ ├── GlowTest.cs │ │ └── VignetteTest.cs │ ├── Processors │ │ ├── Binarization │ │ │ ├── BinaryDitherTests.cs │ │ │ └── BinaryThresholdTest.cs │ │ ├── Convolution │ │ │ ├── Basic1ParameterConvolutionTests.cs │ │ │ ├── BokehBlurTest.cs │ │ │ ├── BoxBlurTest.cs │ │ │ ├── ConvolutionProcessorHelpersTest.cs │ │ │ ├── ConvolutionTests.cs │ │ │ ├── DetectEdgesTest.cs │ │ │ ├── GaussianBlurTest.cs │ │ │ ├── GaussianSharpenTest.cs │ │ │ └── MedianBlurTest.cs │ │ ├── Dithering │ │ │ └── DitherTests.cs │ │ ├── Effects │ │ │ ├── BackgroundColorTest.cs │ │ │ ├── OilPaintTest.cs │ │ │ ├── PixelShaderTest.cs │ │ │ └── PixelateTest.cs │ │ ├── Filters │ │ │ ├── BlackWhiteTest.cs │ │ │ ├── BrightnessTest.cs │ │ │ ├── ColorBlindnessTest.cs │ │ │ ├── ContrastTest.cs │ │ │ ├── FilterTest.cs │ │ │ ├── GrayscaleTest.cs │ │ │ ├── HueTest.cs │ │ │ ├── InvertTest.cs │ │ │ ├── KodachromeTest.cs │ │ │ ├── LightnessTest.cs │ │ │ ├── LomographTest.cs │ │ │ ├── OpacityTest.cs │ │ │ ├── PolaroidTest.cs │ │ │ ├── SaturateTest.cs │ │ │ └── SepiaTest.cs │ │ ├── Overlays │ │ │ ├── GlowTest.cs │ │ │ ├── OverlayTestBase.cs │ │ │ └── VignetteTest.cs │ │ ├── Quantization │ │ │ ├── OctreeQuantizerTests.cs │ │ │ ├── PaletteQuantizerTests.cs │ │ │ ├── QuantizerTests.cs │ │ │ └── WuQuantizerTests.cs │ │ └── Transforms │ │ │ ├── AffineTransformTests.cs │ │ │ ├── AutoOrientTests.cs │ │ │ ├── CropTest.cs │ │ │ ├── EntropyCropTest.cs │ │ │ ├── FlipTests.cs │ │ │ ├── PadTest.cs │ │ │ ├── ResamplerTests.cs │ │ │ ├── ResizeHelperTests.cs │ │ │ ├── ResizeKernelMapTests.ReferenceKernelMap.cs │ │ │ ├── ResizeKernelMapTests.cs │ │ │ ├── ResizeTests.cs │ │ │ ├── RotateFlipTests.cs │ │ │ ├── RotateTests.cs │ │ │ ├── SkewTests.cs │ │ │ └── SwizzleTests.cs │ └── Transforms │ │ ├── AffineTransformBuilderTests.cs │ │ ├── AutoOrientTests.cs │ │ ├── CropTest.cs │ │ ├── EntropyCropTest.cs │ │ ├── FlipTests.cs │ │ ├── PadTest.cs │ │ ├── ProjectiveTransformBuilderTests.cs │ │ ├── ProjectiveTransformTests.cs │ │ ├── ResizeTests.cs │ │ ├── RotateFlipTests.cs │ │ ├── RotateTests.cs │ │ ├── SkewTest.cs │ │ ├── SwizzleTests.cs │ │ └── TransformBuilderTestBase.cs ├── ProfilingBenchmarks │ ├── LoadResizeSaveProfilingBenchmarks.cs │ ├── ProfilingSetup.cs │ └── ResizeProfilingBenchmarks.cs ├── Quantization │ ├── PixelSamplingStrategyTests.cs │ ├── QuantizedImageTests.cs │ └── WuQuantizerTests.cs ├── RunTestsInLoop.ps1 ├── TestDataIcc │ ├── Conversion │ │ ├── IccConversionDataClut.cs │ │ ├── IccConversionDataLut.cs │ │ ├── IccConversionDataLutAB.cs │ │ ├── IccConversionDataLutEntry.cs │ │ ├── IccConversionDataMatrix.cs │ │ ├── IccConversionDataMultiProcessElement.cs │ │ └── IccConversionDataTrc.cs │ ├── IccTestDataArray.cs │ ├── IccTestDataCurves.cs │ ├── IccTestDataLut.cs │ ├── IccTestDataMatrix.cs │ ├── IccTestDataMultiProcessElements.cs │ ├── IccTestDataNonPrimitives.cs │ ├── IccTestDataPrimitives.cs │ ├── IccTestDataProfiles.cs │ ├── IccTestDataTagDataEntry.cs │ └── Profiles │ │ ├── CGATS21_CRPC7.icc │ │ ├── Coated_Fogra39L_VIGC_300.icc │ │ ├── ISO22028-2_ROMM-RGB.icc │ │ ├── JapanColor2003WebCoated.icc │ │ ├── JapanColor2011Coated.icc │ │ ├── SWOP2006_Coated5v2.icc │ │ ├── sRGB2014.icc │ │ └── sRGB_v4_ICC_preference.icc ├── TestDataWebp │ ├── Vp8Residual.bin │ └── Vp8Residual.json ├── TestFile.cs ├── TestFileSystem.cs ├── TestFontUtilities.cs ├── TestFonts │ ├── OpenSans-Regular.ttf │ └── SixLaborsSampleAB.woff ├── TestFormat.cs ├── TestImages.cs ├── TestUtilities │ ├── ApproximateFloatComparer.cs │ ├── ArrayHelper.cs │ ├── AsyncStreamWrapper.cs │ ├── Attributes │ │ ├── GroupOutputAttribute.cs │ │ ├── ImageDataAttributeBase.cs │ │ ├── WithBasicTestPatternImagesAttribute.cs │ │ ├── WithBlankImagesAttribute.cs │ │ ├── WithFileAttribute.cs │ │ ├── WithFileCollectionAttribute.cs │ │ ├── WithMemberFactoryAttribute.cs │ │ ├── WithSolidFilledImagesAttribute.cs │ │ └── WithTestPatternImagesAttribute.cs │ ├── BasicSerializer.cs │ ├── ByteArrayUtility.cs │ ├── ByteBuffer.cs │ ├── EofHitCounter.cs │ ├── ExifProfileExtensions.cs │ ├── FeatureTesting │ │ └── FeatureTestRunner.cs │ ├── GraphicsOptionsComparer.cs │ ├── IPausedStream.cs │ ├── ImageComparison │ │ ├── ExactImageComparer.cs │ │ ├── Exceptions │ │ │ ├── ImageDifferenceIsOverThresholdException.cs │ │ │ ├── ImageDimensionsMismatchException.cs │ │ │ └── ImagesSimilarityException.cs │ │ ├── ImageComparer.cs │ │ ├── ImageComparingUtils.cs │ │ ├── ImageSimilarityReport.cs │ │ ├── PixelDifference.cs │ │ └── TolerantImageComparer.cs │ ├── ImageProviders │ │ ├── BasicTestPatternProvider.cs │ │ ├── BlankProvider.cs │ │ ├── FileProvider.cs │ │ ├── ITestImageProvider.cs │ │ ├── MemberMethodProvider.cs │ │ ├── SolidProvider.cs │ │ ├── TestImageProvider.cs │ │ └── TestPatternProvider.cs │ ├── ImagingTestCaseUtility.cs │ ├── MeasureFixture.cs │ ├── PausedMemoryStream.cs │ ├── PausedStream.cs │ ├── PixelTypes.cs │ ├── ReferenceCodecs │ │ ├── ImageSharpPngEncoderWithDefaultConfiguration.cs │ │ ├── MagickReferenceDecoder.cs │ │ ├── ReferenceCodecUtilities.cs │ │ ├── SystemDrawingBridge.cs │ │ ├── SystemDrawingReferenceDecoder.cs │ │ └── SystemDrawingReferenceEncoder.cs │ ├── SemaphoreReadMemoryStream.cs │ ├── SingleStreamFileSystem.cs │ ├── SixLaborsXunitTestFramework.cs │ ├── TestDataGenerator.cs │ ├── TestEnvironment.Formats.cs │ ├── TestEnvironment.cs │ ├── TestImageExtensions.cs │ ├── TestMemoryAllocator.cs │ ├── TestMemoryManager.cs │ ├── TestPixel.cs │ ├── TestType.cs │ ├── TestUtils.cs │ ├── TestVector4.cs │ └── Tests │ │ ├── BasicSerializerTests.cs │ │ ├── FeatureTestRunnerTests.cs │ │ ├── GroupOutputTests.cs │ │ ├── ImageComparerTests.cs │ │ ├── MagickReferenceCodecTests.cs │ │ ├── ReferenceDecoderBenchmarks.cs │ │ ├── SemaphoreReadMemoryStreamTests.cs │ │ ├── SystemDrawingReferenceCodecTests.cs │ │ ├── TestEnvironmentTests.cs │ │ ├── TestImageExtensionsTests.cs │ │ ├── TestImageProviderTests.cs │ │ └── TestUtilityExtensionsTests.cs ├── ValidateDisposedMemoryAllocationsAttribute.cs ├── VectorAssert.cs ├── runtimeconfig.template.json └── xunit.runner.json ├── Images ├── External │ ├── LoadTestInput │ │ ├── Calliphora.jpg │ │ ├── Earth.jpg │ │ ├── Lake.jpg │ │ ├── LargeTree.jpg │ │ ├── Saturn.jpg │ │ ├── Snake.jpg │ │ ├── caspian.jpg │ │ └── jpeg420exif.jpg │ ├── README.md │ ├── ReferenceOutput │ │ ├── AdaptiveThresholdTests │ │ │ ├── AdaptiveThreshold_WithRectangle_Works_Rgba32_Bradley02.png │ │ │ ├── AdaptiveThreshold_Works_Rgba32_Bradley01.png │ │ │ ├── AdaptiveThreshold_Works_Rgba32_Bradley02.png │ │ │ ├── AdaptiveThreshold_Works_Rgba32_Issue_2217_AdaptiveThresholdProcessor.png │ │ │ └── AdaptiveThreshold_Works_Rgba32_ducky.png │ │ ├── AffineTransformTests │ │ │ ├── Identity_Rgba32_TestPattern100x100.png │ │ │ ├── Transform_FromSourceRectangle1_Rgba32_TestPattern96x48.png │ │ │ ├── Transform_FromSourceRectangle2_Rgba32_TestPattern96x48.png │ │ │ ├── Transform_RotateScaleTranslate_Rgba32_TestPattern100x50_R(0)_S(1,1)_T(-20,-10).png │ │ │ ├── Transform_RotateScaleTranslate_Rgba32_TestPattern100x50_R(0)_S(1,1)_T(0,0).png │ │ │ ├── Transform_RotateScaleTranslate_Rgba32_TestPattern100x50_R(0)_S(1,1)_T(20,10).png │ │ │ ├── Transform_RotateScaleTranslate_Rgba32_TestPattern100x50_R(0)_S(1,2)_T(0,0).png │ │ │ ├── Transform_RotateScaleTranslate_Rgba32_TestPattern100x50_R(0)_S(2,1)_T(0,0).png │ │ │ ├── Transform_RotateScaleTranslate_Rgba32_TestPattern100x50_R(50)_S(1,1)_T(-20,-10).png │ │ │ ├── Transform_RotateScaleTranslate_Rgba32_TestPattern100x50_R(50)_S(1,1)_T(0,0).png │ │ │ ├── Transform_RotateScaleTranslate_Rgba32_TestPattern100x50_R(50)_S(1,1)_T(20,10).png │ │ │ ├── Transform_RotateScaleTranslate_Rgba32_TestPattern100x50_R(50)_S(1.1,1.3)_T(30,-20).png │ │ │ ├── Transform_RotateScaleTranslate_Rgba32_TestPattern100x50_R(50)_S(1.5,1.5)_T(0,0).png │ │ │ ├── Transform_RotateScaleTranslate_Rgba32_TestPattern100x50__original.png │ │ │ ├── Transform_RotateScale_ManuallyCentered_Rgba32_TestPattern96x96_R(50)_S(0.8).png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_Bicubic.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_Box.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_CatmullRom.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_Hermite.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_Lanczos2.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_Lanczos3.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_Lanczos5.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_Lanczos8.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_MitchellNetravali.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_NearestNeighbor.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_Robidoux.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_RobidouxSharp.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_Spline.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_Triangle.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_Welch.png │ │ │ ├── Transform_With_Custom_Dimensions_Rgba32_TestPattern100x100_0.0001.png │ │ │ ├── Transform_With_Custom_Dimensions_Rgba32_TestPattern100x100_0.png │ │ │ └── Transform_With_Custom_Dimensions_Rgba32_TestPattern100x100_57.png │ │ ├── BinaryThresholdTest │ │ │ ├── ImageShouldApplyBinaryMaxChromaThresholdFilter_Rgba32_colors-saturation-lightness_0.25.png │ │ │ ├── ImageShouldApplyBinaryMaxChromaThresholdFilter_Rgba32_colors-saturation-lightness_0.75.png │ │ │ ├── ImageShouldApplyBinaryMaxChromaThresholdFilter_Rgba32_rgb-48bpp_0.25.png │ │ │ ├── ImageShouldApplyBinaryMaxChromaThresholdFilter_Rgba32_rgb-48bpp_0.75.png │ │ │ ├── ImageShouldApplyBinaryMaxChromaThresholdInBox_Rgba32_colors-saturation-lightness_0.25.png │ │ │ ├── ImageShouldApplyBinaryMaxChromaThresholdInBox_Rgba32_colors-saturation-lightness_0.75.png │ │ │ ├── ImageShouldApplyBinaryMaxChromaThresholdInBox_Rgba32_rgb-48bpp_0.25.png │ │ │ ├── ImageShouldApplyBinaryMaxChromaThresholdInBox_Rgba32_rgb-48bpp_0.75.png │ │ │ ├── ImageShouldApplyBinarySaturationThresholdFilter_Rgba32_colors-saturation-lightness_0.25.png │ │ │ ├── ImageShouldApplyBinarySaturationThresholdFilter_Rgba32_colors-saturation-lightness_0.75.png │ │ │ ├── ImageShouldApplyBinarySaturationThresholdFilter_Rgba32_rgb-48bpp_0.25.png │ │ │ ├── ImageShouldApplyBinarySaturationThresholdFilter_Rgba32_rgb-48bpp_0.75.png │ │ │ ├── ImageShouldApplyBinarySaturationThresholdInBox_Rgba32_colors-saturation-lightness_0.25.png │ │ │ ├── ImageShouldApplyBinarySaturationThresholdInBox_Rgba32_colors-saturation-lightness_0.75.png │ │ │ ├── ImageShouldApplyBinarySaturationThresholdInBox_Rgba32_rgb-48bpp_0.25.png │ │ │ ├── ImageShouldApplyBinarySaturationThresholdInBox_Rgba32_rgb-48bpp_0.75.png │ │ │ ├── ImageShouldApplyBinaryThresholdFilter_Rgba32_colors-saturation-lightness_0.25.png │ │ │ ├── ImageShouldApplyBinaryThresholdFilter_Rgba32_colors-saturation-lightness_0.75.png │ │ │ ├── ImageShouldApplyBinaryThresholdFilter_Rgba32_rgb-48bpp_0.25.png │ │ │ ├── ImageShouldApplyBinaryThresholdFilter_Rgba32_rgb-48bpp_0.75.png │ │ │ ├── ImageShouldApplyBinaryThresholdInBox_Rgba32_colors-saturation-lightness_0.25.png │ │ │ ├── ImageShouldApplyBinaryThresholdInBox_Rgba32_colors-saturation-lightness_0.75.png │ │ │ ├── ImageShouldApplyBinaryThresholdInBox_Rgba32_rgb-48bpp_0.25.png │ │ │ └── ImageShouldApplyBinaryThresholdInBox_Rgba32_rgb-48bpp_0.75.png │ │ ├── BmpDecoderTests │ │ │ ├── BmpDecoder_CanDecodeAlphaBitfields_Rgba32_rgba32abf.png │ │ │ ├── BmpDecoder_CanDecode_2Bit_Rgba32_pal2.png │ │ │ ├── BmpDecoder_CanDecode_2Bit_Rgba32_pal2color.png │ │ │ ├── BmpDecoder_CanDecode_Os2BitmapArray_Rgba32_9S.png │ │ │ ├── BmpDecoder_CanDecode_Os2BitmapArray_Rgba32_DIAMOND.png │ │ │ ├── BmpDecoder_CanDecode_Os2BitmapArray_Rgba32_GMARBLE.png │ │ │ ├── BmpDecoder_CanDecode_Os2BitmapArray_Rgba32_PINES.png │ │ │ ├── BmpDecoder_CanDecode_Os2BitmapArray_Rgba32_SKATER.png │ │ │ ├── BmpDecoder_CanDecode_Os2BitmapArray_Rgba32_SPADE.png │ │ │ ├── BmpDecoder_CanDecode_Os2BitmapArray_Rgba32_SUNFLOW.png │ │ │ ├── BmpDecoder_CanDecode_Os2BitmapArray_Rgba32_WARPD.png │ │ │ ├── BmpDecoder_CanDecode_Os2BitmapArray_Rgba32_ba-bm.png │ │ │ ├── BmpDecoder_CanDecode_Os2v2Header_Rgba32_pal8os2v2.png │ │ │ ├── BmpDecoder_CanDecode_Os2v2XShortHeader_Rgba32_pal8os2v2-16.png │ │ │ ├── BmpDecoder_CanDecode_RunLengthEncoded_24Bit_Rgba32_rgb24rle24.png │ │ │ └── BmpDecoder_CanDecode_RunLengthEncoded_24Bit_Rgba32_rle24rlecut.png │ │ ├── BmpEncoderTests │ │ │ ├── Encode_8BitColor_WithOctreeQuantizer_rgb32.bmp │ │ │ └── Encode_8BitColor_WithWuQuantizer_rgb32.bmp │ │ ├── BokehBlurTest │ │ │ ├── BokehBlurFilterProcessor_BikeGrayscale_R16_C1_G3.png │ │ │ ├── BokehBlurFilterProcessor_BikeGrayscale_R16_C2_G3.png │ │ │ ├── BokehBlurFilterProcessor_BikeGrayscale_R8_C1_G1.png │ │ │ ├── BokehBlurFilterProcessor_Bike_R16_C1_G3.png │ │ │ ├── BokehBlurFilterProcessor_Bike_R16_C2_G3.png │ │ │ ├── BokehBlurFilterProcessor_Bike_R8_C1_G1.png │ │ │ ├── BokehBlurFilterProcessor_Bounded_BikeGrayscale_R16_C1_G3.png │ │ │ ├── BokehBlurFilterProcessor_Bounded_BikeGrayscale_R16_C2_G3.png │ │ │ ├── BokehBlurFilterProcessor_Bounded_BikeGrayscale_R8_C1_G1.png │ │ │ ├── BokehBlurFilterProcessor_Bounded_Bike_R16_C1_G3.png │ │ │ ├── BokehBlurFilterProcessor_Bounded_Bike_R16_C2_G3.png │ │ │ ├── BokehBlurFilterProcessor_Bounded_Bike_R8_C1_G1.png │ │ │ ├── BokehBlurFilterProcessor_Bounded_CalliphoraPartial_R16_C1_G3.png │ │ │ ├── BokehBlurFilterProcessor_Bounded_CalliphoraPartial_R16_C2_G3.png │ │ │ ├── BokehBlurFilterProcessor_Bounded_CalliphoraPartial_R8_C1_G1.png │ │ │ ├── BokehBlurFilterProcessor_Bounded_cross_R16_C1_G3.png │ │ │ ├── BokehBlurFilterProcessor_Bounded_cross_R16_C2_G3.png │ │ │ ├── BokehBlurFilterProcessor_Bounded_cross_R8_C1_G1.png │ │ │ ├── BokehBlurFilterProcessor_CalliphoraPartial_R16_C1_G3.png │ │ │ ├── BokehBlurFilterProcessor_CalliphoraPartial_R16_C2_G3.png │ │ │ ├── BokehBlurFilterProcessor_CalliphoraPartial_R8_C1_G1.png │ │ │ ├── BokehBlurFilterProcessor_Solid50x50_(255,0,0,255)_R16_C1_G3.png │ │ │ ├── BokehBlurFilterProcessor_Solid50x50_(255,0,0,255)_R16_C2_G3.png │ │ │ ├── BokehBlurFilterProcessor_Solid50x50_(255,0,0,255)_R8_C1_G1.png │ │ │ ├── BokehBlurFilterProcessor_TestPattern200x100_R16_C1_G3.png │ │ │ ├── BokehBlurFilterProcessor_TestPattern200x100_R16_C2_G3.png │ │ │ ├── BokehBlurFilterProcessor_TestPattern200x100_R8_C1_G1.png │ │ │ ├── BokehBlurFilterProcessor_TestPattern23x31_R16_C1_G3.png │ │ │ ├── BokehBlurFilterProcessor_TestPattern23x31_R16_C2_G3.png │ │ │ ├── BokehBlurFilterProcessor_TestPattern23x31_R8_C1_G1.png │ │ │ ├── BokehBlurFilterProcessor_TestPattern30x20_R16_C1_G3.png │ │ │ ├── BokehBlurFilterProcessor_TestPattern30x20_R16_C2_G3.png │ │ │ ├── BokehBlurFilterProcessor_TestPattern30x20_R8_C1_G1.png │ │ │ ├── BokehBlurFilterProcessor_WorksWithAllPixelTypes_Bgr24.png │ │ │ ├── BokehBlurFilterProcessor_WorksWithAllPixelTypes_Bgra32.png │ │ │ ├── BokehBlurFilterProcessor_WorksWithAllPixelTypes_Gray8.png │ │ │ ├── BokehBlurFilterProcessor_cross_R16_C1_G3.png │ │ │ ├── BokehBlurFilterProcessor_cross_R16_C2_G3.png │ │ │ └── BokehBlurFilterProcessor_cross_R8_C1_G1.png │ │ ├── Convolution │ │ │ ├── BoxBlurTest │ │ │ │ ├── InBox_Rgba32_CalliphoraPartial_3.png │ │ │ │ ├── InBox_Rgba32_CalliphoraPartial_5.png │ │ │ │ ├── InBox_Rgba32_Car_3.png │ │ │ │ ├── InBox_Rgba32_Car_5.png │ │ │ │ ├── InBox_Rgba32_blur_3.png │ │ │ │ ├── InBox_Rgba32_blur_5.png │ │ │ │ ├── OnFullImage_Rgba32_CalliphoraPartial_3.png │ │ │ │ ├── OnFullImage_Rgba32_CalliphoraPartial_5.png │ │ │ │ ├── OnFullImage_Rgba32_Car_3.png │ │ │ │ ├── OnFullImage_Rgba32_Car_5.png │ │ │ │ ├── OnFullImage_Rgba32_blur_3.png │ │ │ │ └── OnFullImage_Rgba32_blur_5.png │ │ │ ├── ConvolutionTests │ │ │ │ ├── InBox_Rgba32_CalliphoraPartial_-1_-1_-1_-1_16_-1_-1_-1_-1.png │ │ │ │ ├── InBox_Rgba32_Car_-1_-1_-1_-1_16_-1_-1_-1_-1.png │ │ │ │ ├── InBox_Rgba32_blur_-1_-1_-1_-1_16_-1_-1_-1_-1.png │ │ │ │ ├── OnFullImage_Rgba32_CalliphoraPartial_-1_-1_-1_-1_16_-1_-1_-1_-1.png │ │ │ │ ├── OnFullImage_Rgba32_Car_-1_-1_-1_-1_16_-1_-1_-1_-1.png │ │ │ │ └── OnFullImage_Rgba32_blur_-1_-1_-1_-1_16_-1_-1_-1_-1.png │ │ │ ├── DetectEdgesTest │ │ │ │ ├── DetectEdges2D_WorksWithAllFilters_Rgba32_Bike_Kayyali.png │ │ │ │ ├── DetectEdges2D_WorksWithAllFilters_Rgba32_Bike_Prewitt.png │ │ │ │ ├── DetectEdges2D_WorksWithAllFilters_Rgba32_Bike_RobertsCross.png │ │ │ │ ├── DetectEdges2D_WorksWithAllFilters_Rgba32_Bike_Scharr.png │ │ │ │ ├── DetectEdges2D_WorksWithAllFilters_Rgba32_Bike_Sobel.png │ │ │ │ ├── DetectEdges2D_WorksWithAllFilters_Rgba32_TestPattern100x100_Kayyali.png │ │ │ │ ├── DetectEdges2D_WorksWithAllFilters_Rgba32_TestPattern100x100_Prewitt.png │ │ │ │ ├── DetectEdges2D_WorksWithAllFilters_Rgba32_TestPattern100x100_RobertsCross.png │ │ │ │ ├── DetectEdges2D_WorksWithAllFilters_Rgba32_TestPattern100x100_Scharr.png │ │ │ │ ├── DetectEdges2D_WorksWithAllFilters_Rgba32_TestPattern100x100_Sobel.png │ │ │ │ ├── DetectEdgesCompass_WorksWithAllFilters_Rgba32_Bike_Kirsch.png │ │ │ │ ├── DetectEdgesCompass_WorksWithAllFilters_Rgba32_Bike_Robinson.png │ │ │ │ ├── DetectEdgesCompass_WorksWithAllFilters_Rgba32_TestPattern100x100_Kirsch.png │ │ │ │ ├── DetectEdgesCompass_WorksWithAllFilters_Rgba32_TestPattern100x100_Robinson.png │ │ │ │ ├── DetectEdges_InBox_Rgba32_Bike.png │ │ │ │ ├── DetectEdges_IsNotBoundToSinglePixelType_Bgra32_Bike.png │ │ │ │ ├── DetectEdges_IsNotBoundToSinglePixelType_Rgba32_Bike.png │ │ │ │ ├── DetectEdges_IsNotBoundToSinglePixelType_RgbaVector_Bike.png │ │ │ │ ├── DetectEdges_WorksWithAllFilters_Rgba32_Bike_Laplacian3x3.png │ │ │ │ ├── DetectEdges_WorksWithAllFilters_Rgba32_Bike_Laplacian5x5.png │ │ │ │ ├── DetectEdges_WorksWithAllFilters_Rgba32_Bike_LaplacianOfGaussian.png │ │ │ │ ├── DetectEdges_WorksWithAllFilters_Rgba32_TestPattern100x100_Laplacian3x3.png │ │ │ │ ├── DetectEdges_WorksWithAllFilters_Rgba32_TestPattern100x100_Laplacian5x5.png │ │ │ │ └── DetectEdges_WorksWithAllFilters_Rgba32_TestPattern100x100_LaplacianOfGaussian.png │ │ │ ├── GaussianBlurTest │ │ │ │ ├── InBox_Rgba32_CalliphoraPartial_3.png │ │ │ │ ├── InBox_Rgba32_CalliphoraPartial_5.png │ │ │ │ ├── InBox_Rgba32_Car_3.png │ │ │ │ ├── InBox_Rgba32_Car_5.png │ │ │ │ ├── InBox_Rgba32_blur_3.png │ │ │ │ ├── InBox_Rgba32_blur_5.png │ │ │ │ ├── OnFullImage_Rgba32_CalliphoraPartial_3.png │ │ │ │ ├── OnFullImage_Rgba32_CalliphoraPartial_5.png │ │ │ │ ├── OnFullImage_Rgba32_Car_3.png │ │ │ │ ├── OnFullImage_Rgba32_Car_5.png │ │ │ │ ├── OnFullImage_Rgba32_blur_3.png │ │ │ │ └── OnFullImage_Rgba32_blur_5.png │ │ │ ├── GaussianSharpenTest │ │ │ │ ├── InBox_Rgba32_CalliphoraPartial_3.png │ │ │ │ ├── InBox_Rgba32_CalliphoraPartial_5.png │ │ │ │ ├── InBox_Rgba32_Car_3.png │ │ │ │ ├── InBox_Rgba32_Car_5.png │ │ │ │ ├── InBox_Rgba32_blur_3.png │ │ │ │ ├── InBox_Rgba32_blur_5.png │ │ │ │ ├── OnFullImage_Rgba32_CalliphoraPartial_3.png │ │ │ │ ├── OnFullImage_Rgba32_CalliphoraPartial_5.png │ │ │ │ ├── OnFullImage_Rgba32_Car_3.png │ │ │ │ ├── OnFullImage_Rgba32_Car_5.png │ │ │ │ ├── OnFullImage_Rgba32_blur_3.png │ │ │ │ └── OnFullImage_Rgba32_blur_5.png │ │ │ └── MedianBlurTest │ │ │ │ ├── InBox_Rgba32_CalliphoraPartial_3.png │ │ │ │ ├── InBox_Rgba32_CalliphoraPartial_5.png │ │ │ │ ├── InBox_Rgba32_Car_3.png │ │ │ │ ├── InBox_Rgba32_Car_5.png │ │ │ │ ├── InBox_Rgba32_blur_3.png │ │ │ │ ├── InBox_Rgba32_blur_5.png │ │ │ │ ├── OnFullImage_Rgba32_CalliphoraPartial_3.png │ │ │ │ ├── OnFullImage_Rgba32_CalliphoraPartial_5.png │ │ │ │ ├── OnFullImage_Rgba32_Car_3.png │ │ │ │ ├── OnFullImage_Rgba32_Car_5.png │ │ │ │ ├── OnFullImage_Rgba32_blur_3.png │ │ │ │ └── OnFullImage_Rgba32_blur_5.png │ │ ├── DitherTests │ │ │ ├── ApplyDiffusionFilterInBox_Rgba32_CalliphoraPartial.png │ │ │ ├── ApplyDitherFilterInBox_Rgba32_CalliphoraPartial - Copy.png │ │ │ ├── ApplyDitherFilterInBox_Rgba32_CalliphoraPartial.png │ │ │ ├── DiffusionFilter_ShouldNotDependOnSinglePixelType_Bgra32_filter0.png │ │ │ ├── DiffusionFilter_ShouldNotDependOnSinglePixelType_Rgb24_filter0.png │ │ │ ├── DiffusionFilter_ShouldNotDependOnSinglePixelType_Rgba32_filter0.png │ │ │ ├── DiffusionFilter_ShouldNotDependOnSinglePixelType_RgbaVector_filter0.png │ │ │ ├── DiffusionFilter_WorksWithAllErrorDiffusers_Bike_Atkinson.png │ │ │ ├── DiffusionFilter_WorksWithAllErrorDiffusers_Bike_Burks.png │ │ │ ├── DiffusionFilter_WorksWithAllErrorDiffusers_Bike_FloydSteinberg.png │ │ │ ├── DiffusionFilter_WorksWithAllErrorDiffusers_Bike_JarvisJudiceNinke.png │ │ │ ├── DiffusionFilter_WorksWithAllErrorDiffusers_Bike_Sierra2.png │ │ │ ├── DiffusionFilter_WorksWithAllErrorDiffusers_Bike_Sierra3.png │ │ │ ├── DiffusionFilter_WorksWithAllErrorDiffusers_Bike_SierraLite.png │ │ │ ├── DiffusionFilter_WorksWithAllErrorDiffusers_Bike_StevensonArce.png │ │ │ ├── DiffusionFilter_WorksWithAllErrorDiffusers_Bike_Stucki.png │ │ │ ├── DiffusionFilter_WorksWithAllErrorDiffusers_CalliphoraPartial_Atkinson.png │ │ │ ├── DiffusionFilter_WorksWithAllErrorDiffusers_CalliphoraPartial_Burks.png │ │ │ ├── DiffusionFilter_WorksWithAllErrorDiffusers_CalliphoraPartial_FloydSteinberg.png │ │ │ ├── DiffusionFilter_WorksWithAllErrorDiffusers_CalliphoraPartial_JarvisJudiceNinke.png │ │ │ ├── DiffusionFilter_WorksWithAllErrorDiffusers_CalliphoraPartial_Sierra2.png │ │ │ ├── DiffusionFilter_WorksWithAllErrorDiffusers_CalliphoraPartial_Sierra3.png │ │ │ ├── DiffusionFilter_WorksWithAllErrorDiffusers_CalliphoraPartial_SierraLite.png │ │ │ ├── DiffusionFilter_WorksWithAllErrorDiffusers_CalliphoraPartial_StevensonArce.png │ │ │ ├── DiffusionFilter_WorksWithAllErrorDiffusers_CalliphoraPartial_Stucki.png │ │ │ ├── DitherFilter_ShouldNotDependOnSinglePixelType_Bgra32_filter0.png │ │ │ ├── DitherFilter_ShouldNotDependOnSinglePixelType_Rgb24_filter0.png │ │ │ ├── DitherFilter_ShouldNotDependOnSinglePixelType_Rgba32_filter0.png │ │ │ ├── DitherFilter_ShouldNotDependOnSinglePixelType_RgbaVector_filter0.png │ │ │ ├── DitherFilter_WorksWithAllDitherers_Bike_Bayer16x16.png │ │ │ ├── DitherFilter_WorksWithAllDitherers_Bike_Bayer2x2.png │ │ │ ├── DitherFilter_WorksWithAllDitherers_Bike_Bayer4x4.png │ │ │ ├── DitherFilter_WorksWithAllDitherers_Bike_Bayer8x8.png │ │ │ ├── DitherFilter_WorksWithAllDitherers_Bike_Ordered3x3.png │ │ │ ├── DitherFilter_WorksWithAllDitherers_CalliphoraPartial_Bayer16x16.png │ │ │ ├── DitherFilter_WorksWithAllDitherers_CalliphoraPartial_Bayer2x2.png │ │ │ ├── DitherFilter_WorksWithAllDitherers_CalliphoraPartial_Bayer4x4.png │ │ │ ├── DitherFilter_WorksWithAllDitherers_CalliphoraPartial_Bayer8x8.png │ │ │ └── DitherFilter_WorksWithAllDitherers_CalliphoraPartial_Ordered3x3.png │ │ ├── Drawing │ │ │ └── DrawImageTests │ │ │ │ ├── DrawImageOfDifferentPixelType_Bgra32.png │ │ │ │ ├── DrawImageOfDifferentPixelType_Rgba32.png │ │ │ │ ├── DrawTransformed.png │ │ │ │ ├── ImageBlendingMatchesSvgSpecExamples_mode-Add.png │ │ │ │ ├── ImageBlendingMatchesSvgSpecExamples_mode-Darken.png │ │ │ │ ├── ImageBlendingMatchesSvgSpecExamples_mode-HardLight.png │ │ │ │ ├── ImageBlendingMatchesSvgSpecExamples_mode-Lighten.png │ │ │ │ ├── ImageBlendingMatchesSvgSpecExamples_mode-Multiply.png │ │ │ │ ├── ImageBlendingMatchesSvgSpecExamples_mode-Normal.png │ │ │ │ ├── ImageBlendingMatchesSvgSpecExamples_mode-Overlay.png │ │ │ │ ├── ImageBlendingMatchesSvgSpecExamples_mode-Screen.png │ │ │ │ ├── ImageBlendingMatchesSvgSpecExamples_mode-Subtract.png │ │ │ │ ├── Issue2447_A.png │ │ │ │ ├── Issue2447_B.png │ │ │ │ ├── Issue2447_C.png │ │ │ │ ├── Issue2603.png │ │ │ │ ├── Issue2608_NegOffset.png │ │ │ │ ├── WorksWithDifferentBounds_10_10.png │ │ │ │ ├── WorksWithDifferentBounds_25_50.png │ │ │ │ ├── WorksWithDifferentBounds_50_25.png │ │ │ │ ├── WorksWithDifferentBounds_50_50.png │ │ │ │ ├── WorksWithDifferentConfigurations_Bgr24_CalliphoraPartial_Bike-Normal-1.png │ │ │ │ ├── WorksWithDifferentConfigurations_Rgba32_CalliphoraPartial_splash-Normal-0.25.png │ │ │ │ ├── WorksWithDifferentConfigurations_Rgba32_CalliphoraPartial_splash-Normal-0.75.png │ │ │ │ ├── WorksWithDifferentConfigurations_Rgba32_CalliphoraPartial_splash-Normal-1.png │ │ │ │ ├── WorksWithDifferentConfigurations_Rgba32_TestPattern400x400_splash-Add-0.5.png │ │ │ │ ├── WorksWithDifferentConfigurations_Rgba32_TestPattern400x400_splash-Multiply-0.5.png │ │ │ │ ├── WorksWithDifferentConfigurations_Rgba32_TestPattern400x400_splash-Subtract-0.5.png │ │ │ │ ├── WorksWithDifferentConfigurations_Rgba64_rgb-48bpp_splash-Normal-0.25.png │ │ │ │ ├── WorksWithDifferentConfigurations_Rgba64_rgb-48bpp_splash-Normal-1.png │ │ │ │ ├── WorksWithDifferentLocations_-25_-30.png │ │ │ │ ├── WorksWithDifferentLocations_0_0.png │ │ │ │ ├── WorksWithDifferentLocations_25_25.png │ │ │ │ └── WorksWithDifferentLocations_75_50.png │ │ ├── Effects │ │ │ ├── BackgroundColorTest │ │ │ │ ├── FullImage_Rgba32_ducky.png │ │ │ │ ├── FullImage_Rgba32_splash.png │ │ │ │ ├── InBox_Rgba32_ducky.png │ │ │ │ └── InBox_Rgba32_splash.png │ │ │ ├── OilPaintTest │ │ │ │ ├── FullImage_CalliphoraPartial_15-10.png │ │ │ │ ├── FullImage_CalliphoraPartial_6-5.png │ │ │ │ ├── FullImage_Car_15-10.png │ │ │ │ ├── FullImage_Car_6-5.png │ │ │ │ ├── InBox_Rgba32_CalliphoraPartial_15-10.png │ │ │ │ ├── InBox_Rgba32_CalliphoraPartial_6-5.png │ │ │ │ ├── InBox_Rgba32_Car_15-10.png │ │ │ │ ├── InBox_Rgba32_Car_6-5.png │ │ │ │ ├── InBox_Rgba32_TestPattern100x100_15-10.png │ │ │ │ └── InBox_Rgba32_TestPattern100x100_6-5.png │ │ │ ├── PixelShaderTest │ │ │ │ ├── FullImage_CalliphoraPartial.png │ │ │ │ ├── InBox_Rgba32_CalliphoraPartial.png │ │ │ │ ├── PositionAwareFullImage_CalliphoraPartial.png │ │ │ │ └── PositionAwareInBox_Rgba32_CalliphoraPartial.png │ │ │ └── PixelateTest │ │ │ │ ├── FullImage_ducky_4.png │ │ │ │ ├── FullImage_ducky_8.png │ │ │ │ ├── InBox_Rgba32_CalliphoraPartial_4.png │ │ │ │ ├── InBox_Rgba32_CalliphoraPartial_8.png │ │ │ │ ├── InBox_Rgba32_TestPattern320x240_4.png │ │ │ │ └── InBox_Rgba32_TestPattern320x240_8.png │ │ ├── Filters │ │ │ ├── BlackWhiteTest │ │ │ │ └── ApplyBlackWhiteFilter_Rgba32_TestPattern48x48.png │ │ │ ├── BrightnessTest │ │ │ │ ├── ApplyBrightnessFilter_Rgba32_TestPattern48x48_0.5.png │ │ │ │ └── ApplyBrightnessFilter_Rgba32_TestPattern48x48_1.5.png │ │ │ ├── ColorBlindnessTest │ │ │ │ ├── ApplyColorBlindnessFilter_Rgba32_TestPattern48x48_Achromatomaly.png │ │ │ │ ├── ApplyColorBlindnessFilter_Rgba32_TestPattern48x48_Achromatopsia.png │ │ │ │ ├── ApplyColorBlindnessFilter_Rgba32_TestPattern48x48_Deuteranomaly.png │ │ │ │ ├── ApplyColorBlindnessFilter_Rgba32_TestPattern48x48_Deuteranopia.png │ │ │ │ ├── ApplyColorBlindnessFilter_Rgba32_TestPattern48x48_Protanomaly.png │ │ │ │ ├── ApplyColorBlindnessFilter_Rgba32_TestPattern48x48_Protanopia.png │ │ │ │ ├── ApplyColorBlindnessFilter_Rgba32_TestPattern48x48_Tritanomaly.png │ │ │ │ └── ApplyColorBlindnessFilter_Rgba32_TestPattern48x48_Tritanopia.png │ │ │ ├── ContrastTest │ │ │ │ ├── ApplyContrastFilter_Rgba32_TestPattern48x48_0.5.png │ │ │ │ └── ApplyContrastFilter_Rgba32_TestPattern48x48_1.5.png │ │ │ ├── FilterTest │ │ │ │ ├── ApplyFilterInBox_Rgba32_TestPattern48x48.png │ │ │ │ ├── ApplyFilter_Bgra32_TestPattern48x48.png │ │ │ │ └── ApplyFilter_Rgba32_TestPattern48x48.png │ │ │ ├── GrayscaleTest │ │ │ │ ├── ApplyGrayscaleFilter_Rgba32_TestPattern48x48_Bt601.png │ │ │ │ └── ApplyGrayscaleFilter_Rgba32_TestPattern48x48_Bt709.png │ │ │ ├── HueTest │ │ │ │ ├── ApplyHueFilter_Rgba32_TestPattern48x48_-180.png │ │ │ │ └── ApplyHueFilter_Rgba32_TestPattern48x48_180.png │ │ │ ├── InvertTest │ │ │ │ └── ApplyInvertFilter_Rgba32_TestPattern48x48.png │ │ │ ├── KodachromeTest │ │ │ │ └── ApplyKodachromeFilter_Rgba32_TestPattern48x48.png │ │ │ ├── LightnessTest │ │ │ │ ├── ApplyLightnessFilter_Rgba32_TestPattern48x48_0.5.png │ │ │ │ └── ApplyLightnessFilter_Rgba32_TestPattern48x48_1.5.png │ │ │ ├── LomographTest │ │ │ │ └── ApplyLomographFilter_Rgba32_TestPattern48x48.png │ │ │ ├── OpacityTest │ │ │ │ ├── ApplyAlphaFilter_Rgba32_TestPattern48x48_0.2.png │ │ │ │ └── ApplyAlphaFilter_Rgba32_TestPattern48x48_0.8.png │ │ │ ├── PolaroidTest │ │ │ │ └── ApplyPolaroidFilter_Rgba32_TestPattern48x48.png │ │ │ ├── SaturateTest │ │ │ │ ├── ApplySaturationFilter_Rgba32_TestPattern48x48_0.5.png │ │ │ │ └── ApplySaturationFilter_Rgba32_TestPattern48x48_1.5.png │ │ │ └── SepiaTest │ │ │ │ └── ApplySepiaFilter_Rgba32_TestPattern48x48.png │ │ ├── GifDecoderTests │ │ │ ├── Decode_Animated_Rgba32_animated_loop.gif │ │ │ │ ├── 00.png │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ └── 03.png │ │ │ ├── Decode_Animated_Rgba32_animated_loop_interlaced.gif │ │ │ │ ├── 00.png │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ └── 03.png │ │ │ ├── Decode_Animated_WithTransparency_Rgba32_animated_transparent_firstframerestoreprev_loop.gif │ │ │ │ ├── 00.png │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ └── 03.png │ │ │ ├── Decode_Animated_WithTransparency_Rgba32_animated_transparent_frame_norestore_loop.gif │ │ │ │ ├── 00.png │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ └── 03.png │ │ │ ├── Decode_Animated_WithTransparency_Rgba32_animated_transparent_frame_restoreprev_loop.gif │ │ │ │ ├── 00.png │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ └── 03.png │ │ │ ├── Decode_Animated_WithTransparency_Rgba32_animated_transparent_loop.gif │ │ │ │ ├── 00.png │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ └── 03.png │ │ │ ├── Decode_Issue2450_Rgba32_issue_2450.gif │ │ │ │ ├── 00.png │ │ │ │ ├── 08.png │ │ │ │ ├── 104.png │ │ │ │ ├── 112.png │ │ │ │ ├── 120.png │ │ │ │ ├── 128.png │ │ │ │ ├── 136.png │ │ │ │ ├── 144.png │ │ │ │ ├── 152.png │ │ │ │ ├── 16.png │ │ │ │ ├── 24.png │ │ │ │ ├── 32.png │ │ │ │ ├── 40.png │ │ │ │ ├── 48.png │ │ │ │ ├── 56.png │ │ │ │ ├── 64.png │ │ │ │ ├── 72.png │ │ │ │ ├── 80.png │ │ │ │ ├── 88.png │ │ │ │ └── 96.png │ │ │ ├── Decode_Issue2450_Rgba32_issue_2450_2.gif │ │ │ │ ├── 00.png │ │ │ │ ├── 08.png │ │ │ │ ├── 16.png │ │ │ │ ├── 24.png │ │ │ │ ├── 32.png │ │ │ │ ├── 40.png │ │ │ │ ├── 48.png │ │ │ │ ├── 56.png │ │ │ │ ├── 64.png │ │ │ │ ├── 72.png │ │ │ │ ├── 80.png │ │ │ │ ├── 88.png │ │ │ │ └── 96.png │ │ │ ├── Decode_Static_No_Animation_Rgba32_static_nontransparent.png │ │ │ ├── Decode_Static_No_Animation_Rgba32_static_transparent.png │ │ │ ├── Decode_VerifyAllFrames_Rgba32_giphy.gif │ │ │ │ ├── 00.png │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ └── 04.png │ │ │ ├── Decode_VerifyAllFrames_Rgba32_kumin.gif │ │ │ │ ├── 00.png │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ ├── 04.png │ │ │ │ ├── 05.png │ │ │ │ ├── 06.png │ │ │ │ ├── 07.png │ │ │ │ ├── 08.png │ │ │ │ ├── 09.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 22.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ └── 26.png │ │ │ ├── Decode_VerifyRootFrameAndFrameCount_Rgba32_m4nb.png │ │ │ ├── Decode_VerifyRootFrameAndFrameCount_Rgba32_mixed-disposal.png │ │ │ ├── Decode_VerifyRootFrameAndFrameCount_Rgba32_rings.png │ │ │ ├── GifDecoder_Decode_Resize_giphy_150_150.png │ │ │ ├── GifDecoder_IsNotBoundToSinglePixelType_Argb32_trans.png │ │ │ ├── GifDecoder_IsNotBoundToSinglePixelType_Rgba32_trans.png │ │ │ ├── GifDecoder_IsNotBoundToSinglePixelType_RgbaVector_trans.png │ │ │ ├── Issue1530_BadDescriptorDimensions_Rgba32_issue1530.gif │ │ │ │ ├── 00.png │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ ├── 04.png │ │ │ │ ├── 05.png │ │ │ │ ├── 06.png │ │ │ │ ├── 07.png │ │ │ │ └── 08.png │ │ │ ├── Issue1668_InvalidColorIndex_Rgba32_issue1668_invalidcolorindex.png │ │ │ ├── Issue1962_Rgba32_issue1962_tiniest_gif_1st.png │ │ │ ├── Issue2012BadMinCode_Rgba32_issue2012_drona1.png │ │ │ ├── Issue2012EmptyXmp_Rgba32_issue2012_Stronghold-Crusader-Extreme-Cover.png │ │ │ ├── Issue2758_BadDescriptorDimensions_Rgba32_issue_2758.gif │ │ │ │ ├── 00.png │ │ │ │ └── 01.png │ │ │ ├── Issue2859_LZWPixelStackOverflow_Rgba32_issue_2859_A.gif │ │ │ │ └── 00.png │ │ │ ├── Issue2859_LZWPixelStackOverflow_Rgba32_issue_2859_B.gif │ │ │ │ ├── 00.png │ │ │ │ └── 01.png │ │ │ ├── Issue405_BadApplicationExtensionBlockLength_Rgba32_issue405_badappextlength252-2.png │ │ │ ├── Issue405_BadApplicationExtensionBlockLength_Rgba32_issue405_badappextlength252.png │ │ │ ├── IssueDeferredClearCode_Rgba32_bugzilla-55918.png │ │ │ └── IssueTooLargeLzwBits_Rgba32_issue_2743.gif │ │ │ │ ├── 00.png │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ ├── 04.png │ │ │ │ ├── 05.png │ │ │ │ ├── 06.png │ │ │ │ └── 07.png │ │ ├── GifEncoderTests │ │ │ ├── EncodeGeneratedPatterns_Argb32_TestPattern100x100.gif │ │ │ ├── EncodeGeneratedPatterns_Rgba32_TestPattern100x100.gif │ │ │ ├── EncodeGeneratedPatterns_RgbaVector_TestPattern100x100.gif │ │ │ └── GifEncoder_CanDecode_AndEncode_Issue2866_Rgba32_issue_2866.gif │ │ │ │ ├── 00.gif │ │ │ │ ├── 08.gif │ │ │ │ ├── 104.gif │ │ │ │ ├── 112.gif │ │ │ │ ├── 16.gif │ │ │ │ ├── 24.gif │ │ │ │ ├── 32.gif │ │ │ │ ├── 40.gif │ │ │ │ ├── 48.gif │ │ │ │ ├── 56.gif │ │ │ │ ├── 64.gif │ │ │ │ ├── 72.gif │ │ │ │ ├── 80.gif │ │ │ │ ├── 88.gif │ │ │ │ └── 96.gif │ │ ├── HistogramEqualizationTests │ │ │ ├── Adaptive_SlidingWindow_15Tiles_WithClipping_Rgba32_AsianCarvingLowContrast.png │ │ │ ├── Adaptive_TileInterpolation_10Tiles_WithClipping_Rgba32_AsianCarvingLowContrast.png │ │ │ ├── AutoLevel_SeparateChannels_CompareToReferenceOutput_Rgba32_forest_bridge.png │ │ │ ├── AutoLevel_SynchronizedChannels_CompareToReferenceOutput_Rgba32_forest_bridge.png │ │ │ ├── GlobalHistogramEqualization_CompareToReferenceOutput_Rgba32_640px-Unequalized_Hawkes_Bay_NZ.png │ │ │ ├── Issue984_Rgb24_TestPattern110x110.png │ │ │ └── Issue984_Rgb24_TestPattern170x170.png │ │ ├── IccProfileConverterTests │ │ │ ├── CanConvertToSRGB_Momiji-AdobeRGB-yes.png │ │ │ ├── CanConvertToSRGB_Momiji-AppleRGB-yes.png │ │ │ ├── CanConvertToSRGB_Momiji-ColorMatch-yes.png │ │ │ ├── CanConvertToSRGB_Momiji-ProPhoto-yes.png │ │ │ ├── CanConvertToSRGB_Momiji-WideRGB-yes.png │ │ │ ├── CanConvertToSRGB_Momiji-sRGB-yes.png │ │ │ └── CanConvertToSRGB_issue-129.png │ │ ├── JpegDecoderTests │ │ │ ├── DecodeBaselineJpeg_Calliphora.png │ │ │ ├── DecodeBaselineJpeg_Issue373-safari-canvas.png │ │ │ ├── DecodeBaselineJpeg_Issue394-MultiHuffmanBaseline-Speakers.png │ │ │ ├── DecodeBaselineJpeg_Issue694-Decode-Exif-OutOfRange.png │ │ │ ├── DecodeBaselineJpeg_Issue695-Invalid-EOI.png │ │ │ ├── DecodeBaselineJpeg_Issue696-Resize-Exif-OutOfRange.png │ │ │ ├── DecodeBaselineJpeg_Issue721-InvalidAPP0.png │ │ │ ├── DecodeBaselineJpeg_Issue824-IndexOutOfRangeException-C.png │ │ │ ├── DecodeBaselineJpeg_Issue825-ArgumentOutOfRangeException-B.png │ │ │ ├── DecodeBaselineJpeg_Issue922-AccessViolationException.png │ │ │ ├── DecodeBaselineJpeg_MultiScanBaselineCMYK.png │ │ │ ├── DecodeBaselineJpeg_badeof.png │ │ │ ├── DecodeBaselineJpeg_badrst.png │ │ │ ├── DecodeBaselineJpeg_cmyk.png │ │ │ ├── DecodeBaselineJpeg_grayscale_sampling22.png │ │ │ ├── DecodeBaselineJpeg_issue-1076-invalid-subsampling.png │ │ │ ├── DecodeBaselineJpeg_issue750-exif-load.png │ │ │ ├── DecodeBaselineJpeg_issue750-exif-tranform.png │ │ │ ├── DecodeBaselineJpeg_issue855-incorrect-colorspace.png │ │ │ ├── DecodeBaselineJpeg_jpeg400jfif.png │ │ │ ├── DecodeBaselineJpeg_jpeg420small.png │ │ │ ├── DecodeBaselineJpeg_jpeg422.png │ │ │ ├── DecodeBaselineJpeg_jpeg444.png │ │ │ ├── DecodeBaselineJpeg_testorig.png │ │ │ ├── DecodeBaselineJpeg_testorig12.png │ │ │ ├── DecodeBaselineJpeg_turtle.png │ │ │ ├── DecodeBaselineJpeg_ycck-subsample-1222.png │ │ │ ├── DecodeBaselineJpeg_ycck.png │ │ │ ├── DecodeProgressiveJpeg_BadEofProgressive.png │ │ │ ├── DecodeProgressiveJpeg_ExifUndefType.png │ │ │ ├── DecodeProgressiveJpeg_Festzug.png │ │ │ ├── DecodeProgressiveJpeg_Issue159-MissingFF00-Progressive-Bedroom.png │ │ │ ├── DecodeProgressiveJpeg_Issue159-MissingFF00-Progressive-Girl.png │ │ │ ├── DecodeProgressiveJpeg_Issue178-BadCoeffsProgressive-Lemon.png │ │ │ ├── DecodeProgressiveJpeg_Issue385-BadZigZag-Progressive.png │ │ │ ├── DecodeProgressiveJpeg_Issue517-No-EOI-Progressive.png │ │ │ ├── DecodeProgressiveJpeg_Issue518-Bad-RST-Progressive.png │ │ │ ├── DecodeProgressiveJpeg_Issue624-DhtHasWrongLength-Progressive-N.png │ │ │ ├── DecodeProgressiveJpeg_Issue723-Ordered-Interleaved-Progressive-A.png │ │ │ ├── DecodeProgressiveJpeg_Issue723-Ordered-Interleaved-Progressive-B.png │ │ │ ├── DecodeProgressiveJpeg_Issue723-Ordered-Interleaved-Progressive-C.png │ │ │ ├── DecodeProgressiveJpeg_fb.png │ │ │ ├── DecodeProgressiveJpeg_progress.png │ │ │ ├── JpegDecoder_Decode_Resize_Bicubic_Calliphora_150_150.png │ │ │ ├── JpegDecoder_Decode_Resize_Calliphora_150_150.png │ │ │ ├── JpegDecoder_Decode_Specialized_Combined_Resize_Calliphora_150_150.png │ │ │ ├── JpegDecoder_Decode_Specialized_IDCT_Resize_Calliphora_150_150.png │ │ │ └── JpegDecoder_Decode_Specialized_Scale_Resize_Calliphora_150_150.png │ │ ├── Overlays │ │ │ ├── GlowTest │ │ │ │ ├── FullImage_ApplyColor_ducky_Blue.png │ │ │ │ ├── FullImage_ApplyColor_ducky_White.png │ │ │ │ ├── FullImage_ApplyColor_splash_Blue.png │ │ │ │ ├── FullImage_ApplyColor_splash_White.png │ │ │ │ ├── FullImage_ApplyRadius_ducky.png │ │ │ │ ├── FullImage_ApplyRadius_splash.png │ │ │ │ ├── InBox_Rgba32_ducky.png │ │ │ │ └── InBox_Rgba32_splash.png │ │ │ └── VignetteTest │ │ │ │ ├── FullImage_ApplyColor_ducky_Blue.png │ │ │ │ ├── FullImage_ApplyColor_ducky_White.png │ │ │ │ ├── FullImage_ApplyColor_splash_Blue.png │ │ │ │ ├── FullImage_ApplyColor_splash_White.png │ │ │ │ ├── FullImage_ApplyRadius_ducky.png │ │ │ │ ├── FullImage_ApplyRadius_splash.png │ │ │ │ ├── InBox_Rgba32_ducky.png │ │ │ │ └── InBox_Rgba32_splash.png │ │ ├── PbmDecoderTests │ │ │ ├── DecodeReferenceImage_L16_Gene-UP WebSocket RunImageMask.png │ │ │ ├── DecodeReferenceImage_L8_blackandwhite_binary.png │ │ │ ├── DecodeReferenceImage_L8_blackandwhite_plain.png │ │ │ ├── DecodeReferenceImage_L8_grayscale_plain.png │ │ │ ├── DecodeReferenceImage_L8_grayscale_plain_normalized.png │ │ │ ├── DecodeReferenceImage_L8_issue2477.png │ │ │ ├── DecodeReferenceImage_L8_rings.png │ │ │ ├── DecodeReferenceImage_Rgb24_00000_00000.png │ │ │ ├── DecodeReferenceImage_Rgb24_rgb_plain.png │ │ │ ├── DecodeReferenceImage_Rgb24_rgb_plain_normalized.png │ │ │ └── PbmDecoder_Decode_Resize_rgb_plain_150_150.png │ │ ├── PngDecoderTests │ │ │ ├── CanDecode_Issue2924_Rgba32_Issue_2924.png │ │ │ ├── Decode_VerifyAllFrames_Rgba32_12-dispose-prev-first.png │ │ │ │ ├── 00.png │ │ │ │ └── 01.png │ │ │ ├── Decode_VerifyAllFrames_Rgba32_14-dispose-background-before-region.png │ │ │ │ ├── 00.png │ │ │ │ └── 01.png │ │ │ ├── Decode_VerifyAllFrames_Rgba32_15-dispose-background-region.png │ │ │ │ ├── 00.png │ │ │ │ ├── 01.png │ │ │ │ └── 02.png │ │ │ ├── Decode_VerifyAllFrames_Rgba32_21-blend-over-multiple.png │ │ │ │ ├── 00.png │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ ├── 04.png │ │ │ │ ├── 05.png │ │ │ │ ├── 06.png │ │ │ │ ├── 07.png │ │ │ │ ├── 08.png │ │ │ │ ├── 104.png │ │ │ │ ├── 112.png │ │ │ │ ├── 120.png │ │ │ │ ├── 128.png │ │ │ │ ├── 16.png │ │ │ │ ├── 24.png │ │ │ │ ├── 32.png │ │ │ │ ├── 40.png │ │ │ │ ├── 48.png │ │ │ │ ├── 56.png │ │ │ │ ├── 64.png │ │ │ │ ├── 72.png │ │ │ │ ├── 80.png │ │ │ │ ├── 88.png │ │ │ │ └── 96.png │ │ │ ├── Decode_VerifyAllFrames_Rgba32_4-split-idat-zero-length.png │ │ │ │ └── 00.png │ │ │ ├── Decode_VerifyAllFrames_Rgba32_7-dispose-none.png │ │ │ │ ├── 00.png │ │ │ │ ├── 01.png │ │ │ │ └── 02.png │ │ │ ├── Decode_VerifyAllFrames_Rgba32_8-dispose-background.png │ │ │ │ ├── 00.png │ │ │ │ ├── 01.png │ │ │ │ └── 02.png │ │ │ ├── Decode_VerifyAllFrames_Rgba32_apng.png │ │ │ │ ├── 00.png │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ └── 04.png │ │ │ ├── Decode_VerifyAllFrames_Rgba32_default-not-animated.png │ │ │ │ ├── 00.png │ │ │ │ └── 01.png │ │ │ ├── Decode_VerifyAllFrames_Rgba32_frame-offset.png │ │ │ │ ├── 00.png │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ └── 04.png │ │ │ ├── PngDecoder_Decode_Resize_ScalarResizeKernel_splash_150_150.png │ │ │ └── PngDecoder_Decode_Resize_splash_150_150.png │ │ ├── PngEncoderTests │ │ │ ├── Encode_AnimatedFormatTransform_FromGif_Rgba32_issue_2866.gif │ │ │ │ ├── 00.png │ │ │ │ ├── 08.png │ │ │ │ ├── 104.png │ │ │ │ ├── 112.png │ │ │ │ ├── 16.png │ │ │ │ ├── 24.png │ │ │ │ ├── 32.png │ │ │ │ ├── 40.png │ │ │ │ ├── 48.png │ │ │ │ ├── 56.png │ │ │ │ ├── 64.png │ │ │ │ ├── 72.png │ │ │ │ ├── 80.png │ │ │ │ ├── 88.png │ │ │ │ └── 96.png │ │ │ ├── Encode_AnimatedFormatTransform_FromGif_Rgba32_leo.gif │ │ │ │ ├── 00.png │ │ │ │ └── 08.png │ │ │ ├── IsNotBoundToSinglePixelType_Bgra32_TestPattern24x24_Grayscale.png │ │ │ ├── IsNotBoundToSinglePixelType_Bgra32_TestPattern24x24_GrayscaleWithAlpha.png │ │ │ ├── IsNotBoundToSinglePixelType_Bgra32_TestPattern24x24_Rgb.png │ │ │ ├── IsNotBoundToSinglePixelType_Bgra32_TestPattern24x24_RgbWithAlpha.png │ │ │ ├── IsNotBoundToSinglePixelType_Rgb24_TestPattern24x24_Grayscale.png │ │ │ ├── IsNotBoundToSinglePixelType_Rgb24_TestPattern24x24_GrayscaleWithAlpha.png │ │ │ ├── IsNotBoundToSinglePixelType_Rgb24_TestPattern24x24_Rgb.png │ │ │ ├── IsNotBoundToSinglePixelType_Rgb24_TestPattern24x24_RgbWithAlpha.png │ │ │ ├── IsNotBoundToSinglePixelType_Rgba32_TestPattern24x24_Grayscale.png │ │ │ ├── IsNotBoundToSinglePixelType_Rgba32_TestPattern24x24_GrayscaleWithAlpha.png │ │ │ ├── IsNotBoundToSinglePixelType_Rgba32_TestPattern24x24_Rgb.png │ │ │ ├── IsNotBoundToSinglePixelType_Rgba32_TestPattern24x24_RgbWithAlpha.png │ │ │ ├── Issue2469_Quantized_Encode_Artifacts_Rgba32_issue_2469.png │ │ │ ├── Issue2668_Quantized_Encode_Alpha_Rgba32_Issue_2668.png │ │ │ ├── PaletteColorType_WuQuantizer_palette-8bpp__PaletteSize-100.png │ │ │ ├── PaletteColorType_WuQuantizer_palette-8bpp__PaletteSize-120.png │ │ │ ├── PaletteColorType_WuQuantizer_palette-8bpp__PaletteSize-230.png │ │ │ ├── PaletteColorType_WuQuantizer_palette-8bpp__PaletteSize-80.png │ │ │ ├── WorksWithAllCompressionLevels_TestPattern24x24__C1.png │ │ │ ├── WorksWithAllCompressionLevels_TestPattern24x24__C2.png │ │ │ ├── WorksWithAllCompressionLevels_TestPattern24x24__C3.png │ │ │ ├── WorksWithAllCompressionLevels_TestPattern24x24__C4.png │ │ │ ├── WorksWithAllCompressionLevels_TestPattern24x24__C5.png │ │ │ ├── WorksWithAllCompressionLevels_TestPattern24x24__C6.png │ │ │ ├── WorksWithAllCompressionLevels_TestPattern24x24__C7.png │ │ │ ├── WorksWithAllCompressionLevels_TestPattern24x24__C8.png │ │ │ ├── WorksWithAllCompressionLevels_TestPattern24x24__C9.png │ │ │ ├── WorksWithAllFilterMethods_TestPattern24x24_Adaptive.png │ │ │ ├── WorksWithAllFilterMethods_TestPattern24x24_Average.png │ │ │ ├── WorksWithAllFilterMethods_TestPattern24x24_None.png │ │ │ ├── WorksWithAllFilterMethods_TestPattern24x24_Paeth.png │ │ │ ├── WorksWithAllFilterMethods_TestPattern24x24_Sub.png │ │ │ ├── WorksWithAllFilterMethods_TestPattern24x24_Up.png │ │ │ ├── WorksWithDifferentSizes_Solid1x1_(255,100,50,255)_Grayscale.png │ │ │ ├── WorksWithDifferentSizes_Solid1x1_(255,100,50,255)_GrayscaleWithAlpha.png │ │ │ ├── WorksWithDifferentSizes_Solid1x1_(255,100,50,255)_Rgb.png │ │ │ ├── WorksWithDifferentSizes_Solid1x1_(255,100,50,255)_RgbWithAlpha.png │ │ │ ├── WorksWithDifferentSizes_TestPattern47x8_Grayscale.png │ │ │ ├── WorksWithDifferentSizes_TestPattern47x8_GrayscaleWithAlpha.png │ │ │ ├── WorksWithDifferentSizes_TestPattern47x8_Rgb.png │ │ │ ├── WorksWithDifferentSizes_TestPattern47x8_RgbWithAlpha.png │ │ │ ├── WorksWithDifferentSizes_TestPattern48x24_Grayscale.png │ │ │ ├── WorksWithDifferentSizes_TestPattern48x24_GrayscaleWithAlpha.png │ │ │ ├── WorksWithDifferentSizes_TestPattern48x24_Rgb.png │ │ │ ├── WorksWithDifferentSizes_TestPattern48x24_RgbWithAlpha.png │ │ │ ├── WorksWithDifferentSizes_TestPattern49x7_Grayscale.png │ │ │ ├── WorksWithDifferentSizes_TestPattern49x7_GrayscaleWithAlpha.png │ │ │ ├── WorksWithDifferentSizes_TestPattern49x7_Rgb.png │ │ │ ├── WorksWithDifferentSizes_TestPattern49x7_RgbWithAlpha.png │ │ │ ├── WorksWithDifferentSizes_TestPattern7x5_Grayscale.png │ │ │ ├── WorksWithDifferentSizes_TestPattern7x5_GrayscaleWithAlpha.png │ │ │ ├── WorksWithDifferentSizes_TestPattern7x5_Rgb.png │ │ │ ├── WorksWithDifferentSizes_TestPattern7x5_RgbWithAlpha.png │ │ │ ├── WorksWithDifferentSizes_palette-8bpp_Grayscale.png │ │ │ ├── WorksWithDifferentSizes_palette-8bpp_GrayscaleWithAlpha.png │ │ │ ├── WorksWithDifferentSizes_palette-8bpp_Rgb.png │ │ │ └── WorksWithDifferentSizes_palette-8bpp_RgbWithAlpha.png │ │ ├── PorterDuffCompositorTests │ │ │ ├── PorterDuffOutputIsCorrect_Rgba32_pd-dest_Atop.png │ │ │ ├── PorterDuffOutputIsCorrect_Rgba32_pd-dest_Clear.png │ │ │ ├── PorterDuffOutputIsCorrect_Rgba32_pd-dest_Dest.png │ │ │ ├── PorterDuffOutputIsCorrect_Rgba32_pd-dest_DestAtop.png │ │ │ ├── PorterDuffOutputIsCorrect_Rgba32_pd-dest_DestIn.png │ │ │ ├── PorterDuffOutputIsCorrect_Rgba32_pd-dest_DestOut.png │ │ │ ├── PorterDuffOutputIsCorrect_Rgba32_pd-dest_DestOver.png │ │ │ ├── PorterDuffOutputIsCorrect_Rgba32_pd-dest_In.png │ │ │ ├── PorterDuffOutputIsCorrect_Rgba32_pd-dest_Out.png │ │ │ ├── PorterDuffOutputIsCorrect_Rgba32_pd-dest_Over.png │ │ │ ├── PorterDuffOutputIsCorrect_Rgba32_pd-dest_Src.png │ │ │ ├── PorterDuffOutputIsCorrect_Rgba32_pd-dest_Xor.png │ │ │ └── Set1 │ │ │ │ ├── AlphaComposition_100_100-Clear.png │ │ │ │ ├── AlphaComposition_100_100-Dest.png │ │ │ │ ├── AlphaComposition_100_100-DestAtop.png │ │ │ │ ├── AlphaComposition_100_100-DestIn.png │ │ │ │ ├── AlphaComposition_100_100-DestOut.png │ │ │ │ ├── AlphaComposition_100_100-DestOver.png │ │ │ │ ├── AlphaComposition_100_100-Src.png │ │ │ │ ├── AlphaComposition_100_100-SrcAtop.png │ │ │ │ ├── AlphaComposition_100_100-SrcIn.png │ │ │ │ ├── AlphaComposition_100_100-SrcOut.png │ │ │ │ ├── AlphaComposition_100_100-SrcOver.png │ │ │ │ ├── AlphaComposition_100_100-Xor.png │ │ │ │ ├── AlphaComposition_50_50-Clear.png │ │ │ │ ├── AlphaComposition_50_50-Dest.png │ │ │ │ ├── AlphaComposition_50_50-DestAtop.png │ │ │ │ ├── AlphaComposition_50_50-DestIn.png │ │ │ │ ├── AlphaComposition_50_50-DestOut.png │ │ │ │ ├── AlphaComposition_50_50-DestOver.png │ │ │ │ ├── AlphaComposition_50_50-Src.png │ │ │ │ ├── AlphaComposition_50_50-SrcAtop.png │ │ │ │ ├── AlphaComposition_50_50-SrcIn.png │ │ │ │ ├── AlphaComposition_50_50-SrcOut.png │ │ │ │ ├── AlphaComposition_50_50-SrcOver.png │ │ │ │ ├── AlphaComposition_50_50-Xor.png │ │ │ │ ├── ColorBlending_100_100-Add.png │ │ │ │ ├── ColorBlending_100_100-Darken.png │ │ │ │ ├── ColorBlending_100_100-HardLight.png │ │ │ │ ├── ColorBlending_100_100-Lighten.png │ │ │ │ ├── ColorBlending_100_100-Multiply.png │ │ │ │ ├── ColorBlending_100_100-Normal.png │ │ │ │ ├── ColorBlending_100_100-Overlay.png │ │ │ │ ├── ColorBlending_100_100-Screen.png │ │ │ │ ├── ColorBlending_100_100-Subtract.png │ │ │ │ ├── ColorBlending_50_50-Add.png │ │ │ │ ├── ColorBlending_50_50-Darken.png │ │ │ │ ├── ColorBlending_50_50-HardLight.png │ │ │ │ ├── ColorBlending_50_50-Lighten.png │ │ │ │ ├── ColorBlending_50_50-Multiply.png │ │ │ │ ├── ColorBlending_50_50-Normal.png │ │ │ │ ├── ColorBlending_50_50-Overlay.png │ │ │ │ ├── ColorBlending_50_50-Screen.png │ │ │ │ ├── ColorBlending_50_50-Subtract.png │ │ │ │ ├── DEST.png │ │ │ │ └── SRC.png │ │ ├── ProjectiveTransformTests │ │ │ ├── Identity_Rgba32_TestPattern100x100.png │ │ │ ├── PerspectiveTransformMatchesCSS_Rgba32_Solid290x154_(0,0,255,255).png │ │ │ ├── RawTransformMatchesDocumentedExample_Rgba32_Solid100x100_(0,0,255,255).png │ │ │ ├── Transform_WithQuadDistortion_Rgba32_TestPattern150x150_PointF [ X=-50, Y=-50 ]-PointF [ X=200, Y=-50 ]-PointF [ X=200, Y=200 ]-PointF [ X=-50, Y=200 ].png │ │ │ ├── Transform_WithQuadDistortion_Rgba32_TestPattern150x150_PointF [ X=0, Y=0 ]-PointF [ X=150, Y=0 ]-PointF [ X=150, Y=150 ]-PointF [ X=0, Y=150 ].png │ │ │ ├── Transform_WithQuadDistortion_Rgba32_TestPattern150x150_PointF [ X=150, Y=0 ]-PointF [ X=150, Y=150 ]-PointF [ X=0, Y=150 ]-PointF [ X=0, Y=0 ].png │ │ │ ├── Transform_WithQuadDistortion_Rgba32_TestPattern150x150_PointF [ X=25, Y=50 ]-PointF [ X=210, Y=25 ]-PointF [ X=140, Y=210 ]-PointF [ X=15, Y=125 ].png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_Bicubic.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_Box.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_CatmullRom.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_Hermite.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_Lanczos2.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_Lanczos3.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_Lanczos5.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_Lanczos8.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_MitchellNetravali.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_NearestNeighbor.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_Robidoux.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_RobidouxSharp.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_Spline.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_Triangle.png │ │ │ ├── Transform_WithSampler_Rgba32_TestPattern150x150_Welch.png │ │ │ ├── Transform_WithTaperMatrix_Rgba32_Solid30x30_(255,0,0,255)_Bottom-Both.png │ │ │ ├── Transform_WithTaperMatrix_Rgba32_Solid30x30_(255,0,0,255)_Bottom-LeftOrTop.png │ │ │ ├── Transform_WithTaperMatrix_Rgba32_Solid30x30_(255,0,0,255)_Bottom-RightOrBottom.png │ │ │ ├── Transform_WithTaperMatrix_Rgba32_Solid30x30_(255,0,0,255)_Left-Both.png │ │ │ ├── Transform_WithTaperMatrix_Rgba32_Solid30x30_(255,0,0,255)_Left-LeftOrTop.png │ │ │ ├── Transform_WithTaperMatrix_Rgba32_Solid30x30_(255,0,0,255)_Left-RightOrBottom.png │ │ │ ├── Transform_WithTaperMatrix_Rgba32_Solid30x30_(255,0,0,255)_Right-Both.png │ │ │ ├── Transform_WithTaperMatrix_Rgba32_Solid30x30_(255,0,0,255)_Right-LeftOrTop.png │ │ │ ├── Transform_WithTaperMatrix_Rgba32_Solid30x30_(255,0,0,255)_Right-RightOrBottom.png │ │ │ ├── Transform_WithTaperMatrix_Rgba32_Solid30x30_(255,0,0,255)_Top-Both.png │ │ │ ├── Transform_WithTaperMatrix_Rgba32_Solid30x30_(255,0,0,255)_Top-LeftOrTop.png │ │ │ ├── Transform_WithTaperMatrix_Rgba32_Solid30x30_(255,0,0,255)_Top-RightOrBottom.png │ │ │ ├── Transform_With_Custom_Dimensions_Rgba32_TestPattern100x100_0.0001.png │ │ │ ├── Transform_With_Custom_Dimensions_Rgba32_TestPattern100x100_0.png │ │ │ └── Transform_With_Custom_Dimensions_Rgba32_TestPattern100x100_57.png │ │ ├── QoiDecoderTests │ │ │ ├── Decode_Rgba32_dice.png │ │ │ ├── Decode_Rgba32_edgecase.png │ │ │ ├── Decode_Rgba32_kodim10.png │ │ │ ├── Decode_Rgba32_kodim23.png │ │ │ ├── Decode_Rgba32_qoi_logo.png │ │ │ ├── Decode_Rgba32_testcard.png │ │ │ ├── Decode_Rgba32_testcard_rgba.png │ │ │ └── Decode_Rgba32_wikipedia_008.png │ │ ├── QuantizerTests │ │ │ ├── ApplyQuantizationInBox_Bike_OctreeQuantizer_ErrorDither.png │ │ │ ├── ApplyQuantizationInBox_Bike_OctreeQuantizer_NoDither.png │ │ │ ├── ApplyQuantizationInBox_Bike_OctreeQuantizer_OrderedDither.png │ │ │ ├── ApplyQuantizationInBox_Bike_WebSafePaletteQuantizer_ErrorDither.png │ │ │ ├── ApplyQuantizationInBox_Bike_WebSafePaletteQuantizer_NoDither.png │ │ │ ├── ApplyQuantizationInBox_Bike_WebSafePaletteQuantizer_OrderedDither.png │ │ │ ├── ApplyQuantizationInBox_Bike_WernerPaletteQuantizer_ErrorDither.png │ │ │ ├── ApplyQuantizationInBox_Bike_WernerPaletteQuantizer_NoDither.png │ │ │ ├── ApplyQuantizationInBox_Bike_WernerPaletteQuantizer_OrderedDither.png │ │ │ ├── ApplyQuantizationInBox_Bike_WuQuantizer_ErrorDither.png │ │ │ ├── ApplyQuantizationInBox_Bike_WuQuantizer_NoDither.png │ │ │ ├── ApplyQuantizationInBox_Bike_WuQuantizer_OrderedDither.png │ │ │ ├── ApplyQuantizationInBox_CalliphoraPartial_OctreeQuantizer_ErrorDither.png │ │ │ ├── ApplyQuantizationInBox_CalliphoraPartial_OctreeQuantizer_NoDither.png │ │ │ ├── ApplyQuantizationInBox_CalliphoraPartial_OctreeQuantizer_OrderedDither.png │ │ │ ├── ApplyQuantizationInBox_CalliphoraPartial_WebSafePaletteQuantizer_ErrorDither.png │ │ │ ├── ApplyQuantizationInBox_CalliphoraPartial_WebSafePaletteQuantizer_NoDither.png │ │ │ ├── ApplyQuantizationInBox_CalliphoraPartial_WebSafePaletteQuantizer_OrderedDither.png │ │ │ ├── ApplyQuantizationInBox_CalliphoraPartial_WernerPaletteQuantizer_ErrorDither.png │ │ │ ├── ApplyQuantizationInBox_CalliphoraPartial_WernerPaletteQuantizer_NoDither.png │ │ │ ├── ApplyQuantizationInBox_CalliphoraPartial_WernerPaletteQuantizer_OrderedDither.png │ │ │ ├── ApplyQuantizationInBox_CalliphoraPartial_WuQuantizer_ErrorDither.png │ │ │ ├── ApplyQuantizationInBox_CalliphoraPartial_WuQuantizer_NoDither.png │ │ │ ├── ApplyQuantizationInBox_CalliphoraPartial_WuQuantizer_OrderedDither.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_OctreeQuantizer_ErrorDither_0.25.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_OctreeQuantizer_ErrorDither_0.5.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_OctreeQuantizer_ErrorDither_0.75.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_OctreeQuantizer_ErrorDither_0.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_OctreeQuantizer_ErrorDither_1.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_OctreeQuantizer_OrderedDither_0.25.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_OctreeQuantizer_OrderedDither_0.5.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_OctreeQuantizer_OrderedDither_0.75.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_OctreeQuantizer_OrderedDither_0.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_OctreeQuantizer_OrderedDither_1.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WebSafePaletteQuantizer_ErrorDither_0.25.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WebSafePaletteQuantizer_ErrorDither_0.5.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WebSafePaletteQuantizer_ErrorDither_0.75.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WebSafePaletteQuantizer_ErrorDither_0.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WebSafePaletteQuantizer_ErrorDither_1.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WebSafePaletteQuantizer_OrderedDither_0.25.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WebSafePaletteQuantizer_OrderedDither_0.5.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WebSafePaletteQuantizer_OrderedDither_0.75.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WebSafePaletteQuantizer_OrderedDither_0.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WebSafePaletteQuantizer_OrderedDither_1.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WernerPaletteQuantizer_ErrorDither_0.25.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WernerPaletteQuantizer_ErrorDither_0.5.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WernerPaletteQuantizer_ErrorDither_0.75.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WernerPaletteQuantizer_ErrorDither_0.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WernerPaletteQuantizer_ErrorDither_1.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WernerPaletteQuantizer_OrderedDither_0.25.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WernerPaletteQuantizer_OrderedDither_0.5.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WernerPaletteQuantizer_OrderedDither_0.75.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WernerPaletteQuantizer_OrderedDither_0.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WernerPaletteQuantizer_OrderedDither_1.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WuQuantizer_ErrorDither_0.25.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WuQuantizer_ErrorDither_0.5.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WuQuantizer_ErrorDither_0.75.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WuQuantizer_ErrorDither_0.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WuQuantizer_ErrorDither_1.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WuQuantizer_OrderedDither_0.25.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WuQuantizer_OrderedDither_0.5.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WuQuantizer_OrderedDither_0.75.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WuQuantizer_OrderedDither_0.png │ │ │ ├── ApplyQuantizationWithDitheringScale_david_WuQuantizer_OrderedDither_1.png │ │ │ ├── ApplyQuantization_Bike_OctreeQuantizer_ErrorDither.png │ │ │ ├── ApplyQuantization_Bike_OctreeQuantizer_NoDither.png │ │ │ ├── ApplyQuantization_Bike_OctreeQuantizer_OrderedDither.png │ │ │ ├── ApplyQuantization_Bike_WebSafePaletteQuantizer_ErrorDither.png │ │ │ ├── ApplyQuantization_Bike_WebSafePaletteQuantizer_NoDither.png │ │ │ ├── ApplyQuantization_Bike_WebSafePaletteQuantizer_OrderedDither.png │ │ │ ├── ApplyQuantization_Bike_WernerPaletteQuantizer_ErrorDither.png │ │ │ ├── ApplyQuantization_Bike_WernerPaletteQuantizer_NoDither.png │ │ │ ├── ApplyQuantization_Bike_WernerPaletteQuantizer_OrderedDither.png │ │ │ ├── ApplyQuantization_Bike_WuQuantizer_ErrorDither.png │ │ │ ├── ApplyQuantization_Bike_WuQuantizer_NoDither.png │ │ │ ├── ApplyQuantization_Bike_WuQuantizer_OrderedDither.png │ │ │ ├── ApplyQuantization_CalliphoraPartial_OctreeQuantizer_ErrorDither.png │ │ │ ├── ApplyQuantization_CalliphoraPartial_OctreeQuantizer_NoDither.png │ │ │ ├── ApplyQuantization_CalliphoraPartial_OctreeQuantizer_OrderedDither.png │ │ │ ├── ApplyQuantization_CalliphoraPartial_WebSafePaletteQuantizer_ErrorDither.png │ │ │ ├── ApplyQuantization_CalliphoraPartial_WebSafePaletteQuantizer_NoDither.png │ │ │ ├── ApplyQuantization_CalliphoraPartial_WebSafePaletteQuantizer_OrderedDither.png │ │ │ ├── ApplyQuantization_CalliphoraPartial_WernerPaletteQuantizer_ErrorDither.png │ │ │ ├── ApplyQuantization_CalliphoraPartial_WernerPaletteQuantizer_NoDither.png │ │ │ ├── ApplyQuantization_CalliphoraPartial_WernerPaletteQuantizer_OrderedDither.png │ │ │ ├── ApplyQuantization_CalliphoraPartial_WuQuantizer_ErrorDither.png │ │ │ ├── ApplyQuantization_CalliphoraPartial_WuQuantizer_NoDither.png │ │ │ └── ApplyQuantization_CalliphoraPartial_WuQuantizer_OrderedDither.png │ │ ├── ResizeTests │ │ │ ├── CanResizeLargeImageWithCropMode_issue1006-incorrect-resize.png │ │ │ ├── Issue1625_LimitedAllocator.png │ │ │ ├── LargeImage_TestPattern4000x4000.png │ │ │ ├── ResizeFromSourceRectangle_CalliphoraPartial.png │ │ │ ├── ResizeHeightAndKeepAspect_CalliphoraPartial.png │ │ │ ├── ResizeWidthAndKeepAspect_CalliphoraPartial.png │ │ │ ├── ResizeWithBoxPadMode_CalliphoraPartial.png │ │ │ ├── ResizeWithCropHeightMode_CalliphoraPartial.png │ │ │ ├── ResizeWithCropWidthMode_CalliphoraPartial.png │ │ │ ├── ResizeWithMaxMode_CalliphoraPartial.png │ │ │ ├── ResizeWithMinMode_CalliphoraPartial.png │ │ │ ├── ResizeWithPadMode_CalliphoraPartial.png │ │ │ ├── ResizeWithStretchMode_CalliphoraPartial.png │ │ │ ├── Resize_BasicSmall_BasicTestPattern15x12_(2÷3,1÷2).png │ │ │ ├── Resize_BasicSmall_BasicTestPattern2x256_(1÷1,1÷8).png │ │ │ ├── Resize_BasicSmall_BasicTestPattern2x32_(1÷1,1÷2).png │ │ │ ├── Resize_Compand_Rgba32_TestPattern100x100.png │ │ │ ├── Resize_DoesNotBleedAlphaPixels.png │ │ │ ├── Resize_DoesNotBleedAlphaPixels_Compand.png │ │ │ ├── Resize_IsAppliedToAllFrames_Rgba32_giphy.gif │ │ │ ├── Resize_IsNotBoundToSinglePixelType_Bgr24_TestPattern50x50.png │ │ │ ├── Resize_IsNotBoundToSinglePixelType_Bgra32_TestPattern50x50.png │ │ │ ├── Resize_IsNotBoundToSinglePixelType_Rgba32_TestPattern50x50.png │ │ │ ├── Resize_IsNotBoundToSinglePixelType_RgbaVector_TestPattern50x50.png │ │ │ ├── Resize_PremultiplyAlpha_Off.png │ │ │ ├── Resize_PremultiplyAlpha_On.png │ │ │ ├── Resize_WorksWithAllParallelismLevels_MDP-1.png │ │ │ ├── Resize_WorksWithAllParallelismLevels_MDP1.png │ │ │ ├── Resize_WorksWithAllParallelismLevels_MDP4.png │ │ │ ├── Resize_WorksWithAllParallelismLevels_MDP8.png │ │ │ ├── Resize_WorksWithAllResamplers_CalliphoraPartial_Bicubic-0.3.png │ │ │ ├── Resize_WorksWithAllResamplers_CalliphoraPartial_Bicubic-0.5.png │ │ │ ├── Resize_WorksWithAllResamplers_CalliphoraPartial_Bicubic-1.8.png │ │ │ ├── Resize_WorksWithAllResamplers_CalliphoraPartial_Box-0.3.png │ │ │ ├── Resize_WorksWithAllResamplers_CalliphoraPartial_Box-0.5.png │ │ │ ├── Resize_WorksWithAllResamplers_CalliphoraPartial_Box-1.8.png │ │ │ ├── Resize_WorksWithAllResamplers_CalliphoraPartial_CatmullRom-0.5.png │ │ │ ├── Resize_WorksWithAllResamplers_CalliphoraPartial_Hermite-0.5.png │ │ │ ├── Resize_WorksWithAllResamplers_CalliphoraPartial_Lanczos2-0.5.png │ │ │ ├── Resize_WorksWithAllResamplers_CalliphoraPartial_Lanczos3-0.5.png │ │ │ ├── Resize_WorksWithAllResamplers_CalliphoraPartial_Lanczos5-0.3.png │ │ │ ├── Resize_WorksWithAllResamplers_CalliphoraPartial_Lanczos5-0.5.png │ │ │ ├── Resize_WorksWithAllResamplers_CalliphoraPartial_Lanczos5-1.8.png │ │ │ ├── Resize_WorksWithAllResamplers_CalliphoraPartial_Lanczos8-0.5.png │ │ │ ├── Resize_WorksWithAllResamplers_CalliphoraPartial_MitchellNetravali-0.5.png │ │ │ ├── Resize_WorksWithAllResamplers_CalliphoraPartial_NearestNeighbor-0.3.png │ │ │ ├── Resize_WorksWithAllResamplers_CalliphoraPartial_NearestNeighbor-0.5.png │ │ │ ├── Resize_WorksWithAllResamplers_CalliphoraPartial_NearestNeighbor-1.8.png │ │ │ ├── Resize_WorksWithAllResamplers_CalliphoraPartial_Robidoux-0.5.png │ │ │ ├── Resize_WorksWithAllResamplers_CalliphoraPartial_RobidouxSharp-0.5.png │ │ │ ├── Resize_WorksWithAllResamplers_CalliphoraPartial_Spline-0.5.png │ │ │ ├── Resize_WorksWithAllResamplers_CalliphoraPartial_Triangle-0.5.png │ │ │ ├── Resize_WorksWithAllResamplers_CalliphoraPartial_Welch-0.5.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern100x100_Bicubic-0.5.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern100x100_Bicubic-1.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern100x100_Box-0.5.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern100x100_Box-1.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern100x100_Lanczos5-0.5.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern100x100_Lanczos5-1.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern100x100_NearestNeighbor-0.5.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern100x100_NearestNeighbor-1.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern201x199_Bicubic-100x99.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern201x199_Box-100x99.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern201x199_Lanczos5-100x99.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern201x199_NearestNeighbor-100x99.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern301x1180_Bicubic-300x480.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern301x1180_Box-300x480.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern301x1180_Lanczos5-300x480.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern301x1180_NearestNeighbor-300x480.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern49x80_Bicubic-301x100.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern49x80_Box-301x100.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern49x80_Lanczos5-301x100.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern49x80_NearestNeighbor-301x100.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern50x50_Bicubic-8.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern50x50_Box-8.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern50x50_Lanczos5-8.png │ │ │ ├── Resize_WorksWithAllResamplers_TestPattern50x50_NearestNeighbor-8.png │ │ │ ├── WorkingBufferSizeHintInBytes_IsAppliedCorrectly_TestPattern100x100_50.png │ │ │ ├── WorkingBufferSizeHintInBytes_IsAppliedCorrectly_TestPattern100x100_60.png │ │ │ ├── WorkingBufferSizeHintInBytes_IsAppliedCorrectly_TestPattern100x400_110.png │ │ │ ├── WorkingBufferSizeHintInBytes_IsAppliedCorrectly_TestPattern23x211_31.png │ │ │ ├── WorkingBufferSizeHintInBytes_IsAppliedCorrectly_TestPattern47x193_73.png │ │ │ ├── WorkingBufferSizeHintInBytes_IsAppliedCorrectly_TestPattern79x97_5.png │ │ │ └── WorkingBufferSizeHintInBytes_IsAppliedCorrectly_TestPattern79x97_73.png │ │ ├── TestImageExtensionsTests │ │ │ ├── CompareToReferenceOutput_DoNotAppendPixelType_Solid10x10_(0,0,255,255).png │ │ │ ├── CompareToReferenceOutput_WhenReferenceOutputDoesNotMatch_Throws_Rgba32_Solid10x10_(0,0,255,255).png │ │ │ └── CompareToReferenceOutput_WhenReferenceOutputMatches_ShouldNotThrow_Rgba32_Solid10x10_(0,0,255,255).png │ │ ├── TgaDecoderTests │ │ │ ├── TgaDecoder_CanDecode_Gray_16Bit_Rgba32_grayscale_a_UL.png │ │ │ ├── TgaDecoder_CanDecode_Gray_WithBottomLeftOrigin_16Bit_Rgba32_grayscale_a_LL.png │ │ │ ├── TgaDecoder_CanDecode_Gray_WithBottomRightOrigin_16Bit_Rgba32_grayscale_a_LR.png │ │ │ ├── TgaDecoder_CanDecode_Gray_WithTopRightOrigin_16Bit_Rgba32_grayscale_a_UR.png │ │ │ ├── TgaDecoder_CanDecode_RunLengthEncoded_Gray_16Bit_Rgba32_grayscale_a_rle_UL.png │ │ │ ├── TgaDecoder_CanDecode_RunLengthEncoded_Gray_WithBottomLeftOrigin_16Bit_Rgba32_grayscale_a_rle_LL.png │ │ │ ├── TgaDecoder_CanDecode_RunLengthEncoded_Gray_WithBottomRightOrigin_16Bit_Rgba32_grayscale_a_rle_LR.png │ │ │ ├── TgaDecoder_CanDecode_RunLengthEncoded_Gray_WithTopRightOrigin_16Bit_Rgba32_grayscale_a_rle_UR.png │ │ │ └── TgaDecoder_Decode_Resize_rgb_a_rle_UL_150_150.png │ │ ├── TiffDecoderTests │ │ │ ├── TiffDecoder_CanDecode_CieLab_Rgba32_CieLab.png │ │ │ ├── TiffDecoder_CanDecode_CieLab_Rgba32_CieLabPlanar.png │ │ │ ├── TiffDecoder_CanDecode_CieLab_Rgba32_CieLab_lzwcompressed_predictor.png │ │ │ ├── TiffDecoder_CanDecode_Cmyk_Rgba32_Cmyk-lzw-predictor.png │ │ │ ├── TiffDecoder_CanDecode_Cmyk_Rgba32_Cmyk.png │ │ │ ├── TiffDecoder_CanDecode_JpegCompressedWithIssue2679_Issue2679.png │ │ │ ├── TiffDecoder_CanDecode_TiledWithBadZlib_tiled-0000023664.png │ │ │ ├── TiffDecoder_CanDecode_YCbCr_24Bit_Rgba32_flower-ycbcr-contig-08_h1v1.png │ │ │ ├── TiffDecoder_CanDecode_YCbCr_24Bit_Rgba32_flower-ycbcr-contig-08_h2v1.png │ │ │ ├── TiffDecoder_CanDecode_YCbCr_24Bit_Rgba32_flower-ycbcr-contig-08_h2v2.png │ │ │ ├── TiffDecoder_CanDecode_YCbCr_24Bit_Rgba32_flower-ycbcr-contig-08_h4v4.png │ │ │ ├── TiffDecoder_CanDecode_YCbCr_24Bit_Rgba32_flower-ycbcr-planar-08_h1v1.png │ │ │ ├── TiffDecoder_CanDecode_YCbCr_24Bit_Rgba32_rgb-ycbcr-contig-08_h2v2.png │ │ │ ├── TiffDecoder_CanDecode_YCbCr_24Bit_Rgba32_rgb-ycbcr-contig-08_h4v4.png │ │ │ └── TiffDecoder_Decode_Resize_RgbaUnassociatedAlpha3bit_150_150.png │ │ ├── Transforms │ │ │ ├── AutoOrientTests │ │ │ │ ├── AutoOrient_WorksForAllExifOrientations_F_0.png │ │ │ │ ├── AutoOrient_WorksForAllExifOrientations_F_1.png │ │ │ │ ├── AutoOrient_WorksForAllExifOrientations_F_2.png │ │ │ │ ├── AutoOrient_WorksForAllExifOrientations_F_3.png │ │ │ │ ├── AutoOrient_WorksForAllExifOrientations_F_4.png │ │ │ │ ├── AutoOrient_WorksForAllExifOrientations_F_5.png │ │ │ │ ├── AutoOrient_WorksForAllExifOrientations_F_6.png │ │ │ │ ├── AutoOrient_WorksForAllExifOrientations_F_7.png │ │ │ │ └── AutoOrient_WorksForAllExifOrientations_F_8.png │ │ │ ├── CropTest │ │ │ │ ├── Crop_TestPattern30x70_X7Y13.W20H50.png │ │ │ │ ├── Crop_TestPattern50x50_X-1Y-1.W100H200.png │ │ │ │ └── Crop_TestPattern70x30_X0Y0.W70H30.png │ │ │ ├── EntropyCropTest │ │ │ │ ├── EntropyCrop_MultiScanBaselineCMYK_0.25.png │ │ │ │ ├── EntropyCrop_MultiScanBaselineCMYK_0.75.png │ │ │ │ ├── EntropyCrop_ducky_0.25.png │ │ │ │ ├── EntropyCrop_ducky_0.75.png │ │ │ │ ├── EntropyCrop_jpeg400jfif_0.25.png │ │ │ │ └── EntropyCrop_jpeg400jfif_0.75.png │ │ │ ├── FlipTests │ │ │ │ ├── Flip_TestPattern17x32_Horizontal.png │ │ │ │ ├── Flip_TestPattern17x32_None.png │ │ │ │ ├── Flip_TestPattern17x32_Vertical.png │ │ │ │ ├── Flip_TestPattern20x37_Horizontal.png │ │ │ │ ├── Flip_TestPattern20x37_None.png │ │ │ │ ├── Flip_TestPattern20x37_Vertical.png │ │ │ │ ├── Flip_TestPattern53x37_Horizontal.png │ │ │ │ ├── Flip_TestPattern53x37_None.png │ │ │ │ ├── Flip_TestPattern53x37_Vertical.png │ │ │ │ ├── Flip_WorksOnWrappedMemoryImage_TestPattern17x32_Horizontal.png │ │ │ │ ├── Flip_WorksOnWrappedMemoryImage_TestPattern17x32_None.png │ │ │ │ ├── Flip_WorksOnWrappedMemoryImage_TestPattern17x32_Vertical.png │ │ │ │ ├── Flip_WorksOnWrappedMemoryImage_TestPattern53x37_Horizontal.png │ │ │ │ ├── Flip_WorksOnWrappedMemoryImage_TestPattern53x37_None.png │ │ │ │ └── Flip_WorksOnWrappedMemoryImage_TestPattern53x37_Vertical.png │ │ │ ├── RotateTests │ │ │ │ ├── Rotate_WithAngle_TestPattern100x50_-170.png │ │ │ │ ├── Rotate_WithAngle_TestPattern100x50_-50.png │ │ │ │ ├── Rotate_WithAngle_TestPattern100x50_170.png │ │ │ │ ├── Rotate_WithAngle_TestPattern100x50_50.png │ │ │ │ ├── Rotate_WithAngle_TestPattern50x100_-170.png │ │ │ │ ├── Rotate_WithAngle_TestPattern50x100_-50.png │ │ │ │ ├── Rotate_WithAngle_TestPattern50x100_170.png │ │ │ │ ├── Rotate_WithAngle_TestPattern50x100_50.png │ │ │ │ ├── Rotate_WithRotateTypeEnum_TestPattern100x50_None.png │ │ │ │ ├── Rotate_WithRotateTypeEnum_TestPattern100x50_Rotate180.png │ │ │ │ ├── Rotate_WithRotateTypeEnum_TestPattern100x50_Rotate270.png │ │ │ │ ├── Rotate_WithRotateTypeEnum_TestPattern100x50_Rotate90.png │ │ │ │ ├── Rotate_WithRotateTypeEnum_TestPattern50x100_None.png │ │ │ │ ├── Rotate_WithRotateTypeEnum_TestPattern50x100_Rotate180.png │ │ │ │ ├── Rotate_WithRotateTypeEnum_TestPattern50x100_Rotate270.png │ │ │ │ └── Rotate_WithRotateTypeEnum_TestPattern50x100_Rotate90.png │ │ │ └── SkewTests │ │ │ │ ├── Skew_IsNotBoundToSinglePixelType_Bgra32_TestPattern100x50_-20_-10.png │ │ │ │ ├── Skew_IsNotBoundToSinglePixelType_Bgra32_TestPattern100x50_20_10.png │ │ │ │ ├── Skew_IsNotBoundToSinglePixelType_Rgb24_TestPattern100x50_-20_-10.png │ │ │ │ ├── Skew_IsNotBoundToSinglePixelType_Rgb24_TestPattern100x50_20_10.png │ │ │ │ ├── Skew_WorksWithAllResamplers_ducky_Bicubic.png │ │ │ │ ├── Skew_WorksWithAllResamplers_ducky_Box.png │ │ │ │ ├── Skew_WorksWithAllResamplers_ducky_CatmullRom.png │ │ │ │ ├── Skew_WorksWithAllResamplers_ducky_Hermite.png │ │ │ │ ├── Skew_WorksWithAllResamplers_ducky_Lanczos2.png │ │ │ │ ├── Skew_WorksWithAllResamplers_ducky_Lanczos3.png │ │ │ │ ├── Skew_WorksWithAllResamplers_ducky_Lanczos5.png │ │ │ │ ├── Skew_WorksWithAllResamplers_ducky_Lanczos8.png │ │ │ │ ├── Skew_WorksWithAllResamplers_ducky_MitchellNetravali.png │ │ │ │ ├── Skew_WorksWithAllResamplers_ducky_NearestNeighbor.png │ │ │ │ ├── Skew_WorksWithAllResamplers_ducky_Robidoux.png │ │ │ │ ├── Skew_WorksWithAllResamplers_ducky_RobidouxSharp.png │ │ │ │ ├── Skew_WorksWithAllResamplers_ducky_Spline.png │ │ │ │ ├── Skew_WorksWithAllResamplers_ducky_Triangle.png │ │ │ │ └── Skew_WorksWithAllResamplers_ducky_Welch.png │ │ ├── WebpDecoderTests │ │ │ ├── Decode_AnimatedLossless_VerifyAllFrames_Rgba32_leo_animated_lossless.webp │ │ │ │ ├── 00.png │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ ├── 04.png │ │ │ │ ├── 05.png │ │ │ │ ├── 06.png │ │ │ │ ├── 07.png │ │ │ │ ├── 08.png │ │ │ │ ├── 09.png │ │ │ │ ├── 10.png │ │ │ │ └── 11.png │ │ │ ├── Decode_AnimatedLossy_VerifyAllFrames_Rgba32_leo_animated_lossy.webp │ │ │ │ ├── 00.png │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ ├── 04.png │ │ │ │ ├── 05.png │ │ │ │ ├── 06.png │ │ │ │ ├── 07.png │ │ │ │ ├── 08.png │ │ │ │ ├── 09.png │ │ │ │ ├── 10.png │ │ │ │ └── 11.png │ │ │ └── WebpDecoder_Decode_Resize_bike_lossless_150_150.png │ │ └── WebpEncoderTests │ │ │ ├── Encode_AnimatedLossy_Rgba32_landscape.webp │ │ │ └── Encode_AnimatedLossy_Rgba32_leo_animated_lossy.webp │ └── tools │ │ ├── jpeg │ │ ├── README.md │ │ ├── dump-jpeg-coeffs.exe │ │ └── jpeg62.dll │ │ ├── jpeg2png-usage-example.cmd │ │ ├── jpeg2png.cmd │ │ ├── optimize-all.cmd │ │ └── optipng.exe └── Input │ ├── Bmp │ ├── 9S.bmp │ ├── BITMAPV5HEADER.bmp │ ├── BMP_v5_with_ICC_2.bmp │ ├── BitmapCoreHeaderQR.bmp │ ├── Car.bmp │ ├── DIAMOND.bmp │ ├── F.bmp │ ├── GMARBLE.bmp │ ├── PINES.bmp │ ├── RunLengthEncoded-inverted.bmp │ ├── RunLengthEncoded.bmp │ ├── SKATER.bmp │ ├── SPADE.bmp │ ├── SUNFLOW.bmp │ ├── WARPD.bmp │ ├── ba-bm.bmp │ ├── bit1datamatrix.bmp │ ├── invalidPaletteSize.bmp │ ├── issue-2696.bmp │ ├── issue735.bmp │ ├── neg_height.bmp │ ├── pal1.bmp │ ├── pal1p1.bmp │ ├── pal2.bmp │ ├── pal2color.bmp │ ├── pal4.bmp │ ├── pal4rle.bmp │ ├── pal4rlecut.bmp │ ├── pal4rletrns.bmp │ ├── pal8-0.bmp │ ├── pal8gs.bmp │ ├── pal8offs.bmp │ ├── pal8os2sp.bmp │ ├── pal8os2v1_winv2.bmp │ ├── pal8os2v2-16.bmp │ ├── pal8os2v2.bmp │ ├── pal8oversizepal.bmp │ ├── pal8rlecut.bmp │ ├── pal8rletrns.bmp │ ├── pal8v4.bmp │ ├── pal8v5.bmp │ ├── rgb16-565.bmp │ ├── rgb16-565pal.bmp │ ├── rgb16.bmp │ ├── rgb16bfdef.bmp │ ├── rgb24.bmp │ ├── rgb24jpeg.bmp │ ├── rgb24largepal.bmp │ ├── rgb24png.bmp │ ├── rgb24rle24.bmp │ ├── rgb32.bmp │ ├── rgb32bf.bmp │ ├── rgb32bfdef.bmp │ ├── rgb32h52.bmp │ ├── rgba32-1010102.bmp │ ├── rgba32.bmp │ ├── rgba32abf.bmp │ ├── rgba32h56.bmp │ ├── rgba32v4.bmp │ ├── rle24rlecut.bmp │ ├── rle24rletrns.bmp │ ├── rle4-delta-320x240.bmp │ ├── rle8-blank-160x120.bmp │ ├── rle8-delta-320x240.bmp │ ├── test16-inverted.bmp │ ├── test16.bmp │ ├── test8-inverted.bmp │ └── test8.bmp │ ├── Gif │ ├── 18-bit_RGB_Cube.gif │ ├── GlobalQuantizationTest.gif │ ├── animated_loop.gif │ ├── animated_loop_interlaced.gif │ ├── animated_transparent_firstframerestoreprev_loop.gif │ ├── animated_transparent_frame_norestore_loop.gif │ ├── animated_transparent_frame_restorebackground_loop.gif │ ├── animated_transparent_frame_restoreprev_loop.gif │ ├── animated_transparent_loop.gif │ ├── animated_transparent_restoreprev_loop.gif │ ├── base_1x4.gif │ ├── base_4x1.gif │ ├── cheers.gif │ ├── giphy.gif │ ├── global-256-no-trans.gif │ ├── image-zero-height.gif │ ├── image-zero-size.gif │ ├── image-zero-width.gif │ ├── issues │ │ ├── bugzilla-55918.gif │ │ ├── issue1505_argumentoutofrange.png │ │ ├── issue1530.gif │ │ ├── issue1668_invalidcolorindex.gif │ │ ├── issue1962_tiniest_gif_1st.gif │ │ ├── issue2012_Stronghold-Crusader-Extreme-Cover.gif │ │ ├── issue2012_drona1.gif │ │ ├── issue403_baddescriptorwidth.gif │ │ ├── issue405_badappextlength252-2.gif │ │ ├── issue405_badappextlength252.gif │ │ ├── issue_2198.gif │ │ ├── issue_2288.gif │ │ ├── issue_2288_2.gif │ │ ├── issue_2288_3.gif │ │ ├── issue_2288_4.gif │ │ ├── issue_2450.gif │ │ ├── issue_2450_2.gif │ │ ├── issue_2743.gif │ │ ├── issue_2758.gif │ │ ├── issue_2859_A.gif │ │ ├── issue_2859_B.gif │ │ └── issue_2866.gif │ ├── kumin.gif │ ├── large_comment.gif │ ├── leo.gif │ ├── m4nb.gif │ ├── max-height.gif │ ├── max-width.gif │ ├── mixed-disposal.gif │ ├── receipt.gif │ ├── rings.gif │ ├── static_nontransparent.gif │ ├── static_transparent.gif │ └── trans.gif │ ├── Icon │ ├── 1bpp_size_15x15.ico │ ├── 1bpp_size_16x16.ico │ ├── 1bpp_size_17x17.ico │ ├── 1bpp_size_1x1.ico │ ├── 1bpp_size_256x256.ico │ ├── 1bpp_size_2x2.ico │ ├── 1bpp_size_31x31.ico │ ├── 1bpp_size_32x32.ico │ ├── 1bpp_size_33x33.ico │ ├── 1bpp_size_3x3.ico │ ├── 1bpp_size_4x4.ico │ ├── 1bpp_size_5x5.ico │ ├── 1bpp_size_6x6.ico │ ├── 1bpp_size_7x7.ico │ ├── 1bpp_size_8x8.ico │ ├── 1bpp_size_9x9.ico │ ├── 1bpp_transp_not_square.ico │ ├── 1bpp_transp_partial.ico │ ├── 24bpp_size_15x15.ico │ ├── 24bpp_size_16x16.ico │ ├── 24bpp_size_17x17.ico │ ├── 24bpp_size_1x1.ico │ ├── 24bpp_size_256x256.ico │ ├── 24bpp_size_2x2.ico │ ├── 24bpp_size_31x31.ico │ ├── 24bpp_size_32x32.ico │ ├── 24bpp_size_33x33.ico │ ├── 24bpp_size_3x3.ico │ ├── 24bpp_size_4x4.ico │ ├── 24bpp_size_5x5.ico │ ├── 24bpp_size_6x6.ico │ ├── 24bpp_size_7x7.ico │ ├── 24bpp_size_8x8.ico │ ├── 24bpp_size_9x9.ico │ ├── 24bpp_transp.ico │ ├── 24bpp_transp_not_square.ico │ ├── 24bpp_transp_partial.ico │ ├── 32bpp_size_15x15.ico │ ├── 32bpp_size_16x16.ico │ ├── 32bpp_size_17x17.ico │ ├── 32bpp_size_1x1.ico │ ├── 32bpp_size_256x256.ico │ ├── 32bpp_size_2x2.ico │ ├── 32bpp_size_31x31.ico │ ├── 32bpp_size_32x32.ico │ ├── 32bpp_size_33x33.ico │ ├── 32bpp_size_3x3.ico │ ├── 32bpp_size_4x4.ico │ ├── 32bpp_size_5x5.ico │ ├── 32bpp_size_6x6.ico │ ├── 32bpp_size_7x7.ico │ ├── 32bpp_size_8x8.ico │ ├── 32bpp_size_9x9.ico │ ├── 32bpp_transp.ico │ ├── 32bpp_transp_not_square.ico │ ├── 32bpp_transp_partial.ico │ ├── 4bpp_size_15x15.ico │ ├── 4bpp_size_16x16.ico │ ├── 4bpp_size_17x17.ico │ ├── 4bpp_size_1x1.ico │ ├── 4bpp_size_256x256.ico │ ├── 4bpp_size_2x2.ico │ ├── 4bpp_size_31x31.ico │ ├── 4bpp_size_32x32.ico │ ├── 4bpp_size_33x33.ico │ ├── 4bpp_size_3x3.ico │ ├── 4bpp_size_4x4.ico │ ├── 4bpp_size_5x5.ico │ ├── 4bpp_size_6x6.ico │ ├── 4bpp_size_7x7.ico │ ├── 4bpp_size_8x8.ico │ ├── 4bpp_size_9x9.ico │ ├── 4bpp_transp_not_square.ico │ ├── 4bpp_transp_partial.ico │ ├── 8bpp_size_15x15.ico │ ├── 8bpp_size_16x16.ico │ ├── 8bpp_size_17x17.ico │ ├── 8bpp_size_1x1.ico │ ├── 8bpp_size_256x256.ico │ ├── 8bpp_size_2x2.ico │ ├── 8bpp_size_31x31.ico │ ├── 8bpp_size_32x32.ico │ ├── 8bpp_size_33x33.ico │ ├── 8bpp_size_3x3.ico │ ├── 8bpp_size_4x4.ico │ ├── 8bpp_size_5x5.ico │ ├── 8bpp_size_6x6.ico │ ├── 8bpp_size_7x7.ico │ ├── 8bpp_size_8x8.ico │ ├── 8bpp_size_9x9.ico │ ├── 8bpp_transp_not_square.ico │ ├── 8bpp_transp_partial.ico │ ├── aero_arrow.cur │ ├── cur_fake.ico │ ├── cur_real.cur │ ├── flutter.ico │ ├── ico_fake.cur │ ├── invalid_RLE4.ico │ ├── invalid_RLE8.ico │ ├── invalid_all.ico │ ├── invalid_bpp.ico │ ├── invalid_compression.ico │ ├── invalid_png.ico │ ├── mixed_bmp_png_a.ico │ ├── mixed_bmp_png_b.ico │ ├── mixed_bmp_png_c.ico │ ├── multi_size_a.ico │ ├── multi_size_b.ico │ ├── multi_size_c.ico │ ├── multi_size_d.ico │ ├── multi_size_e.ico │ ├── multi_size_f.ico │ ├── multi_size_multi_bits_a.ico │ ├── multi_size_multi_bits_b.ico │ ├── multi_size_multi_bits_c.ico │ └── multi_size_multi_bits_d.ico │ ├── Jpg │ ├── baseline │ │ ├── 640px-Unequalized_Hawkes_Bay_NZ.jpg │ │ ├── AsianCarvingLowContrast.jpg │ │ ├── Calliphora-arithmetic-grayscale.jpg │ │ ├── Calliphora-arithmetic-interleaved.jpg │ │ ├── Calliphora-arithmetic-restart.jpg │ │ ├── Calliphora.jpg │ │ ├── Calliphora_arithmetic.jpg │ │ ├── Calliphora_encoded_strings.jpg │ │ ├── Floorplan.jpg │ │ ├── Hiyamugi.jpg │ │ ├── JpegSnoopReports │ │ │ ├── Calliphora.jpg.txt │ │ │ ├── Floorplan.jpg.txt │ │ │ ├── Hiyamugi.jpg.txt │ │ │ ├── Lake.jpg.txt │ │ │ ├── MultiScanBaselineCMYK.jpg.txt │ │ │ ├── Snake.jpg.txt │ │ │ ├── badeof.jpg.txt │ │ │ ├── badrst.jpg.txt │ │ │ ├── cmyk.jpg.txt │ │ │ ├── exif.jpg.txt │ │ │ ├── gamma_dalai_lama_gray.jpg.txt │ │ │ ├── jpeg400jfif.jpg.txt │ │ │ ├── jpeg420exif.jpg.txt │ │ │ ├── jpeg420small.jpg.txt │ │ │ ├── jpeg444.jpg.txt │ │ │ ├── ratio-1x1.jpg.txt │ │ │ ├── testimgint.jpg.txt │ │ │ ├── testorig.jpg.txt │ │ │ ├── turtle.jpg.txt │ │ │ └── ycck.jpg.txt │ │ ├── Lake.jpg │ │ ├── Metadata-test-file.jpg │ │ ├── MultiScanBaselineCMYK.jpg │ │ ├── Snake.jpg │ │ ├── arithmetic_coding.jpg │ │ ├── badeof.jpg │ │ ├── badrst.jpg │ │ ├── cmyk.jpg │ │ ├── exif.jpg │ │ ├── extended-xmp.jpg │ │ ├── forest_bridge.jpg │ │ ├── gamma_dalai_lama_gray.jpg │ │ ├── grayscale_sampling22.jpg │ │ ├── iptc-psAPP13-wIPTCempty.jpg │ │ ├── iptc.jpg │ │ ├── jpeg-rgb.jpg │ │ ├── jpeg400jfif.jpg │ │ ├── jpeg410.jpg │ │ ├── jpeg411.jpg │ │ ├── jpeg420exif.jpg │ │ ├── jpeg420small.jpg │ │ ├── jpeg422.jpg │ │ ├── jpeg444.jpg │ │ ├── lossless.jpg │ │ ├── ratio-1x1.jpg │ │ ├── testimgint.jpg │ │ ├── testorig.jpg │ │ ├── testorig12.jpg │ │ ├── turtle.jpg │ │ ├── winter444_interleaved.jpg │ │ ├── ycck-subsample-1222.jpg │ │ └── ycck.jpg │ ├── icc-profiles │ │ ├── Momiji-AdobeRGB-yes.jpg │ │ ├── Momiji-AppleRGB-yes.jpg │ │ ├── Momiji-ColorMatch-yes.jpg │ │ ├── Momiji-ProPhoto-yes.jpg │ │ ├── Momiji-WideRGB-yes.jpg │ │ ├── Momiji-sRGB-yes.jpg │ │ └── issue-129.jpg │ ├── issues │ │ ├── Hang_C438A851.jpg │ │ ├── Issue159-MissingFF00-Progressive-Bedroom.jpg │ │ ├── Issue159-MissingFF00-Progressive-Girl.jpg │ │ ├── Issue1732-WrongColorSpace.jpg │ │ ├── Issue178-BadCoeffsProgressive-Lemon.jpg │ │ ├── Issue1942InvalidIptcTag.jpg │ │ ├── Issue2057-App1Parsing.jpg │ │ ├── Issue2087-exif-null-reference-on-encode.jpg │ │ ├── Issue2133.jpg │ │ ├── Issue2136-scan-segment-extraneous-bytes.jpg │ │ ├── Issue214-CriticalEOF.jpg │ │ ├── Issue2638.jpg │ │ ├── Issue385-BadZigZag-Progressive.jpg │ │ ├── Issue394-MultiHuffmanBaseline-Speakers.jpg │ │ ├── Issue517-No-EOI-Progressive.jpg │ │ ├── Issue518-Bad-RST-Progressive.jpg │ │ ├── Issue520-InvalidCast.jpg │ │ ├── Issue624-DhtHasWrongLength-Progressive-N.jpg │ │ ├── Issue694-Decode-Exif-OutOfRange.jpg │ │ ├── Issue695-Invalid-EOI.jpg │ │ ├── Issue696-Resize-Exif-OutOfRange.jpg │ │ ├── Issue721-InvalidAPP0.jpg │ │ ├── Issue723-Ordered-Interleaved-Progressive-A.jpg │ │ ├── Issue723-Ordered-Interleaved-Progressive-B.jpg │ │ ├── Issue723-Ordered-Interleaved-Progressive-C.jpg │ │ ├── Issue845-Incorrect-Quality99.jpg │ │ ├── JpegSnoopReports │ │ │ ├── Issue159-MissingFF00-Progressive-Bedroom.jpg.txt │ │ │ ├── Issue159-MissingFF00-Progressive-Girl.jpg.txt │ │ │ ├── Issue178-BadCoeffsProgressive-Lemon.jpg.txt │ │ │ ├── Issue214-CriticalEOF .jpg.txt │ │ │ ├── Issue385-BadZigZag-Progressive.jpg.txt │ │ │ ├── Issue394-MultiHuffmanBaseline-Speakers.jpg.txt │ │ │ ├── Issue517-No-EOI-Progressive.jpg.txt │ │ │ ├── Issue518-Bad-RST-Progressive.jpg.txt │ │ │ ├── Issue520-InvalidCast.jpg.txt │ │ │ ├── Issue624-DhtHasWrongLength-Progressive-N.jpg.txt │ │ │ ├── Issue694-Decode-Exif-OutOfRange.jpg.txt │ │ │ ├── Issue695-Invalid-EOI.jpg.txt │ │ │ ├── Issue696-Resize-Exif-OutOfRange.jpg.txt │ │ │ ├── Issue721-InvalidAPP0.jpg.txt │ │ │ ├── Issue723-Ordered-Interleaved-Progressive-A.jpg.txt │ │ │ ├── Issue723-Ordered-Interleaved-Progressive-B.jpg.txt │ │ │ ├── Issue723-Ordered-Interleaved-Progressive-C.jpg.txt │ │ │ ├── issue750-exif-load.jpg.txt │ │ │ └── issue750-exif-tranform.jpg.txt │ │ ├── fuzz │ │ │ ├── Issue1693-IndexOutOfRangeException-A.jpg │ │ │ ├── Issue1693-IndexOutOfRangeException-B.jpg │ │ │ ├── Issue2085-NullReferenceException.jpg │ │ │ ├── Issue797-NullReferenceException.jpg │ │ │ ├── Issue798-AccessViolationException.jpg │ │ │ ├── Issue821-DivideByZeroException.jpg │ │ │ ├── Issue822-DivideByZeroException.jpg │ │ │ ├── Issue823-NullReferenceException.jpg │ │ │ ├── Issue824-IndexOutOfRangeException-A.jpg │ │ │ ├── Issue824-IndexOutOfRangeException-B.jpg │ │ │ ├── Issue824-IndexOutOfRangeException-C.jpg │ │ │ ├── Issue824-IndexOutOfRangeException-D.jpg │ │ │ ├── Issue824-IndexOutOfRangeException-E.jpg │ │ │ ├── Issue824-IndexOutOfRangeException-F.jpg │ │ │ ├── Issue824-IndexOutOfRangeException-G.jpg │ │ │ ├── Issue824-IndexOutOfRangeException-H.jpg │ │ │ ├── Issue825-ArgumentOutOfRangeException-A.jpg │ │ │ ├── Issue825-ArgumentOutOfRangeException-B.jpg │ │ │ ├── Issue825-ArgumentOutOfRangeException-C.jpg │ │ │ ├── Issue825-ArgumentOutOfRangeException-D.jpg │ │ │ ├── Issue826-ArgumentException-A.jpg │ │ │ ├── Issue826-ArgumentException-B.jpg │ │ │ ├── Issue826-ArgumentException-C.jpg │ │ │ ├── Issue827-AccessViolationException.jpg │ │ │ ├── Issue839-ExecutionEngineException.jpg │ │ │ └── Issue922-AccessViolationException.jpg │ │ ├── issue-1076-invalid-subsampling.jpg │ │ ├── issue-1221-identify-multi-frame.jpg │ │ ├── issue-1900-malformed-unsupported-255-components.jpg │ │ ├── issue-1932-app0-resolution.jpg │ │ ├── issue-2056-exif-null-array.jpg │ │ ├── issue-2067-comment.jpg │ │ ├── issue-2315.jpg │ │ ├── issue-2334-a.jpg │ │ ├── issue-2334-b.jpg │ │ ├── issue-2478-jfxx.jpg │ │ ├── issue-2564.jpg │ │ ├── issue-2758.jpg │ │ ├── issue-2857-subsub-ifds.jpg │ │ ├── issue1006-incorrect-resize.jpg │ │ ├── issue1049-exif-resize.jpg │ │ ├── issue2517-bad-d7.jpg │ │ ├── issue750-exif-load.jpg │ │ ├── issue750-exif-tranform.jpg │ │ └── issue855-incorrect-colorspace.jpg │ └── progressive │ │ ├── BadEofProgressive.jpg │ │ ├── Calliphora-arithmetic-progressive-interleaved.jpg │ │ ├── ExifUndefType.jpg │ │ ├── Festzug.jpg │ │ ├── JpegSnoopReports │ │ ├── BadEofProgressive.jpg.txt │ │ ├── ExifUndefType.jpg.txt │ │ ├── Festzug.jpg.txt │ │ ├── fb.jpg.txt │ │ └── progress.jpg.txt │ │ ├── arithmetic_progressive.jpg │ │ ├── fb.jpg │ │ ├── progress.jpg │ │ └── winter420_noninterleaved.jpg │ ├── Pbm │ ├── 00000_00000.ppm │ ├── 00000_00000_premature_eof.ppm │ ├── Gene-UP WebSocket RunImageMask.pgm │ ├── blackandwhite_binary.pbm │ ├── blackandwhite_plain.pbm │ ├── grayscale_plain.pgm │ ├── grayscale_plain_magick.pgm │ ├── grayscale_plain_normalized.pgm │ ├── issue2477.pbm │ ├── rgb_plain.ppm │ ├── rgb_plain_magick.ppm │ ├── rgb_plain_normalized.ppm │ └── rings.pgm │ ├── Png │ ├── AverageFilter4Bpp.png │ ├── Bike.png │ ├── BikeGrayscale.png │ ├── Bradley01.png │ ├── Bradley02.png │ ├── CalliphoraPartial.png │ ├── CalliphoraPartialGrayscale.png │ ├── InvalidTextData.png │ ├── PaethFilter4Bpp.png │ ├── PngWithMetaData.png │ ├── SnakeGame.png │ ├── SubFilter4Bpp.png │ ├── adamHeadsHLG.png │ ├── animated │ │ ├── 12-dispose-prev-first.png │ │ ├── 14-dispose-background-before-region.png │ │ ├── 15-dispose-background-region.png │ │ ├── 21-blend-over-multiple.png │ │ ├── 4-split-idat-zero-length.png │ │ ├── 7-dispose-none.png │ │ ├── 8-dispose-background.png │ │ ├── apng.png │ │ ├── default-not-animated.png │ │ └── frame-offset.png │ ├── banner7-adam.png │ ├── banner8-index.png │ ├── basn3p01.png │ ├── basn3p02.png │ ├── basn3p04.png │ ├── basn3p08.png │ ├── big-corrupted-chunk.png │ ├── bike-small.png │ ├── blur.png │ ├── bpp1.png │ ├── chunklength1.png │ ├── chunklength2.png │ ├── colors-saturation-lightness.png │ ├── cross.png │ ├── david.png │ ├── ducky.png │ ├── filter0.png │ ├── filter1.png │ ├── filter2.png │ ├── filter3.png │ ├── filter4.png │ ├── filterVar.png │ ├── gray-1-trns.png │ ├── gray-16-tRNS-interlaced.png │ ├── gray-16.png │ ├── gray-2-tRNS.png │ ├── gray-4-tRNS.png │ ├── gray-8-tRNS.png │ ├── gray-alpha-16.png │ ├── gray-alpha-8.png │ ├── gray_4bpp.png │ ├── icon.png │ ├── iftbbn0g01.png │ ├── iftbbn0g02.png │ ├── iftbbn0g04.png │ ├── indexed.png │ ├── interlaced.png │ ├── issues │ │ ├── Issue_1014_1.png │ │ ├── Issue_1014_2.png │ │ ├── Issue_1014_3.png │ │ ├── Issue_1014_4.png │ │ ├── Issue_1014_5.png │ │ ├── Issue_1014_6.png │ │ ├── Issue_1047.png │ │ ├── Issue_1127.png │ │ ├── Issue_1177_1.png │ │ ├── Issue_1177_2.png │ │ ├── Issue_1765_Net6DeflateStreamRead.png │ │ ├── Issue_2209.png │ │ ├── Issue_2217_AdaptiveThresholdProcessor.png │ │ ├── Issue_2259.png │ │ ├── Issue_2589.png │ │ ├── Issue_2666.png │ │ ├── Issue_2668.png │ │ ├── Issue_2714.png │ │ ├── Issue_2752.png │ │ ├── Issue_2882.png │ │ ├── Issue_2924.png │ │ ├── Issue_410.png │ │ ├── Issue_935.png │ │ ├── bad-ztxt.png │ │ ├── bad-ztxt2.png │ │ ├── flag_of_germany-0000016446.png │ │ ├── issue_2447.png │ │ ├── issue_2469-i.png │ │ └── issue_2469.png │ ├── kaboom.png │ ├── length_gama.png │ ├── low-variance.png │ ├── missing_plte.png │ ├── missing_plte_2.png │ ├── palette-8bpp.png │ ├── pd-dest.png │ ├── pd-source.png │ ├── pd.png │ ├── pl.png │ ├── pp.png │ ├── rainbow.png │ ├── ratio-1x4.png │ ├── ratio-4x1.png │ ├── raw-profile-type-exif.png │ ├── rgb-16-alpha.png │ ├── rgb-16-tRNS.png │ ├── rgb-48bpp-interlaced.png │ ├── rgb-48bpp.png │ ├── rgb-8-tRNS.png │ ├── rollsroyce.png │ ├── splash-interlaced.png │ ├── splash.png │ ├── testpattern31x31-halftransparent.png │ ├── testpattern31x31.png │ ├── transparency.png │ ├── versioning-1_1.png │ ├── versioning-1_2.png │ ├── vim16x16_1.png │ ├── vim16x16_2.png │ ├── xc1n0g08.png │ ├── xc9n2c08.png │ ├── xcsn0g01.png │ ├── xd0n2c08.png │ ├── xd3n2c08.png │ ├── xdtn0g01.png │ ├── xmp-colorpalette.png │ ├── zlib-overflow.png │ ├── zlib-overflow2.png │ └── zlib-ztxt-bad-header.png │ ├── Qoi │ ├── dice.qoi │ ├── edgecase.qoi │ ├── kodim10.qoi │ ├── kodim23.qoi │ ├── qoi_logo.qoi │ ├── testcard.qoi │ ├── testcard_rgba.qoi │ └── wikipedia_008.qoi │ ├── Tga │ ├── 16bit_noalphabits.tga │ ├── 16bit_rle_noalphabits.tga │ ├── 32bit_no_alphabits.tga │ ├── 32bit_rle_no_alphabits.tga │ ├── Github_RLE_legacy.tga │ ├── ccm8.tga │ ├── grayscale_LL.tga │ ├── grayscale_LR.tga │ ├── grayscale_UL.tga │ ├── grayscale_UR.tga │ ├── grayscale_a_LL.tga │ ├── grayscale_a_LR.tga │ ├── grayscale_a_UL.tga │ ├── grayscale_a_UR.tga │ ├── grayscale_a_rle_LL.tga │ ├── grayscale_a_rle_LR.tga │ ├── grayscale_a_rle_UL.tga │ ├── grayscale_a_rle_UR.tga │ ├── grayscale_rle_LR.tga │ ├── grayscale_rle_UL.tga │ ├── grayscale_rle_UR.tga │ ├── indexed_LR.tga │ ├── indexed_UL.tga │ ├── indexed_UR.tga │ ├── indexed_a_LL.tga │ ├── indexed_a_LR.tga │ ├── indexed_a_UL.tga │ ├── indexed_a_UR.tga │ ├── indexed_a_rle_LL.tga │ ├── indexed_a_rle_LR.tga │ ├── indexed_a_rle_UL.tga │ ├── indexed_a_rle_UR.tga │ ├── indexed_rle_LL.tga │ ├── indexed_rle_LR.tga │ ├── indexed_rle_UL.tga │ ├── indexed_rle_UR.tga │ ├── issues │ │ └── Issue2629.tga │ ├── rgb15.tga │ ├── rgb15rle.tga │ ├── rgb24_top_left.tga │ ├── rgb_LR.tga │ ├── rgb_UR.tga │ ├── rgb_a_LL.tga │ ├── rgb_a_LR.tga │ ├── rgb_a_UL.tga │ ├── rgb_a_UR.tga │ ├── rgb_a_rle_LR.tga │ ├── rgb_a_rle_UL.tga │ ├── rgb_a_rle_UR.tga │ ├── rgb_rle_LR.tga │ ├── rgb_rle_UR.tga │ ├── targa_16bit.tga │ ├── targa_16bit_pal.tga │ ├── targa_16bit_rle.tga │ ├── targa_24bit.tga │ ├── targa_24bit_pal.tga │ ├── targa_24bit_pal_origin_topleft.tga │ ├── targa_24bit_rle.tga │ ├── targa_24bit_rle_origin_topleft.tga │ ├── targa_32bit.tga │ ├── targa_32bit_rle.tga │ ├── targa_8bit.tga │ ├── targa_8bit_rle.tga │ └── whitestripes.png │ ├── Tiff │ ├── 7324fcaff3aad96f27899da51c1bb5d9.tiff │ ├── Benchmarks │ │ ├── .gitignore │ │ ├── gen.bat │ │ ├── gen_big.ps1 │ │ ├── gen_medium.ps1 │ │ ├── genimages.ps1 │ │ ├── jpeg444.jpg │ │ ├── jpeg444_big.jpg │ │ └── jpeg444_medium.jpg │ ├── BigTiff │ │ ├── BigTIFF.tif │ │ ├── BigTIFFLong.tif │ │ ├── BigTIFFLong8.tif │ │ ├── BigTIFFLong8Tiles.tif │ │ ├── BigTIFFMotorola.tif │ │ ├── BigTIFFMotorolaLongStrips.tif │ │ ├── BigTIFFSamples.md │ │ ├── BigTIFFSubIFD4.tif │ │ ├── BigTIFFSubIFD8.tif │ │ ├── BigTIFF_Indexed4_Deflate.tif │ │ ├── BigTIFF_Indexed8_LZW.tif │ │ ├── BigTIFF_MinIsBlack.tif │ │ ├── BigTIFF_MinIsBlack_RLE.tif │ │ ├── BigTIFF_MinIsWhite.tif │ │ ├── BigTIFF_MinIsWhite_RLE.tif │ │ ├── Classic.tif │ │ └── readme.md │ ├── CCITTGroup4.tiff │ ├── CCITTGroup4_minisblack.tiff │ ├── Calliphora_bicolor_uncompressed.tiff │ ├── Calliphora_ccitt_fax3.tiff │ ├── Calliphora_ccitt_fax3_with_eol_padding.tiff │ ├── Calliphora_ccitt_fax4.tiff │ ├── Calliphora_gray_deflate.tiff │ ├── Calliphora_gray_deflate_16bit.tiff │ ├── Calliphora_gray_deflate_predictor.tiff │ ├── Calliphora_gray_deflate_predictor_16bit.tiff │ ├── Calliphora_gray_lzw_predictor.tiff │ ├── Calliphora_gray_lzw_predictor_16bit.tiff │ ├── Calliphora_grayscale_uncompressed.tiff │ ├── Calliphora_grayscale_uncompressed_16bit.tiff │ ├── Calliphora_huffman_rle.tiff │ ├── Calliphora_palette_uncompressed.tiff │ ├── Calliphora_rgb_deflate_predictor.tiff │ ├── Calliphora_rgb_jpeg.tiff │ ├── Calliphora_rgb_lzw.tiff │ ├── Calliphora_rgb_lzw_predictor.tiff │ ├── Calliphora_rgb_packbits.tiff │ ├── Calliphora_rgb_palette_lzw_predictor.tiff │ ├── Calliphora_rgb_uncompressed.tiff │ ├── CieLab.tiff │ ├── CieLabPlanar.tiff │ ├── CieLab_lzwcompressed_predictor.tiff │ ├── Cmyk-lzw-predictor.tiff │ ├── Cmyk.tiff │ ├── Issues │ │ ├── Group4CompressionWithStrips.tiff │ │ ├── Issue1716.tiff │ │ ├── Issue1891.tiff │ │ ├── Issue2123.tiff │ │ ├── Issue2255.png │ │ ├── Issue2435.tiff │ │ ├── Issue2587.tiff │ │ ├── Issue2679.tiff │ │ ├── Issue2909.tiff │ │ ├── JpegCompressedGray-0000539558.tiff │ │ └── tiled-0000023664.tiff │ ├── JpegCompressedGray.tiff │ ├── OldJpegCompression.tiff │ ├── OldJpegCompression2.tiff │ ├── OldJpegCompression3.tiff │ ├── OldJpegCompressionGray.tiff │ ├── RgbaAlpha8bit.tiff │ ├── RgbaAssociatedAlpha10bit_lsb.tiff │ ├── RgbaAssociatedAlpha10bit_msb.tiff │ ├── RgbaAssociatedAlpha12bit_lsb.tiff │ ├── RgbaAssociatedAlpha12bit_msb.tiff │ ├── RgbaAssociatedAlpha14bit_lsb.tiff │ ├── RgbaAssociatedAlpha14bit_msb.tiff │ ├── RgbaAssociatedAlpha16bit_lsb.tiff │ ├── RgbaAssociatedAlpha16bit_msb.tiff │ ├── RgbaAssociatedAlpha3bit.tiff │ ├── RgbaAssociatedAlpha4bit.tiff │ ├── RgbaAssociatedAlpha5bit.tiff │ ├── RgbaAssociatedAlpha6bit.tiff │ ├── RgbaUnassociatedAlpha10bit_lsb.tiff │ ├── RgbaUnassociatedAlpha10bit_msb.tiff │ ├── RgbaUnassociatedAlpha12bit_lsb.tiff │ ├── RgbaUnassociatedAlpha12bit_msb.tiff │ ├── RgbaUnassociatedAlpha14bit_lsb.tiff │ ├── RgbaUnassociatedAlpha14bit_msb.tiff │ ├── RgbaUnassociatedAlpha16bit_lsb.tiff │ ├── RgbaUnassociatedAlpha16bit_msb.tiff │ ├── RgbaUnassociatedAlpha24bit_lsb.tiff │ ├── RgbaUnassociatedAlpha24bit_msb.tiff │ ├── RgbaUnassociatedAlpha2bit.tiff │ ├── RgbaUnassociatedAlpha32bit_lsb.tiff │ ├── RgbaUnassociatedAlpha32bit_msb.tiff │ ├── RgbaUnassociatedAlpha3bit.tiff │ ├── RgbaUnassociatedAlpha4bit.tiff │ ├── RgbaUnassociatedAlpha5bit.tiff │ ├── RgbaUnassociatedAlpha6bit.tiff │ ├── RgbaUnassociatedAlpha8bit.tiff │ ├── RgbaUnassociatedAlphaPlanar16bit_lsb.tiff │ ├── RgbaUnassociatedAlphaPlanar16bit_msb.tiff │ ├── RgbaUnassociatedAlphaPlanar24bit_lsb.tiff │ ├── RgbaUnassociatedAlphaPlanar24bit_msb.tiff │ ├── RgbaUnassociatedAlphaPlanar32bit_lsb.tiff │ ├── RgbaUnassociatedAlphaPlanar32bit_msb.tiff │ ├── RgbaUnassociatedAlphaPlanar8bit.tiff │ ├── RgbaUnassociatedAlphaPredictor16bit_lsb.tiff │ ├── RgbaUnassociatedAlphaPredictor16bit_msb.tiff │ ├── RgbaUnassociatedAlphaPredictor32bit_lsb.tiff │ ├── RgbaUnassociatedAlphaPredictor32bit_msb.tiff │ ├── RgbaUnassociatedAlphaPredictor8bit.tiff │ ├── SKC1H3.tiff │ ├── YCbCrOldJpegCompressed.tiff │ ├── basi3p02_fax3_lowerOrderBitsFirst.tiff │ ├── basi3p02_fax4.tiff │ ├── basi3p02_fax4_lowerOrderBitsFirst.tiff │ ├── basi3p02_fax4_minisblack.tiff │ ├── basi3p02_huffman_rle.tiff │ ├── basi3p02_huffman_rle_lowerOrderBitsFirst.tiff │ ├── bike_colorpalette_4bit.tiff │ ├── ccitt_fax3_all_makeup_codes.tiff │ ├── ccitt_fax3_all_terminating_codes.tiff │ ├── ccitt_fax3_uncompressed.tiff │ ├── cmyk_deflate_64bit.tiff │ ├── f8179f8f5e566349cf3583a1ff3ea95c.tiff │ ├── flower-minisblack-02.tiff │ ├── flower-minisblack-04.tiff │ ├── flower-minisblack-06.tiff │ ├── flower-minisblack-08.tiff │ ├── flower-minisblack-10.tiff │ ├── flower-minisblack-12.tiff │ ├── flower-minisblack-14.tiff │ ├── flower-minisblack-16.tiff │ ├── flower-minisblack-16_lsb.tiff │ ├── flower-minisblack-16_lsb_lzw_predictor.tiff │ ├── flower-minisblack-16_msb_lzw_predictor.tiff │ ├── flower-minisblack-24_lsb.tiff │ ├── flower-minisblack-24_msb.tiff │ ├── flower-minisblack-32_lsb.tiff │ ├── flower-minisblack-32_lsb_deflate_predictor.tiff │ ├── flower-minisblack-32_msb.tiff │ ├── flower-minisblack-32_msb_deflate_predictor.tiff │ ├── flower-minisblack-float32_lsb.tiff │ ├── flower-minisblack-float32_msb.tiff │ ├── flower-miniswhite-16_lsb.tiff │ ├── flower-miniswhite-16_msb.tiff │ ├── flower-miniswhite-32_lsb.tiff │ ├── flower-miniswhite-32_msb.tiff │ ├── flower-miniswhite-float32_lsb.tiff │ ├── flower-miniswhite-float32_msb.tiff │ ├── flower-palette-02.tiff │ ├── flower-palette-04.tiff │ ├── flower-rgb-3bit.tiff │ ├── flower-rgb-5bit.tiff │ ├── flower-rgb-6bit.tiff │ ├── flower-rgb-contig-02.tiff │ ├── flower-rgb-contig-04.tiff │ ├── flower-rgb-contig-08.tiff │ ├── flower-rgb-contig-10.tiff │ ├── flower-rgb-contig-12.tiff │ ├── flower-rgb-contig-14.tiff │ ├── flower-rgb-contig-16.tiff │ ├── flower-rgb-contig-16_lsb.tiff │ ├── flower-rgb-contig-16_lsb_zip_predictor.tiff │ ├── flower-rgb-contig-16_msb_zip_predictor.tiff │ ├── flower-rgb-contig-24.tiff │ ├── flower-rgb-contig-24_lsb.tiff │ ├── flower-rgb-contig-32.tiff │ ├── flower-rgb-contig-32_lsb.tiff │ ├── flower-rgb-contig-32_lsb_zip_predictor.tiff │ ├── flower-rgb-contig-32_msb_zip_predictor.tiff │ ├── flower-rgb-float32_lsb.tiff │ ├── flower-rgb-float32_msb.tiff │ ├── flower-rgb-planar-02.tiff │ ├── flower-rgb-planar-04.tiff │ ├── flower-rgb-planar-08-15strips.tiff │ ├── flower-rgb-planar-08-6strips.tiff │ ├── flower-rgb-planar-10.tiff │ ├── flower-rgb-planar-14.tiff │ ├── flower-rgb-planar-16.tiff │ ├── flower-rgb-planar-16_lsb.tiff │ ├── flower-rgb-planar-24.tiff │ ├── flower-rgb-planar-24_lsb.tiff │ ├── flower-rgb-planar-32.tiff │ ├── flower-rgb-planar-32_lsb.tiff │ ├── flower-ycbcr-contig-08_h1v1.tiff │ ├── flower-ycbcr-contig-08_h2v1.tiff │ ├── flower-ycbcr-contig-08_h2v2.tiff │ ├── flower-ycbcr-contig-08_h4v4.tiff │ ├── flower-ycbcr-planar-08_h1v1.tiff │ ├── g3test.tiff │ ├── grayscale_deflate_multistrip.tiff │ ├── grayscale_uncompressed.tiff │ ├── grayscale_uncompressed_16bit.tiff │ ├── huffman_rle_all_makeup_codes.tiff │ ├── huffman_rle_all_terminating_codes.tiff │ ├── iptc.tiff │ ├── little_endian.tiff │ ├── metadata_sample.tiff │ ├── moy.tiff │ ├── multipage_ withPreview_differentSize_tiled.tiff │ ├── multipage_deflate_withPreview.tiff │ ├── multipage_differentSize.tiff │ ├── multipage_differentVariants.tiff │ ├── multipage_lzw.tiff │ ├── palette_grayscale_deflate_multistrip.tiff │ ├── palette_uncompressed.tiff │ ├── quad-tile.tiff │ ├── rgb-ycbcr-contig-08_h1v1.tiff │ ├── rgb-ycbcr-contig-08_h2v2.tiff │ ├── rgb-ycbcr-contig-08_h4v2.tiff │ ├── rgb-ycbcr-contig-08_h4v4.tiff │ ├── rgb_deflate.tiff │ ├── rgb_deflate_multistrip.tiff │ ├── rgb_deflate_predictor.tiff │ ├── rgb_jpegcompressed_nojpegtable.tiff │ ├── rgb_jpegcompressed_stripped.tiff │ ├── rgb_jpegcompression.tiff │ ├── rgb_lzw_multistrip.tiff │ ├── rgb_lzw_noPredictor_multistrip.tiff │ ├── rgb_lzw_noPredictor_multistrip_Motorola.tiff │ ├── rgb_lzw_noPredictor_singlestrip_Motorola.tiff │ ├── rgb_lzw_no_predictor.tiff │ ├── rgb_lzw_predictor.tiff │ ├── rgb_packbits.tiff │ ├── rgb_packbits_multistrip.tiff │ ├── rgb_palette.tiff │ ├── rgb_palette_deflate.tiff │ ├── rgb_small_deflate.tiff │ ├── rgb_small_lzw.tiff │ ├── rgb_uncompressed.tiff │ ├── rgb_uncompressed_tiled.tiff │ ├── rgb_uncompressed_tiled_chunky.tiff │ ├── rgb_uncompressed_tiled_planar.tiff │ ├── tiled.tiff │ ├── tiled_gray_16bit_big_endian_deflate_compressed_predictor.tiff │ ├── tiled_gray_16bit_big_endian_lzw_compressed_predictor.tiff │ ├── tiled_gray_16bit_little_endian_deflate_compressed_predictor.tiff │ ├── tiled_gray_16bit_little_endian_lzw_compressed_predictor.tiff │ ├── tiled_gray_32bit_big_endian_deflate_compressed_predictor.tiff │ ├── tiled_gray_32bit_big_endian_lzw_compressed_predictor.tiff │ ├── tiled_gray_32bit_little_endian_deflate_compressed_predictor.tiff │ ├── tiled_gray_32bit_little_endian_lzw_compressed_predictor.tiff │ ├── tiled_gray_deflate_compressed_predictor.tiff │ ├── tiled_gray_lzw_compressed_predictor.tiff │ ├── tiled_rgb_48bit_big_endian_deflate_compressed_predictor.tiff │ ├── tiled_rgb_48bit_big_endian_lzw_compressed_predictor.tiff │ ├── tiled_rgb_48bit_little_endian_deflate_compressed_predictor.tiff │ ├── tiled_rgb_48bit_little_endian_lzw_compressed_predictor.tiff │ ├── tiled_rgb_64bit_big_endian_deflate_compressed_predictor.tiff │ ├── tiled_rgb_64bit_big_endian_lzw_compressed_predictor.tiff │ ├── tiled_rgb_64bit_little_endian_deflate_compressed_predictor.tiff │ ├── tiled_rgb_64bit_little_endian_lzw_compressed_predictor.tiff │ ├── tiled_rgb_96bit_big_endian_deflate_compressed_predictor.tiff │ ├── tiled_rgb_96bit_big_endian_lzw_compressed_predictor.tiff │ ├── tiled_rgb_96bit_little_endian_deflate_compressed_predictor.tiff │ ├── tiled_rgb_96bit_little_endian_lzw_compressed_predictor.tiff │ ├── tiled_rgb_deflate_compressed_predictor.tiff │ ├── tiled_rgb_lzw_compressed_predictor.tiff │ ├── tiled_rgba_128bit_big_endian_deflate_compressed_predictor.tiff │ ├── tiled_rgba_128bit_big_endian_lzw_compressed_predictor.tiff │ ├── tiled_rgba_128bit_little_endian_deflate_compressed_predictor.tiff │ ├── tiled_rgba_128bit_little_endian_lzw_compressed_predictor.tiff │ ├── tiled_rgba_64bit_big_endian_deflate_compressed_predictor.tiff │ ├── tiled_rgba_64bit_big_endian_lzw_compressed_predictor.tiff │ ├── tiled_rgba_64bit_little_endian_deflate_compressed_predictor.tiff │ ├── tiled_rgba_64bit_little_endian_lzw_compressed_predictor.tiff │ ├── tiled_rgba_deflate_compressed_predictor.tiff │ ├── tiled_rgba_lzw_compressed_predictor.tiff │ ├── twain-rgb-jpeg-with-bogus-ycbcr-subsampling.tiff │ ├── webp_compressed.tiff │ ├── ycbcr_jpegcompressed.tiff │ └── ycbcr_jpegcompressed2.tiff │ └── Webp │ ├── 1602311202.webp │ ├── alpha-blend-2.webp │ ├── alpha-blend-3.webp │ ├── alpha-blend-4.webp │ ├── alpha-blend.webp │ ├── alpha_color_cache.webp │ ├── alpha_filter_0_method_0.webp │ ├── alpha_filter_0_method_1.webp │ ├── alpha_filter_1.webp │ ├── alpha_filter_1_method_0.webp │ ├── alpha_filter_1_method_1.webp │ ├── alpha_filter_2.webp │ ├── alpha_filter_2_method_0.webp │ ├── alpha_filter_2_method_1.webp │ ├── alpha_filter_3.webp │ ├── alpha_filter_3_method_0.webp │ ├── alpha_filter_3_method_1.webp │ ├── alpha_no_compression.webp │ ├── animated-webp.webp │ ├── animated2.webp │ ├── animated3.webp │ ├── animated_lossy.webp │ ├── bad_palette_index.webp │ ├── big_endian_bug_393.webp │ ├── bike_lossless.webp │ ├── bike_lossy_complex_filter.webp │ ├── bike_lossy_small.webp │ ├── bike_lossy_with_exif.webp │ ├── bryce.webp │ ├── bug3.webp │ ├── color_cache_bits_11.webp │ ├── earth_lossless.webp │ ├── earth_lossy.webp │ ├── exif_lossless.webp │ ├── exif_lossy.webp │ ├── exif_lossy_not_enough_data.webp │ ├── flag_of_germany.png │ ├── issues │ ├── Issue1594.webp │ ├── Issue2243.webp │ ├── Issue2257.webp │ ├── Issue2528.webp │ ├── Issue2670.webp │ ├── Issue2763.png │ ├── Issue2801.webp │ ├── Issue2866.webp │ └── Issue2925.webp │ ├── landscape.webp │ ├── leo_animated_lossless.webp │ ├── leo_animated_lossy.webp │ ├── lossless1.webp │ ├── lossless2.webp │ ├── lossless3.webp │ ├── lossless4.webp │ ├── lossless_alpha_small.webp │ ├── lossless_big_random_alpha.webp │ ├── lossless_color_transform.webp │ ├── lossless_vec_1_0.webp │ ├── lossless_vec_1_1.webp │ ├── lossless_vec_1_10.webp │ ├── lossless_vec_1_11.webp │ ├── lossless_vec_1_12.webp │ ├── lossless_vec_1_13.webp │ ├── lossless_vec_1_14.webp │ ├── lossless_vec_1_15.webp │ ├── lossless_vec_1_2.webp │ ├── lossless_vec_1_3.webp │ ├── lossless_vec_1_4.webp │ ├── lossless_vec_1_5.webp │ ├── lossless_vec_1_6.webp │ ├── lossless_vec_1_7.webp │ ├── lossless_vec_1_8.webp │ ├── lossless_vec_1_9.webp │ ├── lossless_vec_2_0.webp │ ├── lossless_vec_2_1.webp │ ├── lossless_vec_2_10.webp │ ├── lossless_vec_2_11.webp │ ├── lossless_vec_2_12.webp │ ├── lossless_vec_2_13.webp │ ├── lossless_vec_2_14.webp │ ├── lossless_vec_2_15.webp │ ├── lossless_vec_2_2.webp │ ├── lossless_vec_2_3.webp │ ├── lossless_vec_2_4.webp │ ├── lossless_vec_2_5.webp │ ├── lossless_vec_2_6.webp │ ├── lossless_vec_2_7.webp │ ├── lossless_vec_2_8.webp │ ├── lossless_vec_2_9.webp │ ├── lossless_with_iccp.webp │ ├── lossy_alpha1.webp │ ├── lossy_alpha2.webp │ ├── lossy_alpha3.webp │ ├── lossy_alpha4.webp │ ├── lossy_extreme_probabilities.webp │ ├── lossy_q0_f100.webp │ ├── lossy_with_iccp.webp │ ├── near_lossless_75.webp │ ├── peak.png │ ├── rgb_pattern_100x100.png │ ├── rgb_pattern_63x63.png │ ├── rgb_pattern_80x80.png │ ├── segment01.webp │ ├── segment02.webp │ ├── segment03.webp │ ├── small_13x1.webp │ ├── small_1x1.webp │ ├── small_1x13.webp │ ├── small_31x13.webp │ ├── sticker.webp │ ├── test-nostrong.webp │ ├── test.webp │ ├── testpattern_opaque.png │ ├── testpattern_opaque_small.png │ ├── very_short.webp │ ├── vp80-00-comprehensive-001.webp │ ├── vp80-00-comprehensive-002.webp │ ├── vp80-00-comprehensive-003.webp │ ├── vp80-00-comprehensive-004.webp │ ├── vp80-00-comprehensive-005.webp │ ├── vp80-00-comprehensive-006.webp │ ├── vp80-00-comprehensive-007.webp │ ├── vp80-00-comprehensive-008.webp │ ├── vp80-00-comprehensive-009.webp │ ├── vp80-00-comprehensive-010.webp │ ├── vp80-00-comprehensive-011.webp │ ├── vp80-00-comprehensive-012.webp │ ├── vp80-00-comprehensive-013.webp │ ├── vp80-00-comprehensive-014.webp │ ├── vp80-00-comprehensive-015.webp │ ├── vp80-00-comprehensive-016.webp │ ├── vp80-00-comprehensive-017.webp │ ├── vp80-01-intra-1400.webp │ ├── vp80-01-intra-1411.webp │ ├── vp80-01-intra-1416.webp │ ├── vp80-01-intra-1417.webp │ ├── vp80-02-inter-1402.webp │ ├── vp80-02-inter-1412.webp │ ├── vp80-02-inter-1418.webp │ ├── vp80-02-inter-1424.webp │ ├── vp80-03-segmentation-1401.webp │ ├── vp80-03-segmentation-1403.webp │ ├── vp80-03-segmentation-1407.webp │ ├── vp80-03-segmentation-1408.webp │ ├── vp80-03-segmentation-1409.webp │ ├── vp80-03-segmentation-1410.webp │ ├── vp80-03-segmentation-1413.webp │ ├── vp80-03-segmentation-1414.webp │ ├── vp80-03-segmentation-1415.webp │ ├── vp80-03-segmentation-1425.webp │ ├── vp80-03-segmentation-1426.webp │ ├── vp80-03-segmentation-1427.webp │ ├── vp80-03-segmentation-1432.webp │ ├── vp80-03-segmentation-1435.webp │ ├── vp80-03-segmentation-1436.webp │ ├── vp80-03-segmentation-1437.webp │ ├── vp80-03-segmentation-1441.webp │ ├── vp80-03-segmentation-1442.webp │ ├── vp80-04-partitions-1404.webp │ ├── vp80-04-partitions-1405.webp │ ├── vp80-04-partitions-1406.webp │ ├── vp80-05-sharpness-1428.webp │ ├── vp80-05-sharpness-1429.webp │ ├── vp80-05-sharpness-1430.webp │ ├── vp80-05-sharpness-1431.webp │ ├── vp80-05-sharpness-1433.webp │ ├── vp80-05-sharpness-1434.webp │ ├── vp80-05-sharpness-1438.webp │ ├── vp80-05-sharpness-1439.webp │ ├── vp80-05-sharpness-1440.webp │ ├── vp80-05-sharpness-1443.webp │ ├── xmp_lossy.webp │ └── yuv_test.png └── coverlet.runsettings /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: SixLabors 2 | open_collective: sixlabors -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "github-actions" 4 | directory: "/" 5 | schedule: 6 | interval: "weekly" 7 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "shared-infrastructure"] 2 | path = shared-infrastructure 3 | url = https://github.com/SixLabors/SharedInfrastructure 4 | -------------------------------------------------------------------------------- /src/ImageSharp/Formats/Jpeg/5116.DCT_Filter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/ImageSharp/1226eb541c60f2179126acaa2bd30da87c0237e9/src/ImageSharp/Formats/Jpeg/5116.DCT_Filter.pdf -------------------------------------------------------------------------------- /src/ImageSharp/Formats/Jpeg/itu-t81.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/ImageSharp/1226eb541c60f2179126acaa2bd30da87c0237e9/src/ImageSharp/Formats/Jpeg/itu-t81.pdf -------------------------------------------------------------------------------- /src/ImageSharp/Formats/Qoi/qoi-specification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/ImageSharp/1226eb541c60f2179126acaa2bd30da87c0237e9/src/ImageSharp/Formats/Qoi/qoi-specification.pdf -------------------------------------------------------------------------------- /src/ImageSharp/Formats/Tga/TGA_Specification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/ImageSharp/1226eb541c60f2179126acaa2bd30da87c0237e9/src/ImageSharp/Formats/Tga/TGA_Specification.pdf -------------------------------------------------------------------------------- /src/ImageSharp/Formats/Tiff/TIFF-v6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/ImageSharp/1226eb541c60f2179126acaa2bd30da87c0237e9/src/ImageSharp/Formats/Tiff/TIFF-v6.pdf -------------------------------------------------------------------------------- /src/ImageSharp/Metadata/Profiles/Exif/README.md: -------------------------------------------------------------------------------- 1 | Adapted from Magick.NET: 2 | 3 | https://github.com/dlemstra/Magick.NET 4 | -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- 1 | # ImageSharp core libraries 2 | 3 | ## Coding conventions 4 | 5 | ### Argument ordering 6 | 7 | - When passing a `Configuration` object it should be the first argument -------------------------------------------------------------------------------- /tests/ImageSharp.Tests/runtimeconfig.template.json: -------------------------------------------------------------------------------- 1 | { 2 | "configProperties": { 3 | "System.Drawing.EnableUnixSupport": true 4 | } 5 | } -------------------------------------------------------------------------------- /tests/ImageSharp.Tests/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "shadowCopy": false, 3 | "methodDisplay": "method", 4 | "diagnosticMessages": true, 5 | "preEnumerateTheories": false 6 | } 7 | -------------------------------------------------------------------------------- /tests/Images/External/LoadTestInput/Calliphora.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:67172fcab405f914587b88cd1106328e6b24ab59d622ba509dcc99509951ff5c 3 | size 254766 4 | -------------------------------------------------------------------------------- /tests/Images/External/LoadTestInput/Earth.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2cdfeb0f3829f2179c3e00beed9863ebddd0814043a542b5b9f726616a8a0d7d 3 | size 4088390 4 | -------------------------------------------------------------------------------- /tests/Images/External/LoadTestInput/Lake.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b7332d4e0b1d31367e04458d7cb33fd83eac31a8299d59efacd200350ec032d6 3 | size 206342 4 | -------------------------------------------------------------------------------- /tests/Images/External/LoadTestInput/LargeTree.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:60af9c0ea0d24a9b1bf7058a79c3f43ccc3929547a9f0c4677005a11cd3cb468 3 | size 3129522 4 | -------------------------------------------------------------------------------- /tests/Images/External/LoadTestInput/Saturn.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f96c3c18c13cc376e0c3b2eb1767487a36777aeaa2518f4f2aa8b69a26d49fd7 3 | size 197951 4 | -------------------------------------------------------------------------------- /tests/Images/External/LoadTestInput/Snake.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f3d1b46db3b5974820fd2737db3f025d21b09c75aff73fd40ba6535dddf2ad70 3 | size 165200 4 | -------------------------------------------------------------------------------- /tests/Images/External/LoadTestInput/caspian.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a32e799ca8dc2d5f7acb14aafd8b9a604012240e651a0107eb77a26cf0fc89b6 3 | size 6911104 4 | -------------------------------------------------------------------------------- /tests/Images/External/tools/jpeg/jpeg62.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/ImageSharp/1226eb541c60f2179126acaa2bd30da87c0237e9/tests/Images/External/tools/jpeg/jpeg62.dll -------------------------------------------------------------------------------- /tests/Images/External/tools/jpeg2png-usage-example.cmd: -------------------------------------------------------------------------------- 1 | rem make sure the destination directory "test" exists! 2 | jpeg2png.cmd ..\..\Input\Jpg\baseline .\test -------------------------------------------------------------------------------- /tests/Images/External/tools/optimize-all.cmd: -------------------------------------------------------------------------------- 1 | optipng.exe -o 7 ../ReferenceOutput/**/*.png -------------------------------------------------------------------------------- /tests/Images/External/tools/optipng.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/ImageSharp/1226eb541c60f2179126acaa2bd30da87c0237e9/tests/Images/External/tools/optipng.exe -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/9S.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b54244f4ef0968568e0d8255707763f6c2027238ff66a22580ae12a019c33a9f 3 | size 2684 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/BITMAPV5HEADER.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9d99f80a05e0ddb6309c84846dfac7d2ef4e9cdda6ed437646bc0edfee7d3130 3 | size 174026 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/BMP_v5_with_ICC_2.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b5b483e9a9d3f3ebdeada2eff70800002c27c046bf971206af0ecc73fa1416e6 3 | size 27782 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/BitmapCoreHeaderQR.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:04709a3b7e9a73e87f12c5c63f66bc608e3cd61c23fcd38629bb8638bbb1b4de 3 | size 2580 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/Car.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9d3a4a30cd67db6ded1e57126c7ba275404703e64b3dfb1c9c711128c15b0124 3 | size 810054 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/DIAMOND.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1a7133850f670732c39cb343615f4443c934272002edfa5373a7286c1967e2cc 3 | size 2684 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/F.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6da008d2b285b2db946e6d4ebf8569b0ddd4a05ef273b38304cb65afccac87b3 3 | size 65502 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/GMARBLE.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:575d176563c98e71ec68ad9ee96e192393ba7a6296b0a27c55a3c1037fc18a96 3 | size 49585 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/PINES.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e6b6aa7b3f34cf370f7e34912fe5079b8e72cb5475722d658867d1a164957672 3 | size 61377 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/RunLengthEncoded-inverted.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4113b0ec1a834b902efa18fc8dc050eda1e18f9228cbc6b06b45d6337ad22c88 3 | size 7278 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/RunLengthEncoded.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37d9fe070ed05309a4baa81acc1e63c690b5a706d238ca200034d17dd53c8bb5 3 | size 7278 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/SKATER.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2a5d21e7eb2b48e277cd06c884dd98b66c2d036af57a8545316e0c68278bcf21 3 | size 7242 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/SPADE.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9f97211351e9fd297d81ab5cc359eab8fdf09c821c66458d722e3f3a80dc5e4a 3 | size 2684 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/SUNFLOW.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8456fc57a11d2d5f53eafc1aa49865db8df615bcbd4ccfd2a78e2ba024b9af2d 3 | size 51753 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/WARPD.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ad3623de4da91c037866a2a504d5b9c62c48224a1b399b5cbb72fb6b5a5f5230 3 | size 2363136 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/ba-bm.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ec70510334952d3fbeae51a9a49d4e50e5afc292a1f9232970a7cf22b1a18fc 3 | size 9000 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/bit1datamatrix.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b2288e2a059b15c7855eb141c05e3ce69431e7c3ddef851033f7fd9ca39a2d4 3 | size 102 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/invalidPaletteSize.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eaea78be2e8e5579e2469400b8d811b125be805459888c3bd390570d21ffeab8 3 | size 9270 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/issue-2696.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bc42cda9bac8fc73351ad03bf55214069bb8d31ea5bdd806321a8cc8b56c282e 3 | size 126 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/issue735.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d4b076196ca2559581b1e64f448b3dcefc78ba38a6f91953b2d7cfa95465d11 3 | size 1334298 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/neg_height.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81437b88a5d92fcb545fae4991643a0c73d95d0277dac0b79074971780008c8c 3 | size 6220854 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/pal1.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c631861fa4c4e959d2abc6e0db0106253989b0101223cb08020e116e19c97f77 3 | size 1086 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/pal1p1.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:620eb83715dd99a640b6c61f5337c2f01fd19246d4759a2bc0480b8ee960bf63 3 | size 1082 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/pal2.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bac6eec4100831e635fcd34a9e0e34a8a9082abdec132ac327aa1bfc7137d40f 3 | size 2118 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/pal2color.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ac541592afb207524091aa19d59614851c293193600eacb1170b4854d351dae 3 | size 2118 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/pal4.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:01f7bfaaf5110a404fb68451a860970750c155e5c46e1721fa6b9c500be0ca2c 3 | size 4198 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/pal4rle.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3c26b6bdd22311e03b1ac0713b0a3b6af5e579bef16694cbea74ae0c4a2599e4 3 | size 3836 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/pal4rlecut.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e3dcbe1f39144845f339a88c9cbf34adc3e0b355440dbcb13e987aec77bb2137 3 | size 3610 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/pal4rletrns.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2fcbaa0f387c57ba678ced91dfb2db5b2e544e2ed28a7875459e551b514daf84 3 | size 4326 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/pal8-0.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ae0f808fea31352b8667fdaf897d057c7e02483c43d43cd735f92f4f149fe8d 3 | size 9270 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/pal8gs.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:abb09008dc6af0b33db70ed01e4183f946cc90b647bd84b078794b2d97eb9c33 3 | size 9254 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/pal8offs.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:15ad578b6a6253334616b9e7e3a958f827b885eeffac1e3cf7e5247f96aca342 3 | size 9354 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/pal8os2sp.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e58eb53dcbf1c0920ad5af8d07f576ee794c1c5d051e1d950060ab6f6f253f50 3 | size 8974 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/pal8os2v1_winv2.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2bfe739377020722872f7fa3ba3ff3ff0daa17f2f202c80e25cf66c4ec30e506 3 | size 8986 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/pal8os2v2-16.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8085c60533095d9a756009f84c050d01605fc029a980a13d1bdabe943c50de5a 3 | size 9246 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/pal8os2v2.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e2597b53091d734900068b42cddaed7430261cc5eade32b4f19fd6c2c4568a52 3 | size 9278 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/pal8oversizepal.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:51c89919fc6b85cc11850054ff16bb947c11dead620e35a92e46d7b0fde79faf 3 | size 9446 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/pal8rlecut.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:726c092da72e5412d2e1a0e3d9e35ee3630869e368fd4534c631f53bb5608a11 3 | size 7980 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/pal8rletrns.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:445b856331c5d03054887d6555f56a8882f0aabbe0d59e322d9ff0be7f0eee94 3 | size 9212 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/pal8v4.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4dc4a9725f4c7b7b8ea1e181d1aee9355fe724dbd949ab562b3b364df9c90d64 3 | size 9322 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/pal8v5.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:65ac4a579189d2fc30b3499b8246f30127e032f35d6cde90335dafe87a1b23c3 3 | size 9338 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/rgb16-565.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c2ffadac9c1239fb397834415c7b5f85d5c6044bd9c31fa66e23056a19b82b1d 3 | size 16450 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/rgb16-565pal.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bcf485398db9c92235e5e9a7c20aaf3899ecf00ccdf25680f85e0797df610ea4 3 | size 17474 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/rgb16.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fcecd482048c853d08255430c5bac462821522683f4429626442580058aa5e5e 3 | size 16438 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/rgb16bfdef.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3c5d1d67482b769d875b552e6012b80434880f763c9d56a45a94d07bbbe16fba 3 | size 16450 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/rgb24.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a9c4fbfbf8cb6df8d2d9d1484359d037aebd25078b21137bfd6c69739fcbe2e1 3 | size 24630 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/rgb24jpeg.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c09aad5b4717408e42d7cdd3d51d884d20be6a69adf73c7afcc47201df051f30 3 | size 2457 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/rgb24largepal.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:62976c8077dddd97b7de7396d70d6aaded717c387a5272f3f6e18bb4abcd5f45 3 | size 25830 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/rgb24png.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:07dcf8ac7fceee50ba5c3d89ece956e14b9bb4ea05f0a2b75f6958150d3d7a03 3 | size 1210 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/rgb24rle24.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:351d358824671a79dc63147a78fc555d46cbee357661674e80c898e133e0b5c5 3 | size 21432 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/rgb32.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b4c79cb8ffd2f1c096af27f9d82b5feaa0aa2cb049c791e0f6251de0435066e5 3 | size 32566 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/rgb32bf.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4c1189e3a039b1e5aae6347024684937c495a5736a3c309dc7c2e3c161f89751 3 | size 32578 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/rgb32bfdef.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:54d89660058b6ade17f54d0664b67ced375bbd67db9b89a4ada3addeaab7381a 3 | size 32578 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/rgb32h52.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9baf23d23b75ad2a641decce0e5b59640b3359ff327eecfa1b888595a6b502d6 3 | size 32578 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/rgba32-1010102.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3a784719de2d33f8678ea0efb8b52be662e0f126e723150010057cf8fd89e777 3 | size 32650 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/rgba32.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:257e0127fa0ccdb6eb8381338dda0fb692b2ea4d38775f1aed56dfdccaed2ab4 3 | size 32650 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/rgba32abf.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d2183466e05c768b5a9d2ce5d132d72db2272bb331c7b27560d24f197f4165e 3 | size 32582 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/rgba32h56.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:12d76fd71a341c80a80a5c0116dea8d7338fe801d8483b594124d7b20ed1d782 3 | size 32582 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/rgba32v4.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c932d7241122b221ab8f35c427082643ea0241493276c5aef0e64a49b8b55b6c 3 | size 32634 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/rle24rlecut.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:15b84ee3e41934653939197267758e6719da93d017200a7b9e61820b368af04c 3 | size 16748 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/rle24rletrns.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37caf0742ebc94e4ff73b822052091db543559fa96352b83a3e5f5545999c5f7 3 | size 20036 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/rle4-delta-320x240.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:514d8bafa663017276ce0a91eb90025bd5e0296984c50f0da2f477cd27ff6d68 3 | size 3686 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/rle8-blank-160x120.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ffb99a2ee179388c1e379492fee83e67d600fbf740fbcfb0a4cf8e4d42a662b3 3 | size 1080 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/rle8-delta-320x240.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:522a154731ea38e4ee29b4f27672b7d881bcfb1f0954fae126e79a27a63d5f06 3 | size 4646 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/test16-inverted.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:474f93277f764b75ec91446fdffb8f290a6073236aed468a65cba5a333707c7d 3 | size 16438 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/test16.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:472193f2506d768c45ec167518cb7da56e0e8707887431db20d1cfa5f61bd235 3 | size 16438 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/test8-inverted.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:407c948e576330f603b3692c3d37248f8df31067f79e424dba6757066c97845e 3 | size 9270 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Bmp/test8.bmp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3551fbb385b6d7d54e2f0372f79e5701ca9215e4efdddb429ec5d7942367107f 3 | size 9270 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/18-bit_RGB_Cube.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5148c8c192385966ec6ad5b3d35195a878355d71146a958e5ef02b7642a4e883 3 | size 4311986 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/GlobalQuantizationTest.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c67df4b08561c14054ed911e6cfc99f1fc726b32e2c7a5e2dbb8392e24109b5a 3 | size 101868 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/animated_loop.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a8750149c953e9e910472684158c07a2cb551c1f7e95744ab48db1a67f63f342 3 | size 873 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/animated_loop_interlaced.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c2bc2f895f03092b1c26381a32b5dd5838aacd3331e07f7e4dae55d5cbb4e149 3 | size 878 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/animated_transparent_loop.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3297987894ba27c2acc6a5c447c3d3a52cc169447b451409535decccc1743e55 3 | size 536 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/base_1x4.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:56e2409223f140145db2ba405f5562451dc0fa9d4274830fb02bd78d42552162 3 | size 1620 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/base_4x1.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:24fd7e9dd3c6516ddab7336a30efc5901754b6d43a9d989c6fbb3e06d8944c80 3 | size 1620 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/cheers.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b5202bd7af61f7ff689dbb5338eb8d143dc7a90e6d42ac2d9e822bbeb0c1f57e 3 | size 3083670 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/giphy.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3f42abd9f3e493a0acd5303ab0d37a6179835c5a14364a1f001abd9d9e906f96 3 | size 53655 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/global-256-no-trans.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ce8ed23b4e21328886f5aa7579079123ff6401efdf65e162e565b056ffddab56 3 | size 669286 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/image-zero-height.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37248eeb127e43bb002f621409cb6dabaa6b58a62612d26009722c4ae7c83dd6 3 | size 30 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/image-zero-size.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:518aa6f50b003b76e8b65e798d2a37b6dad7dade96d0a7db73da88eec07efe0e 3 | size 30 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/image-zero-width.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4cde31fe4bcc863f70f66c5a57d62647b11512920328fc5658399ef566ebebef 3 | size 30 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/issues/bugzilla-55918.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d11148669a093c2e39be62bc3482c5863362d28c03c7f26c5a2386d5de28c339 3 | size 14551 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/issues/issue1530.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08b33cab34de2622a7d22edff25fe479a5018c2e0fbc65870b2f21ea7901fc61 3 | size 1844876 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/issues/issue2012_drona1.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cbb23b2a19e314969c6da99374ae133d834d76c3f0ab9df4a7edc9334bb065e6 3 | size 10508 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/issues/issue_2198.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:48bd8a2992c3aeda920250effb53d4e9aef09c76dc5d0c5fade545ec5ba522a4 3 | size 1863378 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/issues/issue_2288.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d38bc98de425322bc0d435b7ff538c170897bfc728ea77ee26dd172106dcf99a 3 | size 1223216 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/issues/issue_2288_2.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8919e83c8a19502b3217c75e0a7c98be46732c2126816f8882e9bed19478ded7 3 | size 811449 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/issues/issue_2288_3.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d3f0fd68a03e9c1c896e021828f470d9ceeb8f10e1aead230e42e55670520840 3 | size 958995 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/issues/issue_2288_4.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0ac8bc8677a1eb4e26161e5255a5c651321ff063892f3caec3f95264aee38057 3 | size 1971226 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/issues/issue_2450.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:de38adf0b7347862db03ef10f17df231e2985e6f0bfa2eb824d9bbca007ff04e 3 | size 4107068 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/issues/issue_2450_2.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:af7c04d8a5db464be782aba904ad1fc6168d5ab196fef84314b1e2f6d703e923 3 | size 29995 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/issues/issue_2743.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4be51cb9c258a6518d791ad2810fa0d71449805a5d5a8f95dcc7da2dc558ed73 3 | size 166413 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/issues/issue_2758.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:13e9374181c7536d1d2ecb514753a5290c0ec06234ca079c6c8c8a832586b668 3 | size 199 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/issues/issue_2859_A.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:50a1a4afc62a3a36ff83596f1eb55d91cdd184c64e0d1339bbea17205c23eee1 3 | size 3406142 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/issues/issue_2859_B.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:db9b2992be772a4f0ac495e994a17c7c50fb6de9794cfb9afc4a3dc26ffdfae0 3 | size 4543 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/issues/issue_2866.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0b2a9e3728c41e1b45d6f865e4692eadbed28dcaec65806e6bda22a9a16f930f 3 | size 7526725 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/kumin.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:345556b9a0e064412acc3b2ee87a9226113eb65c0a1791c2f855ac3fa1e6b7ad 3 | size 868269 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/large_comment.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1dd294f02004595498918567295a52d1f95243933f7c068ccbcce936a88d1b70 3 | size 1236 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/leo.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ee2bf4404165d534dcbfaebece0eee2a93999c47aec26850a7021b8c5d25f5c 3 | size 454544 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/m4nb.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b5b495caf1eb1f1cf7b15a1998faa33a6f4a49999e5edd435d4ff91265ff1ce5 3 | size 2100 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/max-height.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8853634077f425f4b2077f4ca0c986e4ac0e549a8601859b0578a3ccbdbdd5d4 3 | size 405 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/max-width.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:008e2a84afed6c31b6635aa9d8c7ee2176f01a0eb0a04143883a8533d7ca33c9 3 | size 405 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/mixed-disposal.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bd7d4093d6d75aa149418936bac73f66c3d81d9e01252993f321ee792514a47a 3 | size 16636 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/receipt.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bac212852eee73f3c29f30be0be375e5caccbe86e5f4adfaa8c0a7a3673a91ab 3 | size 50686 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/rings.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a7b9b5f5056a8d90134d72b462bf37675ab37aa2551ffeae0072037a0a27ad74 3 | size 53457 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/static_nontransparent.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d0a5e1b2f0c5c1763eb950a1d92c5317f048875e04e88dca7f1a966552c2774c 3 | size 678 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/static_transparent.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f73f56bbe2206bd1cd8a4625b6a4d61506214b37b61ff3e8194e2030b28abca5 3 | size 341 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Gif/trans.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:99b20b417a63c30f62fa69a00fa0a76c2cb9848988e5def1b886460a129197f7 3 | size 13707 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/1bpp_size_15x15.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:846dda605ee23bb641534b272fa57300eacd85038feea5dd1a3f6d4b543a935e 3 | size 190 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/1bpp_size_16x16.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:029d0438eda83d4d9e087cf79abe2d0234728c37f570de808355c0e79c71be17 3 | size 198 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/1bpp_size_17x17.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8db024a49fdd91c9d5d1fc0c1d6f60991518a5776031f58cdafbdd3ed9e4f26b 3 | size 206 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/1bpp_size_1x1.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f13d1bbfa5b29bc386270cb492b705eded0825a9eb3a6341f4ea2b3dbe085cd1 3 | size 78 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/1bpp_size_256x256.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c1aa37daf2fd65b424c5e13e94bed165328e624584cc5664d73bb4030a1e1f12 3 | size 16454 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/1bpp_size_2x2.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:18be2a5384812de1bec70733fb0b283a159edc5d0bc03981de8fb3ccddb8911e 3 | size 86 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/1bpp_size_31x31.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a3a4e7964e3ed5ca2a98929e2f903a6b969961410aab6a935a0c54fbe716d0c3 3 | size 318 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/1bpp_size_32x32.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:06a55f8219234e43beec6776fe15a7d6d4ad314deaf64df115ea45f2100e5283 3 | size 326 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/1bpp_size_33x33.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:82fa82f6b954515eace3cdd6d4681abd149b37354a7dee4f0d1966f516f27850 3 | size 598 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/1bpp_size_3x3.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ff0bf1c415925642d99691a9a9a6b92d9995447bc62ed80b9b0c6d4efdcd19b 3 | size 94 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/1bpp_size_4x4.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5853ba73b06e0f2a0c71850011526419db3bd7c76e5b7b2f6b22f748ce919bf2 3 | size 102 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/1bpp_size_5x5.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ecd253a6862ec9a9870c8a8a370528b28c22d23247dfc29e09fab65d95b9416d 3 | size 110 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/1bpp_size_6x6.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a80c7f8d37dc3997bcd674a5af835cae802cacbf5d65020f0aaae67f70cfc31e 3 | size 118 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/1bpp_size_7x7.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:00a26274e8563e6378f8bfa4d1aa9695030593a38791ca366cecd3949b0f52af 3 | size 126 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/1bpp_size_8x8.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:78150aee2f5d5ccd2a172abfe11f1127efb950cb9173e22e380809afb2a94d3c 3 | size 134 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/1bpp_size_9x9.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d8cecf833b31208710c1dde1bed3322a95453468a3f4b39afdad66ac9bc5f86b 3 | size 142 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/1bpp_transp_not_square.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bd9f41711b53d4e1e915ddb992522b97a981fbe3f4536826f0c66e2d6a3677fb 3 | size 182 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/1bpp_transp_partial.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cedcd221abf4b95115f9f8f34f15da456b09e7e56972cced24a99fa56bf8aca9 3 | size 326 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/24bpp_size_15x15.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b506403852d936d14975ed9aba1c50ab3873cbbd81afcf38381f8e5e841fafd0 3 | size 842 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/24bpp_size_16x16.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8bfa9de0f613e9e82e9037193c4124f87d05ac1390459e2f018da45c16200de6 3 | size 894 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/24bpp_size_17x17.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a4cd2ad22e55000a706d365e0a3395f3e4d9a3933c00880d5f12903ac0aed60e 3 | size 1014 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/24bpp_size_1x1.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b20e9a6479c3831b7af75d30bc909ce3046e45384bfd62d7a10ac6816c1c947 3 | size 70 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/24bpp_size_256x256.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1175641f39e68bd6cd38b8f64f02510b22c5a642afc7503d357b064163b3d37b 3 | size 204862 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/24bpp_size_2x2.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:72a1380a306b51ae37eabd3edeb0b134b0f8e8e120e6c64b6b08bd833a9c70a4 3 | size 86 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/24bpp_size_31x31.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:574b0971908b44334f1f3be79e5b0ff336e74a8b9947b43a295d3a2b86733965 3 | size 3162 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/24bpp_size_32x32.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fa45880e5611436fc06de0603481d0a61044e52a1a053961fdda1139bb5660a6 3 | size 3262 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/24bpp_size_33x33.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8704a77d6264f6f104e23950099e3d3a4a577787e67c7c39d7925f9d0a347572 3 | size 3626 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/24bpp_size_3x3.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81229c27fbc684c0da99b1b04189046d5b9f531ee4111ccc43bde6404dce4f12 3 | size 110 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/24bpp_size_4x4.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7cb620eb83acbf20d308f5c6cb8b0246b8b156cdcc43e39f5809754fd4d5ddb 3 | size 126 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/24bpp_size_5x5.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bdf1718e3d9695cdf2552e42219d1e3166ad5a94f53cbb44db4a7222e2a32f9a 3 | size 162 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/24bpp_size_6x6.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1e5f3a8f59e297cf67251a89558d4406c4c515c3e3ce7555df4a53ef5420fc38 3 | size 206 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/24bpp_size_7x7.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0ee1b5836c9f8c89e9b8c8873f1ad92f7555ed9706f4dc76345a727bf3e9f334 3 | size 258 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/24bpp_size_8x8.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b46ca32ddb84074d9140224738480eaa0a6c0dce2dbf2074625add1901c27117 3 | size 286 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/24bpp_size_9x9.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7454d6332f4bdba929d610e4a8a232b1443d5a64119de4e69c00e0f03e55e237 3 | size 350 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/24bpp_transp.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eb8ea41822350e5f40bac2aef19ec7a4c40561ce6637948b3fa6db7835c1fded 3 | size 3262 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/24bpp_transp_not_square.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:44b4c79ff497df0e99f55d68d82f59c0d7c2f4d5e9bb63bcc1b5910f4a2853db 3 | size 1126 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/24bpp_transp_partial.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f8d109413d7f699b92e9d6a5e2c52d2b5c747f2ca9ff31d326f8d4ec2fd5840f 3 | size 3262 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/32bpp_size_15x15.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:02b5abd8e15ef2fba1a26cdbdf6e8f66abbbf9aa188404ef911a1d2d02b7b050 3 | size 1022 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/32bpp_size_16x16.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:50bb07bd12f9b388ba6a3abbb815aaf1c800438e35ec48201269fa23342e5622 3 | size 1150 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/32bpp_size_17x17.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6bf4c701d38fc988186e3fcfee6e426ed5a84807b54b91e4ab8c1b12e0794746 3 | size 1286 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/32bpp_size_1x1.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f62be892b36609a57c34eb4784dfb6dc82698ecd15709898a6579ee4f21f668e 3 | size 70 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/32bpp_size_256x256.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b15f75adc54e70c4751cf9973854f225ef15b12bdaddb5ab00cb9edfd8b386b1 3 | size 270398 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/32bpp_size_2x2.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fa859752136cdf055874ae71589f9585aaaeaef804b13ce192991793d9e57e57 3 | size 86 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/32bpp_size_31x31.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d5ecf1dc1fdd3dc6cb2fd90b49632b19260e73ad3a6624372d1e9eefc470ed6b 3 | size 4030 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/32bpp_size_32x32.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:395ccdc596487ed63db4d893d03b6aa24743b37279d896196d8d38e7028415ea 3 | size 4286 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/32bpp_size_33x33.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7e8b89c061abcf959b90149585cc34237aad19e1f67c162d62e5adbad4826970 3 | size 4682 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/32bpp_size_3x3.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:52b7772a9c8fae189abc3cf37d5d24bcdfe94077e6b1cf7be8cc7e0bc6f6bddf 3 | size 110 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/32bpp_size_4x4.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2bb0831fab10fb0ff9a0b2b2ea137609a45a6ec3982d594878996eafc32836ad 3 | size 142 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/32bpp_size_5x5.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:10e2ed5cbacc761f2d467c22a8d72dcc4086b9423c5487ba05826804c642730a 3 | size 182 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/32bpp_size_6x6.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ab79a308d24592557b368f00566999d777e38de385eb6ebabc90d53ac723ae9 3 | size 230 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/32bpp_size_7x7.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3799164811b0284535fa90ca60f13e9c0754ca4e8f00d96a83951e91e748d760 3 | size 286 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/32bpp_size_8x8.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2a3187750c9313024f983fdfca270f5db2c5d730831adfce0fb19ddac25deecc 3 | size 350 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/32bpp_size_9x9.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ab8bd47cc2d2ce0e9c1a5810b5ccbe3f46e35001114c18f34cbf51ff0566bf6 3 | size 422 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/32bpp_transp.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b4f94718304fa41041b8cebad7b76762d410b366b46d620f5599b03a2fa7ba00 3 | size 4286 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/32bpp_transp_not_square.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6e3c2061b64df989e8ae68aee993eba5e11d03e23f282f063cc3929ec3ef2b0c 3 | size 1462 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/32bpp_transp_partial.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c5bd34021ec302f203c39d038854607d9fe8bcd3133ea57b65ebc6da81aa8a4b 3 | size 4286 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/4bpp_size_15x15.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dd1fd73648c1b7acc4aef4e0c4e6672ab7241e47cb52345c4459aa86185f4dfd 3 | size 306 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/4bpp_size_16x16.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e5f8547e5e6aae3a2f662fa266d0f78731d310fb051f99dce5693d6adcbfbb4f 3 | size 318 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/4bpp_size_17x17.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1fd0286a127371d4b40a5c30c6b221753a711231e386b636fcb07d2f1f92967f 3 | size 398 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/4bpp_size_1x1.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:313f969c26d12cae6e778563d1c6c9df248c5d28ff657ad5054a280e06573106 3 | size 134 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/4bpp_size_256x256.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dcad369c1e56dd01b8644a5903ad25af19cc78047b5e0821546d1171a0ab31ff 3 | size 41086 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/4bpp_size_2x2.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:11b1142401678412ce8718dd6e943fab05ec7974c7ae36286316e7f4d168f0f5 3 | size 142 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/4bpp_size_31x31.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2b19f60f3441b268a19be0f99078d079c4eb416b882118071ad43ceff41ca40b 3 | size 746 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/4bpp_size_32x32.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f0863b486575dca2d5e3ce07da10cb30e039524f17026d9668d75bad780e833 3 | size 766 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/4bpp_size_33x33.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:64b77f80fb48237a0f9cfbd808289e53ed7a70b107f190c93d76d32342829ccb 3 | size 1050 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/4bpp_size_3x3.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f8cb358defec66494d3be4eb01fd7e304edfd04435b4552d51769d0858659686 3 | size 150 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/4bpp_size_4x4.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:53083ae340dcc04d88acaf9d75a2dc68b23500c294eb3ed4e15e3fba86c5843f 3 | size 158 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/4bpp_size_5x5.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e4f1401d87e285b18e6f818dfb00a3fb275e72e2fd4bce6652bfdd74bf9565f3 3 | size 166 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/4bpp_size_6x6.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a3fa6bdd6125a9de6d3ddaafd5e62e0435b14c52f82239a6d36d44aaf5a49361 3 | size 174 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/4bpp_size_7x7.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c4025a4bd2dde619f950f69d38e042ae38d2a1840d7b00540c372546b5d8ccb0 3 | size 182 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/4bpp_size_8x8.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:332563676808485aac8e2635baacad3f4d1ce5fc64c6be07daa25962f4fa1687 3 | size 190 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/4bpp_size_9x9.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:da5169395108194503853db2f431e0d02b98a191a1bf597c31fe269e7d84206a 3 | size 234 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/4bpp_transp_not_square.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2dede473b7a427029cdb319ecf04aaf71cf8ce1d806efb65d7e3844ebd1703f9 3 | size 350 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/4bpp_transp_partial.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7e0617f49eb057ab0346203e0cd04fd4e93de71053bbbfaa3c9655696b10a80d 3 | size 766 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/8bpp_size_15x15.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:577c86aa8b78cca86885ed20b702b260150eacf738beb18da28c25bcb01cfdcd 3 | size 1386 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/8bpp_size_16x16.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9900b6783aac800836e19890f11fda1bf1d2138dee63403adbc79bf207a71dfd 3 | size 1406 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/8bpp_size_17x17.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5b1c214eb0fd9f5b1f1da4ceeb98a3cc0d7b6b02d7ed6aaa5138078e48bf8613 3 | size 1494 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/8bpp_size_1x1.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:032c11a8e5aaa5f9beb997c83504233b5ad278d3a4e129cd384a4ca62950a998 3 | size 1094 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/8bpp_size_256x256.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7aa8f4fc33c541f88318d7c36a5b5e964cb0470c541677790b49b85638c63fd6 3 | size 74814 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/8bpp_size_2x2.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6e1c2b72b6ddf0cfedd9e20e5abf3ae3fd19066be811251bb9db404e6dabe279 3 | size 1102 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/8bpp_size_31x31.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9a588e6f1031c1c8f0d66b9eef770d01b3f79aaea4203d58ee07255c1c6ee258 3 | size 2238 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/8bpp_size_32x32.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6b00ab33cbb42e9f499844e5add713fcc83854cc2cb104d5c9bd04a456662099 3 | size 2238 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/8bpp_size_33x33.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e356bb9200375f8fcbc5a0ed70353194a7b1432133e0c61f0b2f03bca3888080 3 | size 2538 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/8bpp_size_3x3.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:13cccd62e97bbe6cdd6ca5c4bc765794c7babd3638ff4d09b116a62c3c50be56 3 | size 1110 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/8bpp_size_4x4.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4343544be11a37083219d99d2dfb4a16b02c309d54223897d6c71503414cc2ef 3 | size 1118 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/8bpp_size_5x5.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b7cfdf4a0d696573a4cb5291e3165c98444692f1d03a3cab1630df33c765ecd9 3 | size 1146 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/8bpp_size_6x6.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d8d36eb593ee34d22e5ff99a08f2b177dbb92355f85210b2a9e53d7ce9e2cc6b 3 | size 1158 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/8bpp_size_7x7.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29050464e324a70bb8a41fb5732b96dbf3bcb36a74ca29775e1f37b07b9ee582 3 | size 1170 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/8bpp_size_8x8.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b46ca32ddb84074d9140224738480eaa0a6c0dce2dbf2074625add1901c27117 3 | size 286 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/8bpp_size_9x9.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4ddeaa63b1ec9d389c140499e2b5d2e911a57d8f37467696bb9e9ec3e60ec77b 3 | size 1230 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/8bpp_transp_not_square.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:04a255b4cd43ec7005a9a946c2b3dba57eba709b16be85ef77e553943d35f745 3 | size 1478 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/8bpp_transp_partial.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:20abca3096b955bc91ed95d194ff3f856473d6d372b5bea0d8c75fd20a231a26 3 | size 2238 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/aero_arrow.cur: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:06678bbf954f0bece61062633dc63a52a34a6f3c27ac7108f28c0f0d26bb22a7 3 | size 136606 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/cur_fake.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6679016e7954e335cef537630d122cc3a7a05cb2f3ef32f72811d724b83d4c28 3 | size 4286 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/cur_real.cur: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6679016e7954e335cef537630d122cc3a7a05cb2f3ef32f72811d724b83d4c28 3 | size 4286 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/flutter.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c098d3fc85cacff98b8e69811b48e9f0d852fcee278132d794411d978869cbf8 3 | size 33772 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/ico_fake.cur: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d3a3185dcf0a2c3f5d3fe821474f6787c4de7cffe08db6bd730073ad94e7538 3 | size 4286 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/invalid_RLE4.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:43c543a1c66608a89f0b187afa1526af4be4f7c94265897002b3a150328b964e 3 | size 86 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/invalid_RLE8.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b55b3f3f87d9d5801150ffd999c62623528a33d031ca8d6fe665be3328d8c94d 3 | size 86 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/invalid_all.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:93c4f059ced481667315dd7b90e9c1beed0a42a08f3ff8e51e2388919fafa79a 3 | size 283 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/invalid_bpp.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:396bfd08531fc0eae8b5e364ef4c62035e8493a3f59286dedbca6f441d8e9690 3 | size 86 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/invalid_compression.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f051ed80db684748d2b2669c77b95068e209b2fe2917fa65f6218beef4dcead5 3 | size 830 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/invalid_png.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:61bc9e74d8fd9f72c8ccaf9a3887c517e17c0a39d9d41acabc3699be545b9703 3 | size 901 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/mixed_bmp_png_a.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:47adfa4e36adf74ae49cfa481cb54cffe659c09d4b52765e973b6adc8cc31e97 3 | size 3653 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/mixed_bmp_png_b.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:96338768d8f9c90a6af94268dc55d94809a412c3164c381926b3759ffbf2df79 3 | size 45693 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/mixed_bmp_png_c.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e9be0358616581f45eddeaee474c0ce0be8a82279428f5ef1890b2fb6f0c0d27 3 | size 164189 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/multi_size_a.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dba75ec62f5785ce5d16c2c5c04637b18ccb164917092373b3d470326e7bc0c4 3 | size 17542 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/multi_size_b.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d7ac6313ee263103f4ab6aa5147b1d85bf5ff792c0980189aac9bfab1288011 3 | size 99678 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/multi_size_c.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:85e04b807e084bc9a0e1a65289e21ca1baac1e70c3a37fabbea7d69995945f08 3 | size 202850 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/multi_size_d.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4a0ce27b63b386c4fdbf7835db738f0e98f274f5a112b7bd45c32dfab93952a0 3 | size 216804 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/multi_size_e.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:363ff3655e978ffe30a8cefec3bd4202a1ae0a22f3ab48e56362f56a31fb349f 3 | size 372526 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/multi_size_f.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:04701ce87eb82280a4e53d816a0ac3ee91ebc28b1959641bddb90787015ff4a8 3 | size 3084 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/multi_size_multi_bits_a.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a1561795509c9e8dbf0633db9b4c242e72e0ebe4ae9a7718328e96b6b273c3ca 3 | size 4710 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/multi_size_multi_bits_b.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe15c1a8ca4bae0ad588863418af960fb62def2db4abfcae594de4fc1b2304a 3 | size 31134 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Icon/multi_size_multi_bits_c.ico: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c5afa3da7d278c1d2272581971117408c38ec5fe3aaac17e5234f7a8012fd9e2 3 | size 72513 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/Calliphora.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:67172fcab405f914587b88cd1106328e6b24ab59d622ba509dcc99509951ff5c 3 | size 254766 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/Floorplan.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:de00b34b78dfa0886c93d8dd5cede27b4940d5c620e44631e77e6dc8838befc3 3 | size 161577 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/Hiyamugi.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff20d5d0ad75e648b1ea388f65fb41d02bd2a049cd22ef86a4648b357bde94ce 3 | size 540458 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/Lake.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b7332d4e0b1d31367e04458d7cb33fd83eac31a8299d59efacd200350ec032d6 3 | size 206342 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/Snake.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f3d1b46db3b5974820fd2737db3f025d21b09c75aff73fd40ba6535dddf2ad70 3 | size 165200 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/badeof.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:781a46b044fd8a8637919481f5dd4426874d5acf22eae2376f853b35a6250628 3 | size 5770 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/badrst.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:af18f0bf30231d2c4c0e6b80d4636237c2851f67763788de12931fd1960c4ff3 3 | size 74497 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/cmyk.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:013c1673f618abec6afff4d9b9a69b95e0e8cc1f61aa34993208601c346b5677 3 | size 2531270 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/exif.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a9d04b92d0de5836c59ede8ae421235488e4031e893e07b1fe7e4b78f6a9901 3 | size 32764 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/extended-xmp.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:000c67f210059b101570949e889846bb11d6bdc801bd641d7d26424ad9cd027f 3 | size 623986 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/forest_bridge.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:56b3db3d0e146ee7fe27f8fbda4bccc1483e18104bfc747cac75a2ec03d65647 3 | size 1936782 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/iptc.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6c8a0747d9282bfd7e8e7f4a0119c53c702bf600384b786ef9b5263457f38ada 3 | size 18611 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/jpeg-rgb.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f4630c33d722a89de5cb1834bffa43c729f204c0f8c95d4ec2127ddfcd433f60 3 | size 10100 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/jpeg400jfif.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f4fc842ed15a8c451d25f2595d68b533777b19f10748d961ab2b0afcc51bcc07 3 | size 45066 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/jpeg410.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:318338c1a541227632a99cc47b04fc9f6d19c3e8300a76e71136edec2d17a5f5 3 | size 9073 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/jpeg411.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:70315936e36bb1edf38fc950b7b321f20be5a2592db59bfd28d79dbc391a5aaf 3 | size 4465 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/jpeg420exif.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:223f9ca11722e7eccae9eadb158fa2c7bf806ed0aa6ee4390a96df7770035ba4 3 | size 768608 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/jpeg420small.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ac2cbbe4e6240cff33468e780eaf3de8a1800e5b8cdce5a9959268c17d566e92 3 | size 5276 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/jpeg422.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be21207ecb96bcb0925706649678c522c68bf08ee26e6e8878456f4f7772dd31 3 | size 3951 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/jpeg444.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:89c632bbc42bc917f81e7c47595c95cb914a619604ac07b8cebf6fd4d1d744ca 3 | size 5667 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/lossless.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8937e245885e1f280e1843ad48a4349ec1a3f71f86c954229cd44160aeeaaac4 3 | size 209584 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/ratio-1x1.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1e9410c16bc61f08bbc18ae0e0b13181c9c4f57c66e82a7c6e593a57f40756d7 3 | size 34674 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/testimgint.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:491679b8057739b3c8e5bacd1e918efb1691d271cbbd69820ff8d480dcb90963 3 | size 5756 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/testorig.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:acc6ec555d41d15b368320edaa3b20958ee6fa97cb6e4a18d1213d5ae8bec73b 3 | size 5770 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/testorig12.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:34790770f76db8e60a7765b52ca4edf5f16bc21bcb8c6045ca2efef39a8a013e 3 | size 12394 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/turtle.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9e5c576b0c5e743cfd498b110305268ecbae63c62061ba6c7eb8e060728191f1 3 | size 55126 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/baseline/ycck.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:33e3546a64df7fa1d528441926421b193e399a83490a6307762fb7eee9640bf0 3 | size 611572 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/icc-profiles/issue-129.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e1728dd548d862ef3f960c82528716e0ad1b8eb0119a5eed4dfde51026d7bb74 3 | size 2903429 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/issues/Hang_C438A851.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:580760756f2e7e3ed0752a4ec53d6b6786a4f005606f3a50878f732b3b2a1bcb 3 | size 413 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/issues/Issue2133.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7be837f931a350906f04542a868c3654a35b4f463ec814939aed3d134c7e56fe 3 | size 1140 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/issues/Issue2638.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:208d5b0b727bbef120a7e090e020a48f99c9e264c2d3939ba749f8620853c1fe 3 | size 70876 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/issues/issue-2315.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f129b057efb499d492e9afcffdd98de62aac1e04b97a09a75b4799ba498cd3c1 3 | size 319056 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/issues/issue-2334-a.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:75d7e645cc359340a0a77f13c842551dce8f82773d2eba18bf18b149dcf9a2ff 3 | size 411155 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/issues/issue-2334-b.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ad6725bfa405454f6fb524dd632a53367f8853fd4a68705c773f0aeef068f7b3 3 | size 159229 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/issues/issue-2478-jfxx.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6bd5d14cbbead348404511801d7a2bacab19174e9f4063b5d2cec96f28fd578e 3 | size 300170 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/issues/issue-2564.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08f215c777b6fe8e315f18b7f93611c90fa86fefb8e3d37181890afb3068d8bd 3 | size 939150 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/issues/issue-2758.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f32a238b57b7073f7442f8ae7efd6ba3ae4cda30d57e6666fb8a1eaa27108558 3 | size 1412 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/issues/issue2517-bad-d7.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:650a933db9c4f76fa3e6a8ed35d061a5740c613acd1026d99461eb014d8947b2 3 | size 179015 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/progressive/ExifUndefType.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6c8f3a1392c59bd60a71c689e04bc028a5b6dc7051edbb17cee2e48d91245f98 3 | size 6582 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/progressive/Festzug.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:06239c321880733aad329338a647b565bf7321d74523ea3fc3b6ced45d7b2058 3 | size 49977 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/progressive/fb.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:93bb4d6281dc1e845db57e836e0dca30b7a4062e81044efb27ad4d8b1a33130c 3 | size 15787 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Jpg/progressive/progress.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a9a1f0da3c5b3a3e7e7f35abe9f5b458163b48ca56226227b3d3cffe06af1971 3 | size 44884 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Pbm/00000_00000.ppm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b291c0d3a0747c7425a3445bea1de1fa7c112a183d2f78bb9fc96ec5ae9804e 3 | size 2623 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Pbm/00000_00000_premature_eof.ppm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:39cf6ca5b2f9d428c0c33e0fc7ab5e92c31e0c8a7d9e0276b9285f51a8ff547c 3 | size 69 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Pbm/blackandwhite_binary.pbm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0313a99c2acdd34d6ba67815d1daa25f2452bfada71a1828dbcbb3cc48a20b20 3 | size 48 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Pbm/blackandwhite_plain.pbm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:12ccfacadea1c97c15b6d192ee3ae3b6a1d79bdca30fddbe597390f71e86d59c 3 | size 367 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Pbm/grayscale_plain.pgm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08068b4d30f19024e716176033f13f7203a45513e6ae73e79dc824509c92621a 3 | size 507 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Pbm/grayscale_plain_magick.pgm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ec652ee7ea1a82d8ea2fd344670ab9aee2c2f52af86458d9991754204e1fc2bb 3 | size 464 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Pbm/grayscale_plain_normalized.pgm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e39342751c2a57a060a029213fd7d83cb9a72881b8b01dd6d5b0e897df5077de 3 | size 599 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Pbm/issue2477.pbm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d625635f7be760fbea935056c0f6d046832dd74bba33a1597b52ab3dfe0c5e4e 3 | size 4956 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Pbm/rgb_plain.ppm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:895cd889f6723a5357936e852308cff25b74ead01618bf8efa0f876a86dc18c1 3 | size 205 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Pbm/rgb_plain_magick.ppm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f38a31162f31e77f5ad80da968a386b2cbccc6998a88a4c6b311b48919119a1 3 | size 149 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Pbm/rgb_plain_normalized.ppm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:59be6295e3983708ffba811a408acd83df8e9736b487a94d30132dee0edd6cb6 3 | size 234 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Pbm/rings.pgm: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b5382e745e0447f13387ac02636b37baf3b4bbd3bc545177d407fd98a7cbe17 3 | size 40038 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/AverageFilter4Bpp.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7add6fba794bc76ccea2ee3a311b4050cf17f4f78b69a50785f7739b8b35919e 3 | size 181108 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/Bike.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:66188aa1e0b12e35598a3f1d7abf17aaa2a48b66eb030de5a6e7416237420030 3 | size 292942 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/BikeGrayscale.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6c1030c7587bcfea910ac3e7e111f30b3c15366ff4e06f9f2fc81865e9d4124d 3 | size 84783 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/Bradley01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d7eddc690c9d50fcaca3b0045d225b08c2fb172ceff5eead1d476c4df0354d02 3 | size 25266 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/Bradley02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a73ebf6e35d5336bdf194d5098bcbe0ad240bbd09cd357816aacb1e0e7e6a614 3 | size 26467 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/CalliphoraPartial.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ddd702463bf22e52cdf185c0c9c98f97531ffce67700ec48a391f5a9d8f2c97 3 | size 331346 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/InvalidTextData.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:78ce7b4b15fc97d3e5b136510de941af9d807b10ce92320da65eb801712e6440 3 | size 383 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/PaethFilter4Bpp.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b2b0a1190854577d5181fe40af61c421d615a1a2727cf9be5ebe727eaafd00d 3 | size 8624 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/PngWithMetaData.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a37d2d31c2148b94bfd732c8964808dcc2dcdb6d2c187bb5d0403dc09af9ab46 3 | size 60544 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/SnakeGame.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b6d874f98a08647047ecfc015b39f035ff863713699263251114690be6283a2d 3 | size 6958 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/SubFilter4Bpp.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:053fac72ff62c66dacb41a6251efa249d5b31567e0222efbf5b1bef912c0bf77 3 | size 13013 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/adamHeadsHLG.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8c50691da3b3af21ff4f8fc30f1313bc412b84fb0a07a5bf3b8b14eae7581ade 3 | size 201440 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/animated/7-dispose-none.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1abab0c7de5252a16da34777ff34c4a29c6000493d23ac1777cd17415e6aab33 3 | size 617 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/animated/apng.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7c15e4670da1826d1cc25555bd6cbe287ecc70327cd029a7613334a39a283021 3 | size 2508 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/animated/frame-offset.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3c019073841b48b02cb07c779fed8654c6052aee700e7620d07f5d775d97088f 3 | size 2156 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/banner7-adam.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5eb7d02dfce0821a5210ed69c887516a39089baca2989252afd712e41e656586 3 | size 16488 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/banner8-index.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6398956c686a1e280c5d29d8301aebee7269296598cebb01454ba0c9e7f279bc 3 | size 2327 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/basn3p01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c2d7cd682df5f74506b33a5d70c344aaee248fda79fdfef8e873426fd6f2b75b 3 | size 112 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/basn3p02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0466bb7ed9984cf03b70704564bcffab1df8ec0e8167473ba0f75e4fedce5a8f 3 | size 146 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/basn3p04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e1fc7be978d3149b98533d0076245ae64353b7967290f4204c1282ecb4ec1aba 3 | size 216 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/basn3p08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d58256cd2eb16b5740d4c1403d25ce43d8dd03e270627ab709d2fb141e3d904c 3 | size 1286 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/big-corrupted-chunk.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6684985456687682d74b63ad8ef7983f2d6b593a6edc243b1a21c6a64cccf34a 3 | size 9195 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/bike-small.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2fb48e3c495d7834df09a17d6a6cadbce047a0e791b0cb78ca3a6d334d309b13 3 | size 75628 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/blur.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:10df946d3d6a9832bacd9ac2587b890c348d17731412c8fd17c34f66f35d9c94 3 | size 183768 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/bpp1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:364e9fac6467570afe2f23e432d4f7df10dd2dd53920d4f2c743ac0f8519f1e0 3 | size 4403 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/chunklength1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7b9957a86738acc0b682618a6677c8d659614cd6be5728e85185aef314c21981 3 | size 149591 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/chunklength2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b508f05da9f50edd87ed387abc8222620682ef2f59f036fd66ac7cbaf95ffe44 3 | size 12181 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/cross.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0677fbb7f1bd8dd19e8bd7ee802e07f3600193dafbfccf89f43e64e4fdf02d8f 3 | size 15227 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/david.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0e7e3b46a2f62251950f8c17f94c9d9a434ae643a98c058679644b5a0c5633b6 3 | size 27218 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/ducky.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0c2ea23adc981b8efba267c636b71190e74f798576467f26ed5cb4334a7ae421 3 | size 40960 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/filter0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0fe92b2aa2da04c885d1dbd85c834716f6cdd946364d97dcd597bb79d9e14427 3 | size 2475 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/filter1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ef072ec6815ebf9b33e0553d2e4e4e7ed6911860a2512c67bcd10a9f0f09b9de 3 | size 1180 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/filter2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ca4b937b3c587d5c007f193a2eec14dc96b0d23ff7d6aa9004e3badd1af9fe8f 3 | size 1729 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/filter3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d101e3ef4f78a69437034671e93fe11faac0cfc4d44210dcca1b944caa886f7 3 | size 1291 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/filter4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c365c24153cb69fd3c162f00b296ae23a71a1595645d1aeb0ad23af680d7b4be 3 | size 985 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/filterVar.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8ac0f095d2a943157e820fa121bccde08d5230af1b5830c3041d5f4da3524eba 3 | size 426 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/gray-1-trns.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cca88b334de7037abfacd9d87c2cb8eec7391f355c1d6b4a694fc4240f358ee1 3 | size 366 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/gray-16-tRNS-interlaced.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8367d01b7d0f926f6c89d6e545735a50cd35815ba7c13367ad5b0489069bd735 3 | size 1448 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/gray-16.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f150b76c824e4870322d6564a214a8ef00b4b100d5fd6f5ba551f6f242005bcc 3 | size 684 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/gray-2-tRNS.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c36d10c8498bbe148bc44d41e0243137e47b07402dfb8e58978d1a9b5029cabc 3 | size 265 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/gray-4-tRNS.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:217248c079a0ed7896803a2bf5d9719b6060ef898314a5f6ab898c6c4349f341 3 | size 267 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/gray-8-tRNS.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6e14dce9350fc40f7ee542d1dc788fbf6c1c0178515ea8b76ffa0b18bcf54e8a 3 | size 267 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/gray-alpha-16.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc3444bd2457c7c3414359bed6f05d1a5b84c08186b3b54a9ab4a4c503775f63 3 | size 859 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/gray-alpha-8.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c0e327f49e2b0deda69811cdf20d36f2ff54f9335e11647755ad4473a6f1408a 3 | size 684 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/gray_4bpp.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e7c6d6cbd959e84001e559702c31e313d065c9cc25808c190c4d4a1f564d4357 3 | size 7396 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/icon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:18f1eb7c5019153f4a0b2de90e7e0f0521193f003fabd6ac31c2f58c2562ae42 3 | size 4040 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/iftbbn0g01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1eea6f2448e9d3f4365b34d1f849c057c7199564f18cecad07c3a362926b11db 3 | size 214 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/iftbbn0g02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:82324d48b769628d4d8a4b6e7830c6d7dc778e5656d6e1e7556f4e53737a1dfc 3 | size 211 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/iftbbn0g04.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:47d393150de4cec7152f1ed61ea25bca9de628865e37ad735e7f162c58340916 3 | size 489 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/indexed.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:65566cde707c02757a26fb5fb7702be9c53f55c17a1748d81c384559de2d1173 3 | size 33529 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/interlaced.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21d34b50acf6bf71c68673585a298b8ddce3a908a46c38a6be9530487ebab8dc 3 | size 17949 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/Issue_1014_1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e986d0ff909fc92b0f325c6012ca4123674b239c54647bbdf3fc0c7ace3e4327 3 | size 3965 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/Issue_1014_2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e042b3aa6c17db70a9fe7fda4fae1c90388d32480ac44e9f87341279c845fd11 3 | size 6626 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/Issue_1014_3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ca6190682c99ec1c00fe2bac7fee86902bcf8a2db43a781452bf137eb1b962a 3 | size 4157 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/Issue_1014_4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:03c6ee008225ac18f2966842772d5afa64e318f41b552c3d63d1a9fdd3544eff 3 | size 3328 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/Issue_1014_5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1163cd03933f2b23e1ae27baa848a5c2d3f41f0b3457a33dd9523c40e610076b 3 | size 4085 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/Issue_1014_6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c60f7be42794764f970149dd967bcd15c2f7f783b82a3edf528e7556eeb6c806 3 | size 2114 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/Issue_1047.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4768d4bc3a4aaddb8e3e5cbff2beb706abacfd5448d658564f001811dafd320a 3 | size 44638 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/Issue_1127.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9913e68387bb596198089315ffd8e01d27356493f78b26add68b5cf37183b239 3 | size 13855 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/Issue_1177_1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cef2be6012f4604f9f30b51273661058df0201be4de508235f372eb2304b2132 3 | size 7023 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/Issue_1177_2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7067af724977e1ecd8fc761f50226eaaa9e9d4142be963b4edbbf0918b8eba1d 3 | size 57125 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/Issue_2209.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:58eae3863a2107bf3359a87492bc95524b54dd091683e333ac73d76f229a1f71 3 | size 621275 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/Issue_2259.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:45b635fe3104e96b7c6d8fa9d28f7fb86fb184c7a407c44a2f90f3f88c140ef0 3 | size 6037 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/Issue_2589.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7e87701298da4ba0a5cc14e9c04d810125f4958aa338255b14fd19dec15b677 3 | size 62662 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/Issue_2666.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ed7665cdfd5fad00c5995040350a254b96af6c0c95ab13975f2291e9d3fce0f3 3 | size 8244837 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/Issue_2668.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e8e5b2b933fd8fefd161f1d22970cb60247fd2d93b6c07b8b9ee1fdbc2241a3c 3 | size 390225 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/Issue_2714.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9a4b6efc3090dbd70ae9efe97ea817464845263536beea4e80fd7c884dee6c5a 3 | size 128 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/Issue_2752.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d4cb44eea721009c616de30a1f18c1de59635de4b313b13d685456a529ced97 3 | size 5590983 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/Issue_2882.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cebc98e62bcfe31df73ae7b6980382f4b56bdf7e7e6e9037946f5a84cb51c7d2 3 | size 1117 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/Issue_2924.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fd366a2de522041c706729b01a6030df6c82a4e87ea3509cc78a47486f097044 3 | size 49376 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/Issue_410.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fe3c66fb0f52b989f7398bc6bcaa18e83625120a53b4972023705a7a5925eab1 3 | size 674 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/Issue_935.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6a9c5cdacc9bedf481c883828de5bfb7902e2bec038fff08830171cf7075e4f9 3 | size 870 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/bad-ztxt.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:132a70cf0ac458a55cf4a44f4c6c025587491d304595835959955de6682fa472 3 | size 3913750 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/bad-ztxt2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:778a5fc8e915d79e9f55e58c6e4f646ae55dd7e866e65960754cb67a2b445987 3 | size 93 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/issue_2447.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:52f7e55f812db926d95ac1ab0c3235fbaca53331b99f73e65f3c1c2094503e20 3 | size 15824 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/issue_2469-i.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d4e0da0601ca5f479684359633c4dbd82881a35631d63477c01e8fd180e31482 3 | size 2521324 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/issues/issue_2469.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2be3ee00b78810d74f20a8b1c9ea3d68d8ec0560506dcccc8acda741d7c1251a 3 | size 2392860 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/kaboom.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b8d493f5472e58b3184d1c6fe3795a731b6cb6de765ae0d27726d69aeff06d6b 3 | size 573925 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/length_gama.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:824766b34739727c722e88611d7b55401452c2970cd433f56e5f9f1b36d6950d 3 | size 1285 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/low-variance.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:70c224ef674b546db0ec3281008bb6e2b879e95b0be5625f0af8aff980eee583 3 | size 7844 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/missing_plte.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:73fd17a394f8258f4767986bc427c0160277819349c937f18cb29044e7549bc8 3 | size 506 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/missing_plte_2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:797844db61a937c6f31ecb392c8416fbf106017413ba55c6576e0b1fcfc1cf9c 3 | size 597 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/palette-8bpp.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7bfbc244f4b0672d6a12a1f73ec062bcf762f229268b99aa4b9ffd8447512471 3 | size 9171 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/pd-dest.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:adb9f4448b7bb44d7b4c0ad8c2f3f71b17acb05148375663c7a203707f08660d 3 | size 2563 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/pd-source.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dbf4a45b89eddeb727e0437846bcef5d875f532f94aaa441c75c8c3ddbac5150 3 | size 2393 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/pd.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:91dd938fb916d368738826741551aea694b340ba3362f56200c5d3c5e5510267 3 | size 1406 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/pl.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa550e61fe276d2ebee8666d0cbb811449433edb76e01bcd38cb00c1aafc417e 3 | size 91 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/pp.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:99879d99fa8589427023012a0388ab0380b6d30b54921e2b7a39f43ae4b1bcc3 3 | size 12867 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/rainbow.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:18993090b64a08939b4f8901e2b603bb8a49b053af7a0f327b4ae1205e64b987 3 | size 1447 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/ratio-1x4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:438018f19c85e582cb586ac7cca2220008ecb7fc70ce50e8f2a76b494c128a20 3 | size 404 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/ratio-4x1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a068eaf1f7040490e08eda3259befb6689849dd0ff8bb4cc03c705d117cb2b9f 3 | size 344 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/raw-profile-type-exif.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2259b08fd0c4681ecd068244df358b486f5eca1fcd18edbc7d9207eeef3ca5ed 3 | size 392 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/rgb-16-alpha.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3ad2152ee0de2aaa8745757a9ff5e90a30b6e84365bd90f450286eb2734bd78a 3 | size 1377 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/rgb-16-tRNS.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:733a3f940d41b320ae884ba74339bc94ec8ad5f5a37479ea23b19c1e7b0d0274 3 | size 2624 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/rgb-48bpp-interlaced.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:79d1705ef6438d90dc145068141d4e32c1cf1cd5cf17c7b90b7ecb12967016bd 3 | size 69952 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/rgb-48bpp.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d3d6028bb193ccf6025f11b90882ed952185684f58347383aaf23586ca4bc059 3 | size 972960 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/rgb-8-tRNS.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d98223a9a3084f34609bb5dbf55b5ca156559743240bef3406466775a9950e9d 3 | size 1624 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/rollsroyce.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:90017d23999f41be7ac525648d8f435dcf8d1481ab98ebfd01a9ce87241e534f 3 | size 25400 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/splash-interlaced.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3a573ae07d97481e8e29441dd165735ad21c0a7bdab1de302d9e442fd6891ec7 3 | size 239173 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/splash.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f4c13422913f1c1910f8dd607236e79b4a5c7053deb8ce1c8be8372eca7465fb 3 | size 245033 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/testpattern31x31.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:233dc410d723204dfd63c296ee3ca165f4a3641475627eb82f5515f31d25afe5 3 | size 484 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/transparency.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:843bea4db378f52935e2f19f60d289df8ebe20ddde3977c63225f1d58a10bd62 3 | size 48119 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/versioning-1_1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:311478eb291cbf5e58be17d52057e7be8b703b84536ef8812557fa2b3759b9e6 3 | size 22102 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/versioning-1_2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37bace8aaaa921b757af7d43ae0e91cbe0738942439753c401209215a1acd20d 3 | size 8165 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/vim16x16_1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c9f8ecc9936ef3ce54f5b9b2aac816b9539b753236c53e249cde0f2791aa4712 3 | size 226 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/vim16x16_2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:491ef70e69f63c2d5b48680faebd5b008267850b426f512878854bb1e971eba0 3 | size 292 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/xc1n0g08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4059f7e6a1c5bac1801f70e09f9ec1e1297dcdce34055c13ab2703d6d9613c7e 3 | size 138 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/xc9n2c08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e252a0e7df3e794e52ce4a831edafef76e7043d0d8d84019db0f7fd0b30e20f4 3 | size 145 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/xcsn0g01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:71e4b2826f61556eda39f3a93c8769b14d3ac90f135177b9373061199dbef39a 3 | size 164 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/xd0n2c08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c1287690808e809dc5d4fb89d8a7fd69ed93521f290abd42021ca00a061a1ba4 3 | size 145 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/xd3n2c08.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:00b53c3bbd0641454521b982bc6f6bcfda7c91f1874cefb3a9bac37d80a1a269 3 | size 145 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/xdtn0g01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f9d1fb2a708703518368c392c74765a6e3e5b49dbb9717df3974452291032df9 3 | size 61 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/xmp-colorpalette.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb55607fd7de6a47d8dd242c1a7be9627c564821554db896ed46603d15963c06 3 | size 1025 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/zlib-overflow.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2705125a7b108c7ef4e13872be88b991cd06ba97d81a306f70f58749cec53514 3 | size 10725 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/zlib-overflow2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3994ef9f044fd589a412409b35cf23d346da43af0d82e25f2c11a36b464c7599 3 | size 16887 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Png/zlib-ztxt-bad-header.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ce623255656921d491b5c389cd46931fbd6024575b87522c55d67a496dd761f0 3 | size 22781 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Qoi/dice.qoi: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b05a622813eff15ce64f33ab76eee3f9d144f5cf24386e13ddf17c27f6310a01 3 | size 519653 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Qoi/edgecase.qoi: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3cae50b533fbc796171a0763c29a576eaac475d04b6a95fe46b02d440f609e11 3 | size 2114 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Qoi/kodim10.qoi: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e330cc81299a2641386f32bdf4b7070b8d5f8f2f76d899ced389b5a1469e65b0 3 | size 652383 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Qoi/kodim23.qoi: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d225e987dc07262be2acee5dee164b5f48d3a49dd0e03f426b3111b52f265548 3 | size 675251 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Qoi/qoi_logo.qoi: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e6519746939c2b6bc6776a65ce87b1dbd769069c2d2c11295453e9f35160ba57 3 | size 16488 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Qoi/testcard.qoi: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:de309646439d2e49c51d9921eb1faff9af4cb33f0019a24ccb57dce1ef00dbab 3 | size 21857 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Qoi/testcard_rgba.qoi: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b284ed810a892bca34e89a956b7f8bf21afae4826197a8f3eaef90e470e2149e 3 | size 24167 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Qoi/wikipedia_008.qoi: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a289c12cd96cc3ff65fcafa1a6d55c5cace0095a45bc570ca1a4d8b79a20b4df 3 | size 1521134 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/16bit_noalphabits.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7a71e04cb2c335fb46bb91c6bf71e32deafe6a65b701e9fbdb1f95ec69a432c 3 | size 96818 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/16bit_rle_noalphabits.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4c605b2ef72f8e54530cb3f0922527ee2754adab8d158276931ec7e2842f2644 3 | size 138354 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/32bit_no_alphabits.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:019315f9dcbe4516ecb15426a45c210d437e9ad152c8e1a0e80abe9449177e12 3 | size 235218 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/32bit_rle_no_alphabits.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:33954ae93b4c7d57f52965a9028e97119c546db1da255100c2903a2760c7479e 3 | size 76870 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/Github_RLE_legacy.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3570d2883a10a764577dd5174a9168320e8653b220800714da8e3880f752ab5e 3 | size 51253 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/ccm8.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:67b3ffaaa75561d8b959258d6b26a1f9ca3228b02a3df98a614ea43241aaea52 3 | size 9271 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/grayscale_LL.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74ef200d90078b5cd8ff6ddf714e0a082fc420684e2d7667fe158c5705b91946 3 | size 65580 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/grayscale_LR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ed269c8f3bb462d963188d7352ebe85ab20357ac7803e5ac4d7110a23b9e6ddb 3 | size 65580 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/grayscale_UL.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:72c6e1e09b923455e0c8cd14c37b358eb578bc14a0a8fcedde3ab81769960eb7 3 | size 65580 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/grayscale_UR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8831036fdb79dbc9fa9d6940c6bb4bfc546b83f9caf55a65853e9a60639edece 3 | size 65580 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/grayscale_a_LL.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e90d280ddfde2d147dd68bacf7bb31e9133f8132adcbe50c841950d5a7834b8e 3 | size 131116 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/grayscale_a_LR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df0cd7261a98e87700e4f9c1328d73ee9f278c4e538895ab0a97b88392156523 3 | size 131116 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/grayscale_a_UL.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:debc2bb439a72f5cae3f0fdb525dbc0b3488abc27cee81d1eb73cb97765a07f3 3 | size 131116 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/grayscale_a_UR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff8cdd9cf4aa48f0df2d920483aeead476166e0e958d07aa5b8a3cd2babfd834 3 | size 131116 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/grayscale_a_rle_LL.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d65c2b9caf83b2eb063e820e15944621dec324f8278ae6b60b088dc380a2c40b 3 | size 54102 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/grayscale_a_rle_LR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0f7e06f04de22ecbf8fea1da72c6a6feb45161e92580e96ca5c4482ec3bc00de 3 | size 54237 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/grayscale_a_rle_UL.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8555c8dcfa7ac65ad9f1d2389d82ee21dd90329b7200e10a457abc0f67d18ac8 3 | size 54295 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/grayscale_a_rle_UR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9abc35a5e6ef0aaa29a5d0bd7cef30281b1d94fec669e884cc382a2d73b359a0 3 | size 54052 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/grayscale_rle_LR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a897be6870be2cd183e7678e954767fd12a763c7bfce0f2246f1b7cc1ad08804 3 | size 31165 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/grayscale_rle_UL.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3f11be4af2283059e869543949588fe19db0e36dec64157ad9a61711cb5e6428 3 | size 31198 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/grayscale_rle_UR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f5aa67ec6d3408fd469ec8e7c5613daf130be893e0b76dee2994a2c32ddae471 3 | size 31054 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/indexed_LR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e6d5219fadf7d8b743d35c7e16f11e1182f76351757ff962e0a27f81c357b1fb 3 | size 66315 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/indexed_UL.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f42dd07528f9e4f7914a570c027cc845edfe6d3fcdfa45ec8f21bc254cc1f1f 3 | size 66315 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/indexed_UR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:90d8caa10d3a05f845f94b176a77a2ed85e25b3d460527c96abfe793870c89b8 3 | size 66315 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/indexed_a_LL.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1522f4513cadd35869f39e171b1dccda9181da5b812d487e2a3e17308722d7c0 3 | size 66604 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/indexed_a_LR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d01d5c89e772582a30ef9d528928cc313474a54b7f5530947a637adea95a4536 3 | size 66604 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/indexed_a_UL.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fa4d93b76ddcfa82a8ef02921e1c90dbd136de45608e7e7502c2d2256736f9ae 3 | size 66604 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/indexed_a_UR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:feab3d418ab68eef0b40282de0e00c126fedff31f8657159799efef9b6f4a2af 3 | size 66604 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/indexed_a_rle_LL.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2be79621e93dfdbd3ec9bea5085675719429cb264b1f9bbafa4ab2c9da28f677 3 | size 31665 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/indexed_a_rle_LR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:419d28012037d85794d6839fc8bdaa4b830daf8d078b536a655dc65370c15a38 3 | size 31776 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/indexed_a_rle_UL.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:892b19c5e4da9ba4b96d3458d2ee35e1f64ca65e8f8f8b6eebb284e83a6bceab 3 | size 31765 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/indexed_a_rle_UR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42586d5d45bb922671755d019fe8d5f76c10ab856fcf6521fb7d114fba118c71 3 | size 31666 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/indexed_rle_LL.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e3dbf4ae9566e00d2165d74f3c17208853954b4c1f1cbc4ebc321fe3adb29676 3 | size 30549 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/indexed_rle_LR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:32461dcf64ec2f6ccf6e17a7209c769a5594b8c94a31de7cc693d6abe6ba2081 3 | size 30610 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/indexed_rle_UL.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:841f05e9f8ecdade8c992b830b9bf5893494f41accb0f0fec30f4692866c1675 3 | size 30640 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/indexed_rle_UR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a709594fd475dbe042c16671959bfbc0031e64db8e74375f01c29685d2e384ec 3 | size 30500 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/issues/Issue2629.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:defc1396481f426a74e8af51ed57f65cbed932f932673ce5a87fa12ea9b460f8 3 | size 32786 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/rgb15.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:390cfff190bc41386fa134eca70ea0d3ffdc32a285c73278ed34046b09c46c9d 3 | size 80537 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/rgb15rle.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3219186fc9a9f859c99c2b31cf81e7f0ab4292956d22fc659e714d0cdb51cfa7 3 | size 19941 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/rgb24_top_left.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f9c0aed8fb8c4e336fb1b9a6b76c9ba3e81554469191293e0b07d6afc8d9086a 3 | size 12332 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/rgb_LR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a57a4f63dbe50b43e95cfcffff0ecf981de91268c44064b73c94c295f0909fea 3 | size 196652 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/rgb_UR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1dc5882241cd3513795cfcb207b7b4b6014585cf50504e01f968f1db9ad7d8d8 3 | size 196652 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/rgb_a_LL.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eff46c35b08b02759b5e5cf4ba473b7714cf303e35cd93ae1404b8e3277014a1 3 | size 262188 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/rgb_a_LR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0b91c063644c2f21f74fa88687a05f8730366e75a896bf21630af280abc9950b 3 | size 262188 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/rgb_a_UL.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1a167af1f8d64119e206593f8944c0b7901393a1b97d703c0121b8a59cae03f4 3 | size 262188 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/rgb_a_UR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9d88b70ad8878d44e29f680716670dd876771620264bdf2af9179284508fcc03 3 | size 262188 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/rgb_a_rle_LR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0bcfe104b6c56ddaa06bfaca4a2a9b070e7af8f74dc433736d6b0e536bf3c0b6 3 | size 98317 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/rgb_a_rle_UL.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be1323021deead462ef38c17eea5d59aea7467ae33b91bd65b542085e74aa4e4 3 | size 98427 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/rgb_a_rle_UR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cec69308cbfd13f1cae79462fcfd013655d27fb6386e60e6801a8fbb58685201 3 | size 97990 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/rgb_rle_LR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0c21355f73ed5f78ec2835c3e8bb11b1d48bc5b360a804555a49a435077e8bcb 3 | size 73337 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/rgb_rle_UR.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f5d56b7e72b59624545b405406daeb9a578ff3da6e1ea99ee759ace6909da6d6 3 | size 73086 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/targa_16bit.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f3adea897f8843b73d0042e23bdfbd0115a7f534df90699134e768df57061f46 3 | size 70518 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/targa_16bit_pal.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:97a4ac0cecfe69e1b5c74db5288fb8ca3bf29968e3b5288c4e5ce03bb4f06915 3 | size 35780 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/targa_16bit_rle.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:47d7ebf37672ea846ce071155733697e34083de36aeaafaebd78317708feffde 3 | size 19566 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/targa_24bit.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:35921b6250e43ba8e1fb125ebe4939a57a67efb0aa9eac0d3605bf90e93309b1 3 | size 105768 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/targa_24bit_pal.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4926969e5ae6c9af38d33fa18429de756c48d06edd87c5d27cb8d5232b066ab2 3 | size 36036 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/targa_24bit_rle.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:56a79ab92d84bbe8c7efbc2711051938fa3ba97b48830aea0cb1dafd7d1fe222 3 | size 37711 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/targa_32bit.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e3a220619e25e86bab01b01a2e231ee64fd004e047fa86016bf68de576877352 3 | size 141018 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/targa_32bit_rle.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f415d6a246909c18fe604248ab5fe27c74aff9a63df58d8cdeab7c4c3cbe056a 3 | size 49994 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/targa_8bit.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6aaae46d0e55f32a72732fbe48ed9dc4044c53432999ab66e9475e45e40f0133 3 | size 35268 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/targa_8bit_rle.tga: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a18d7fd98bc9ab62276103b4e7b474be93b3d7241f4f06aa564e32150e205a71 3 | size 13145 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tga/whitestripes.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2bc5d67ce368d2a40fb99df994c6973287fca2d8c8cff78227996f9acb5c6e1e 3 | size 127 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/Benchmarks/.gitignore: -------------------------------------------------------------------------------- 1 | *.tiff 2 | *.tif 3 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/Benchmarks/gen.bat: -------------------------------------------------------------------------------- 1 | powershell -executionpolicy RemoteSigned -file gen_big.ps1 2 | powershell -executionpolicy RemoteSigned -file gen_medium.ps1 3 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/Benchmarks/jpeg444.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:89c632bbc42bc917f81e7c47595c95cb914a619604ac07b8cebf6fd4d1d744ca 3 | size 5667 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/BigTiff/BigTIFF.tif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ddb202145a9bce7670cc372ee578de5a53cd52cc8d5ae8a9ebdc9f9c4f4a7e81 3 | size 12480 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/BigTiff/BigTIFFLong.tif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:90178643a159ec50335e9314836df924233debeb100763af0f77cd1be3cf58ab 3 | size 12480 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/BigTiff/BigTIFFLong8.tif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b38e61ccb01e10e26fb10c335fc6fca9ad087b0fb0df833e54bb02d1246e20d5 3 | size 12480 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/BigTiff/BigTIFFMotorola.tif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ace8a27dbed9f918993615e545a12310b84ad94bc6af8e256258e69731f1c7ce 3 | size 12480 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/BigTiff/BigTIFFSubIFD4.tif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:85c8da46abc2284f0ddac10bd03a7c98ee51024840b7e43f41f1c6a09bc02e7e 3 | size 31520 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/BigTiff/BigTIFFSubIFD8.tif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:93e5ac30f507bec7936746ad6e109631c09f9b2332081e986063219ad2452a4a 3 | size 31520 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/BigTiff/Classic.tif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cfa7fcf6927be5de644beb238067479e8d834d0cbe2257b00302f5dde84a1c1a 3 | size 12404 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/CCITTGroup4.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:120ad0814f207c45d968b05f7435034ecfee8ac1a0958cd984a070dad31f66f3 3 | size 11082 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/CCITTGroup4_minisblack.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6c12c96059a6214739fe836572bce6912dcf4a0d2ff389c840f0d2daa4465f55 3 | size 11637 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/Calliphora_ccitt_fax3.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:da7d98823c284d92982a88c4a51434bbc140dceac245a8a054c6e41a489d0cc7 3 | size 5986 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/Calliphora_ccitt_fax4.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:118e55fe0f0dbb5d2712337ec9456a27407f11c0eb9f7e7e81700d4d84b7db09 3 | size 4378 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/Calliphora_huffman_rle.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f27e758bb72d5e03fdcf0b1c58c417e4a7928cbdf8d432dc5b9a7d8d7ee4d06b 3 | size 5668 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/Calliphora_rgb_jpeg.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4baf0f4c462e5bef71ab36f505dfff87a31bd1d25deabccd822a359c1075e08e 3 | size 65748 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/Calliphora_rgb_lzw.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d83d8a81ebb7337f00b319a8c37cfdef07423d6a61006411130e386238dd00dd 3 | size 121907 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/CieLab.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7542b5b3abe049614f2ddaf78ffe995edac13e768f0b2fc9f324c6ef43b379eb 3 | size 1312046 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/CieLabPlanar.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:28592d9da8d51f60700b7136369d2d6bd40550d5f8c7758e570b5e624c71a3e4 3 | size 1307488 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/Cmyk-lzw-predictor.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d322e42dd61c528e91ba9d16310248a4b9a77094a22761dcb9e6f132fc16fe1b 3 | size 1080 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/Cmyk.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:16a73f25e9c2bc6e2e51bd7399d2193bc5d5731f45cfd75147c19746deecf039 3 | size 40278 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/Issues/Issue1716.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c734dd489c65fb77bd7a35cd663aa16ce986df2c2ab8c7ca43d8b65db9d47c03 3 | size 6666162 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/Issues/Issue1891.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a2779c7fb2c2ad858e0d7efcfffd594cc6fb2846e0475a2998a3cda50f289b9b 3 | size 307 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/Issues/Issue2123.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5663288720203035c454c61c529222c2170df21dcde1a89f1f30e3b668020d6f 3 | size 3805 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/Issues/Issue2255.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff555fb2478406a1f3b2202c2ae3b0a691a16bfe2a5b586f38b348c9f4a858e6 3 | size 3635 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/Issues/Issue2435.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e5c90d6d90f1cf090562d7d70df858b83513e5d7d78fb7b7c4d7992cb620030e 3 | size 258540 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/Issues/Issue2587.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b5a245e4313bcf942d9a8ab7108946ddcadcf45d898b8a8986fc42a6e8c64dc2 3 | size 87746 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/Issues/Issue2679.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:feb938396b9d5b4c258244197ba382937a52c93f72cc91081c7e6810e4a3b94c 3 | size 6136 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/Issues/Issue2909.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3c69a7e7c7920766e98fccd273424a34e9094550e2176a7b4757ab2c0756d084 3 | size 1272 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/JpegCompressedGray.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:868afd018d025ed7636f1155c1b1f64ba8a36153b56c7598e8dee18ce770cd5a 3 | size 539660 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/OldJpegCompression.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0a5a02fb888a47ed51aa6d72122f9d1996311e943be62bef4829bc1aa9f457e8 3 | size 214023 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/OldJpegCompression2.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e8f722bc322b9a7621d1d858bec36ea78d31b85221f314a2b9872d3af91d600a 3 | size 5052 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/OldJpegCompression3.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b2b73290a40c49a4a29e51ad53dadea65c1ceafc6a5384430f7092d613830db 3 | size 1390339 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/RgbaAlpha8bit.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f8bc77670ea12cd163fbf21fa7dd6d6c10e3b8c1afc83f26618f92303d0cbfcf 3 | size 235478 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/SKC1H3.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:938bbf1c0f8bdbea0c632bb8d51c1150f757f88b3779d7fa18c296a3a3f61e9b 3 | size 13720193 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/basi3p02_fax4.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:185ae3c4174b323adcf811d125cd77b71768406845923f50395c0baebff57b7c 3 | size 282 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/basi3p02_fax4_minisblack.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:af0d8f3c18f96228aa369bc295201a1bfe1b044c23991ff168401adc5402ebb6 3 | size 308 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/basi3p02_huffman_rle.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:af20deb1b64cac3272b6560565cb01f28247b9fd8b6d5a86eafbe7b0aea27d48 3 | size 340 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/ccitt_fax3_uncompressed.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f60615dea1b417ec125bf365b7c3a7c15ee2381947eb29dae2c34655fd0c2530 3 | size 821 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/cmyk_deflate_64bit.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:45793bfd1c9e92910b5b38805499859c38bb2fa1a2ae0c22888c16cc88b25d23 3 | size 53002 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-minisblack-02.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3122afede012fa00b8cb379b2f9125a34a38188c3346ec5e18d3b4bddcbb451b 3 | size 1131 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-minisblack-04.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:18991fca75a89b3d15c7f93dee0454e3943920b595ba16145ebc1fd8bd45b1f5 3 | size 1905 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-minisblack-06.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b0c13012d8d35215b01192eb38058db4543486c60b4918beec8719a94d1e208e 3 | size 2679 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-minisblack-08.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1268d843a2338409ec3a9f5a5a62e23d38c3a898035619994a02f21eff7590bf 3 | size 3453 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-minisblack-10.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a91d6946730604dd65c63f1653fb33031682f26218de33ebf3d0b362cb6883af 3 | size 4269 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-minisblack-12.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86fc9309872f4e4668350b95fae315d878ec9658046d738050a2743f5fa44446 3 | size 5043 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-minisblack-14.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dcd07668c73f24c2a13133ac4910b59a568502a6d3762675eef61a7e3b090165 3 | size 5817 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-minisblack-16.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:79531a10710dee89b86e2467818b7c03a24ff28ebd98c7bdcc292559671e1887 3 | size 6591 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-palette-02.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:75e74d8816942ff6e9dfda411f9171f0f1dd1a5a88cb1410238b55a2b2aeeb71 3 | size 1164 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-palette-04.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:700ec8103b4197c415ba90d983a7d5f471f155fd5b1c952d86ee9becba898a1a 3 | size 2010 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-rgb-3bit.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b778a97467b1475c47c71b5f029c23b0962309095b8702cfc81c8fbaf4b8edb 3 | size 3886 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-rgb-5bit.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:44a53ffce2bfd3f1010a1fe232c8010708458880230f11b75ea3ef16b5164ce1 3 | size 6208 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-rgb-6bit.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d1db5b448aa9d61dd38dfb86e91e04fd0779a9c68cc2073913bcee3c635b5fe 3 | size 7412 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-rgb-contig-02.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fbcd225c0db343f0cc984c35609b81f6413ebc1ba2ce2494d3607db375e969ff 3 | size 2685 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-rgb-contig-04.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:96c4c1dfc23a0d9e5c6189717647fa117b08aac9a40c63e3945d3e674df4c3c6 3 | size 5049 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-rgb-contig-08.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dd1333eb93d8e7ea614b755ca1c8909c67b4b44fc03a8cab6be5491bf4d15841 3 | size 9753 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-rgb-contig-10.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:68168ea1c2e50e674a7c5c41e5b055c881adf8cb940d0fd033a927a7ebdd7b6f 3 | size 12117 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-rgb-contig-12.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5f7a63eb8636e2b1ee39dfda4d0bddfc98bdc9eb94bea2dd657619331fa38b5b 3 | size 14483 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-rgb-contig-14.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a419a8e2f89321501ca8ad70d2a19d37a7bf3a8c2f45c809acc30be59139ae29 3 | size 16855 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-rgb-contig-16.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ab3d6b619a198ff2e5fdd8f9752bf43c5b03a782625b1f0e3f2cfe0f20c4b24a 3 | size 19177 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-rgb-contig-24.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c6368a704b0a629239024f6fbfb30723fa317593ef36ddba05d76302530bd974 3 | size 28568 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-rgb-contig-32.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d7b9da8ec44da84fc89aed1ad221a5eb130a1f233a1ff8a4a15b41898a0e364f 3 | size 38027 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-rgb-float32_lsb.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a1f889baa6f3bb99f15609848cdd47d548d3e2ed1b7b558d428550dfa3bd4bf9 3 | size 38050 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-rgb-float32_msb.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2c02be5dff2bcd5d60afbf379ba9095b0c8fd3a7a0063f684ac9ac9119f967a5 3 | size 38050 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-rgb-planar-02.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21c4ede6382d8c72cb8e6f7939203d5111b362646a9727d95a2f63310ec8e5b3 3 | size 2795 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-rgb-planar-04.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ca4434aa1a8c52654b20596c7c428c9016e089de75c29dc6ddcd32708874005c 3 | size 5117 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-rgb-planar-10.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f53948d4a36c80f45d70a315d2e76514ec41cabe982c06dbbd0d47e671120e2 3 | size 12211 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-rgb-planar-14.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d28f021d40f53a011053f9644400fee2d29c02f97b4101fec899251125dbb18e 3 | size 16855 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-rgb-planar-16.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0a143fb6c5792fa7755e06feb757c745ad68944336985dc5be8a0c37247fe36d 3 | size 19177 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-rgb-planar-24.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:752452ac51ad1e836fb81267ab708ff81cf81a4c7e00daeed703f67782b563ec 3 | size 28586 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/flower-rgb-planar-32.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a718ae37d6d7a5bb5702cc75350f6feec3e9cdcd7e22aaa4753c7fe9c2db9aae 3 | size 38035 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/g3test.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d5b2e1a17338133aa95cb8a16d82a171f5b50f7b9ae1a51ab06227dc3daa81d5 3 | size 50401 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/grayscale_uncompressed.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fefe6f6e1daf270546848c23ef437cfd072abb812e539fbab1006d74d416e9a4 3 | size 65758 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/iptc.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d7a8d89df97b35ab3be9745a345687defd427bf4ca519ad3c5a52208d98f7694 3 | size 15170 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/little_endian.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b42205ddeb20f8bdb1182bdf1345e695be4bf9617ba0576bef0d5b76642fa1a 3 | size 191232 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/metadata_sample.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c2f20e3ebb51b743b635377b93e78a6dc91c07ca97be38f500c4d6d3c465d9c1 3 | size 3472 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/moy.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:026bb9372882d8fc15540b4f94e23138e75aacb0ebf2f5940b056fc66819ec46 3 | size 1968862 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/multipage_lzw.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:da86a6d5fa61609edb54ef9118be16d89488f0cfce0acd16990e68b685f76094 3 | size 43432 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/palette_uncompressed.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:75f1bcaff7dc09ddbe6ded7b764b8c0b17bffc3392bafdc7bc7a4c7d616a38e5 3 | size 67394 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/quad-tile.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ab5e5c87cd575472c6fc3e0d5824ebc818b88bf6e5e4aff3afe66f8725351a09 3 | size 209220 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/rgb_deflate.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0af0db6a42424e3db5c6b84be6e253817413b2de68cc91f7288a8434150fe088 3 | size 67130 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/rgb_deflate_multistrip.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eb8375584d0ba70626f0026bf91306c423a6c00f511362a3ce523cefb1e65d56 3 | size 68058 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/rgb_deflate_predictor.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a1db70e0cfb056cfc675db3a2b85a1f226c53cd70275808773ff580c738b3db1 3 | size 3158 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/rgb_jpegcompression.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa7f77e16bc51a55f5d2cb8d162801ea9edc620e16ec7ab43323f3c994830399 3 | size 5736 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/rgb_lzw_multistrip.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:55ecb81526b238ca4a43b559a33a3b393b9776fe32fd2f3b78a1b460780f7ba9 3 | size 26962 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/rgb_lzw_no_predictor.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:895f7e1fb17e42175e6c0d67fbc08a7c65d7e19a71e67388034cdaecc407407a 3 | size 131092 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/rgb_lzw_predictor.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fe0ad0f383136e32f45c922de530ebcbce055f99ca81ef1d50608e241ea621c 3 | size 25806 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/rgb_packbits.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8c5c7996d78fb97a43bdd6d9fec7c1cb6bdea546d73c21f5a068edc602ff3aa8 3 | size 198460 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/rgb_palette.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:75f1bcaff7dc09ddbe6ded7b764b8c0b17bffc3392bafdc7bc7a4c7d616a38e5 3 | size 67394 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/rgb_palette_deflate.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:434cc4c212dfa975c130e2acd7c704b9cc6d0bf168336b8f778f811ddaf6a812 3 | size 24990 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/rgb_small_deflate.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:09c964c2f11806c2ff1e9fc7b06ddbecbc9e94cb7f4bd2b9841f0a3939d98eef 3 | size 2575 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/rgb_small_lzw.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2630a452dcc86f557594fe29ae4244fbb29a276cdee53835157af17f966e1405 3 | size 3221 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/rgb_uncompressed.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:87134a685bcd816d77cae664b415f1b6a25b78933953c128a742fba653eca9fa 3 | size 196924 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/rgb_uncompressed_tiled.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:165d85d8e3be6b44309855474c73ae6c14267393945d287fc20be4fcadc0e3f3 3 | size 3337 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/tiled.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f07be69e33985e7bcf6305eb74e3f23b124dc75509d192697df789318913174b 3 | size 31357 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/webp_compressed.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:72fd7fa941aa6201faa5368349764b4c17b582bee9be65861bad6308a8c5e4fe 3 | size 4898 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/ycbcr_jpegcompressed.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27fa1d37cd62a9cf105a5e3e015e6a16a13ca7fa82f927a73d32847046c66073 3 | size 6136 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Tiff/ycbcr_jpegcompressed2.tiff: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:533f92b6a45c2de4dc0f3cdb8debf45dcfe84790cfa652404b2f44e15f06e44f 3 | size 38816 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/1602311202.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4dac76bec0e5b23a988b0f2221e9b20e63dc207ef48f33e49a4336a874e2a915 3 | size 18406 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/alpha-blend-2.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b07a49ab8b3af82fa123faf897ec537cd26d57175b1d6301b617372c06432899 3 | size 1580484 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/alpha-blend-3.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b7244a2cfb42285a196fc7846c49da65fac47e5b85f735bc07b131707c8a2d46 3 | size 948 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/alpha-blend-4.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8c8b98f188d006715bd5bc60593ff2a379078f28a7fc14a51d28ae1cfb279aac 3 | size 2185502 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/alpha-blend.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5dc2762d1c1030fb951e1af57eaa7e66035a7b5e63bd9dc9f9bd50f0ff5c4c3a 3 | size 1297692 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/alpha_color_cache.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c4b9e2459858e6f6a1d919c2adeb73d7e2ad251d6bfbfb99303a6b4508ca757a 3 | size 1838 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/alpha_filter_1.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:53ad8a7038fed7bdfa90db1c1f987782a9f46903aaccd5ad04dd78d067632fba 3 | size 114 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/alpha_filter_2.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0a1eba20a9ba6a09735c2424d31e26c9282be64a0d7795dd689a42c4921d436b 3 | size 114 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/alpha_filter_3.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4052952ea401afa934b2d262f2852f615160c7cb82c4406c47622d26b343e95e 3 | size 118 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/alpha_no_compression.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:864de77c2209a8346004f8fe5595ffb35cfaacb71f385cc8487236689056df7d 3 | size 336 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/animated-webp.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cf633cfad0fba9b53ef84f0319db15537868bbe75c7b3cd0f31add9c0d25addf 3 | size 37341 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/animated2.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b17cfa1c0f484f1fc03f16d07684831585125817e5c7fb2c12cfed3d6ad863a8 3 | size 11840 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/animated3.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:68ba327459ac40a7a054dc5d8b237d3ce0154524854a4f2334e3b839524d13a9 3 | size 41063 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/animated_lossy.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:54957c3daa3ab0bf258c00b170fcfc0578d909acd5dfc870b752688b9b64e406 3 | size 73772 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/bad_palette_index.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8540997edf54f030201f7354f52438dd04bf248fb21a72b71a93095fc681fb5e 3 | size 9682 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/big_endian_bug_393.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4f2359f5425d78dbe16665d9e15cb56b84559eff527ab316c509a5dd1708c126 3 | size 16313 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/bike_lossless.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5a552b43d45c77ece0ab4331f054fb183725420748656d47a49c5b672e42f4f9 3 | size 61782 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/bike_lossy_small.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d0cff46a5bbc4903e8e372ee79e988942c101a6cc6642658cb92a9f377443dca 3 | size 2598 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/bike_lossy_with_exif.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9f93883b8ba4ebc9c048c598b9294736baddfa756c4884e85f0d3b8e7f9d996c 3 | size 39244 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/bryce.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d6ba1142638a7ae9df901bb7fc8e3a9e6afbe0ec8320fd28e35308a57a2e3e4f 3 | size 3533772 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/bug3.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37d98a0b3e2132f7b5bbc03935a88a8659735c61268d8ce6acdfccfa574f4166 3 | size 954 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/color_cache_bits_11.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a19dde0c51ce4c83d9bc05ea3b8f3cfed9cfac7ca19dcb23d85c56e465242350 3 | size 15822 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/earth_lossless.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:35e61613388342baac7f39a4a3c3ae32587a065505269115a134592eee9563b8 3 | size 7813062 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/earth_lossy.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c45c068709fa3f878564d399e539636b9e42926291dde683adb7bb5d98c2c680 3 | size 467258 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/exif_lossless.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21de077dd545c182a36584955918a70643ae2b972b208234f548d95ef8535a3e 3 | size 183286 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/exif_lossy.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5c53967bfefcfece8cd4411740c1c394e75864ca61a7a9751df3b28e727c0205 3 | size 68646 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/flag_of_germany.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:26bf39cea75210c9132eec4567f1f63c870b1eec3b541cfc25da7b5095902f41 3 | size 72315 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/issues/Issue1594.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37413b1a89ba7d42cdfe98196775c2ddc2f8f4d143f6fc65218dc288423b7177 3 | size 62 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/issues/Issue2243.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c1aae55fae66f3f9469ad5e28eb8134a04b1c5d746acf0a4a19d0f63ca0581cd 3 | size 55068 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/issues/Issue2257.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:55f87aee4283615bad9705ac459867facba5b6be114d7e1ece51db7c1ef87916 3 | size 117810 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/issues/Issue2528.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b4aa2ba2e6ef0263b5b657e4d15241d497721a0461250b1d942751812b96de71 3 | size 60214 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/issues/Issue2670.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:23ad5eb449f693af68e51dd108a6b9847a8eb48b82ca5b848395a54c2e0be08f 3 | size 152 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/issues/Issue2763.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eb221c5045e9bcbfdb7f4704aa571d910ca0d382fe4748319fe56f4c8c2aab78 3 | size 429101 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/issues/Issue2801.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e90a0d853ddf70d823d8da44eb6c57081e955b1fb7f436a1fd88ca5e5c75a003 3 | size 261212 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/issues/Issue2866.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:15e8a52a6d528fe071e73b037543b682bf62da7bab6d98ab690f25dd97f7298e 3 | size 248688 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/issues/Issue2925.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e12207babf122af7a62246938c2e78faa0d3f730edb3182f4f9d6adae6bfc602 3 | size 262144 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/landscape.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1e9f8b7ee87ecb59d8cee5e84320da7670eb5e274e1c0a7dd5f13fe3675be62a 3 | size 26892 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/leo_animated_lossless.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bab815db08e8f413c7a355b7e9c152e1a73e503392012af16ada92858706d255 3 | size 400342 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/leo_animated_lossy.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:00fffbb0d67b0336574d9bad9cbacaf97d81f2e70db3d458508c430e3d103228 3 | size 64972 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless1.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5eaf3d3e7f7a38487afa8d3f91062167eb061cd6a5dfa455d24a9a2004860311 3 | size 15368 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless2.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5131b5d7c0ba6bd7d6e6f74a325e0ffa2d388197b5132ed46a5c36ea8453cb22 3 | size 15898 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless3.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2bcca2ea2a1a43d19c839528e9b831519e0a6875e4c9a2ce8bb9c34bb85ece3a 3 | size 15734 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless4.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a96cc5243569ada325efadb3a6c78816b4a015a73283a400c5cc94893584901f 3 | size 4332 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_alpha_small.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d078eb784835863f12ef25d9c1c135e79c2495532cec08da6f19c2e27c0cacee 3 | size 1638 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_1_0.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:011089057caf7e11c9a59d3ec2b3448ea56d83545622e313f8584a22c322bc90 3 | size 50 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_1_1.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:482c1304367ede7a4b2e43e14aefced318c075e82e466473720d3bdabc0526fc 3 | size 106 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_1_10.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f91a575ba29729357a612eb511a9ebab725c2d34a6a6eaaf6b6a16cee3ba25a2 3 | size 80 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_1_11.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e598e8d2aef6a562a80c3fc9cb7cc6fdd979e210c26ed3a4defbdf895ae1c1cc 3 | size 132 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_1_12.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:45fa843b9d374e1949f58e9d0d2a2ecf97d4a9cc2af55dfa3ef488d846ea3c80 3 | size 56 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_1_13.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:04a9d1c2e8b43224f5d12623e4a085be1e1c5dda716bfd108202c64b1d796179 3 | size 114 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_1_14.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a8b8130c71e6958fd7eab9539f431125a35075cf0c38fc7ebb1316aa0a4d1946 3 | size 78 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_1_15.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f06eaa2e3fdc11235d9b9c14485e6e5a83f4f4de10caf05a70c0fdfc253c7a67 3 | size 130 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_1_2.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eed151dabacbad9b99aa5ad47787240f5344d8cd653f2c3842ccc0f95d6ce798 3 | size 76 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_1_3.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:45a32abfcc449acff80249885078ffe56d244d85db7120fdb30f58ae2bf89ac9 3 | size 132 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_1_4.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6021a817ad3e17053de4b170b9ff2c7646ee2ef365b23a5e75bea3159d83023a 3 | size 50 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_1_5.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:673161af330a911bd6a3bc3f0ab266a34eafba139a174372dd20727b8831e7e1 3 | size 106 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_1_6.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b90db591321b6235cfbf2c4a9083f29459185b84953c7ca02b47da16f82df149 3 | size 76 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_1_7.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:89aaf7749eefb289403ca6bdac93c0b80ac47da498f5064ea9f064994479045e 3 | size 122 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_1_8.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8c255d6803fb2d9fa549322e9eb1ac5641ee091c32a24810310464d207bb73cc 3 | size 56 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_1_9.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:99e579d9b23ac41a1c6162b6c0585d7cd9a797058f7c89e5a5a245bd159cd1b0 3 | size 112 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_2_0.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b90cb047e529364197e0435122e96be3e105c7e4b21688a56be9532af9a08609 3 | size 12822 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_2_1.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ee2154490d6342aff5bbebae8a29aa00ba2aa4630b5c071fe7f45c327e1e56b 3 | size 10672 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_2_10.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8ef60485d13cd7c19d7974707d3c0b00bb8518f653669b992e1de9aea4fdd305 3 | size 20362 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_2_11.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:418e017cafcf4bbb09ed95c7ec7d3a08935b3e266b2de2a3b392eb7c0db7e408 3 | size 10980 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_2_12.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0923abbeaf98db4d50d5a857ec4a61ca2cdf90cb9f7819e07e101c4fda574af0 3 | size 14280 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_2_13.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:13abcefd4630e562f132040956aa71a66df244e18ea4454bcb58c390aba0e3a7 3 | size 9818 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_2_14.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f73aea1e60ae1d702aefd5df65c64920c7a1f7c547ecee1189864c9ecd118c00 3 | size 20704 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_2_15.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6b5cb1bf92525785231986c48f9d668b22166d2ff78b1a1f3fdcae6548c5e24b 3 | size 11438 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_2_2.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:880f63d6da0647bc1468551a5117b225f84f0e9c6df0cbb7e9cffbebcec159da 3 | size 21444 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_2_3.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:50bbb2e1c3e8fb8ee86beb034a0d0673b6238fa16f83479b38dec90aba4a9019 3 | size 11432 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_2_4.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3ec19bfa2bd9852cc735320dde4fa7047b14aca8281f3fbc1ad5fa3ad8215d6b 3 | size 12491 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_2_5.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:09b72c5e236ef7c27a1cc80677e2c63f2b8effd004009de1c62fad88d4ad6559 3 | size 10294 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_2_6.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a6f63102a86ec168f1eeb4ad3bd80fc7c1db0d48b767736591108320b5bed9f8 3 | size 21922 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_2_7.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:99353d740c62b60ddc594648f5885380aeb2ebe2acb0feb15a115539c6eebdc1 3 | size 11211 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_2_8.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:215ace49899cf63ade891f4ec802ecb9657001c51fbd1a8c2f0880bc4fb2760a 3 | size 12640 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_vec_2_9.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:033e7d1034513392a7b527176eeb7fab22568af5c2365dd1f65fdc3ad4c0f270 3 | size 10304 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossless_with_iccp.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:863db3c8970769ec4fc6ab729abbd172a14e3fbb22bc3530d0288761506d751e 3 | size 75858 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossy_alpha1.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:403dff2d4cffc78607bcd6088fade38ed4a0b26e83b2927b0b1f28c0a826ef1c 3 | size 19478 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossy_alpha2.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5f2cd2585d5254903227bd86f367b400861cde62db9337fb74dd98d6123ce06c 3 | size 13566 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossy_alpha3.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ca1d20c440c56eb8b1507e2abafe3447a4f4e11f3d4976a0dc1e93df68881126 3 | size 9960 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossy_alpha4.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2feb221aee944cb273b11cf02c268601d657f6a8def745e4a6b24031650cd701 3 | size 4262 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossy_q0_f100.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cf480a1328f5f68b541f80e8af1bf82545f948874dd05aacd355adee2b7ca935 3 | size 270 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/lossy_with_iccp.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:434cfe308cfcaef8d79f030906fe783df70e568d66df2e906dd98f2ffd5bcc1b 3 | size 63036 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/near_lossless_75.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:12e6b033cb2e636224bd787843bc528cfe42f33fd7c1f3814b1f77269b1ec2ab 3 | size 45274 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/peak.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b9b56ed5c1278664222c77f9a452b824b4f9215c819502b3f6b0e0d44270e7e7 3 | size 26456 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/rgb_pattern_100x100.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:12f39b990367eb09ffbe69eb11bf970b5386e75a02a820e4740e66a079dda527 3 | size 30225 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/rgb_pattern_63x63.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3a7826312b4dabc2d8a89bf84e501ddb0bcc09932c54d2dedb0c96909da94da8 3 | size 12071 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/rgb_pattern_80x80.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f4e27705d23ff33dbac5bdfe8e7e75a6eeda359ff343594fb07feb29abbc2fb5 3 | size 19393 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/segment01.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4236341aa2f02c44ea0e6caa9a6b0c059ac87ca1d490821ce81dbb565732c5d0 3 | size 7658 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/segment02.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:99ecbb7b2b42128050242e67eb0ae424e09f2a886f9cd862d1cf176fcdf1542b 3 | size 7112 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/segment03.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fbe0d3c0b2d180ea1ed92ea6321667071dea2831991741f9769745947c37ff42 3 | size 5470 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/small_13x1.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29121ecb41cb11a2e0301f20aaa10b971bcf93d711e402fc7e331d01d86b7cf1 3 | size 106 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/small_1x1.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f34799482dd5349b549d113fdaa188714d9737fe414e71541b752627bedbde3 3 | size 94 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/small_1x13.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:15acf5b0193273afc3cfa4207718b50acd79ffea20cd6a6beab01717d080887a 3 | size 106 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/small_31x13.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9649f11b7ff9ffde0119b57b7728d837a3f04854e92ef03f2f06d79fbf63748b 3 | size 262 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/sticker.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:49795fc80522dae2ca687b345c21e9b0848f307d3cc3e39fbdcda730772d338c 3 | size 27734 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/test-nostrong.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:85e7ca4f1361394a29f4f0c9d4e5a31f20c2cc6b8816f991bad80b523941e2f9 3 | size 1968 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/test.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a3665d7a6fd48ff60137ae29ac6792207aed3f768c2c05ef324f64c78352d5a5 3 | size 4928 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/testpattern_opaque.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b89449ae398c5b54a120b6b1e6b394e6d5cd58f0a55e5fb86f759fa12dcd325f 3 | size 1983 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/very_short.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:50c3d70b2fd3caad1fbe01b7a0a6b0c9152525b2ed4dde7a50fbba6c1ea6a0d6 3 | size 86 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/vp80-01-intra-1400.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:385b683228d78120162c4be79287010bba55175ed06c5ad0d2fe82f837704641 3 | size 15294 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/vp80-01-intra-1411.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d9330d735d1cdda007810e76a9cd836f07a6e3954363a0f82b1aca52adf346b4 3 | size 11963 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/vp80-01-intra-1416.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d3e253211155418d55618ac0a70ed1118a96917ce63b129bc49914d09f3620cf 3 | size 11227 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/vp80-01-intra-1417.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d28624b166b4bcff6494f53f14e3335d5a762faa8c8e7fbfb0045f2b04123724 3 | size 11364 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/vp80-02-inter-1402.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ea8dcf7462d978ce3f5a38f505caebe09b3d9170a03fdb6479a8111c6bf54c2 3 | size 15294 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/vp80-02-inter-1412.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b2286cf0613e7a910b44494338157ef73504fefd88cd9427b4aecfbed7a034ae 3 | size 11963 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/vp80-02-inter-1418.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7a9da63fdec6ca0c42447867f6a7c7d165b0c3fcbf9313cacd6fc8eeb79a6fa 3 | size 17680 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/vp80-02-inter-1424.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:da8ce9c3078e56a9281620cace12abb39aebdfc0ab25a6586f676e3cf2981704 3 | size 5254 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/vp80-05-sharpness-1428.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a13d9081c8d55dacd6819704712a64a7d25971e59c0ba7e5e5ae4c86ca522b7b 3 | size 8864 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/vp80-05-sharpness-1429.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:99e3f0a30900c65f5af22e41bc60c4fc7209e2c8f93d2edf5d5ff09db6beb900 3 | size 14518 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/vp80-05-sharpness-1430.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:acd9c9fb1876fd2035405b9b72aa5a985922ec1aab2055f6c32a21e02fdd9dbd 3 | size 290 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/vp80-05-sharpness-1431.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9aa0b809dc9aac340acab0f7f4953f497e4b6cefc9dda14f823ab3053a11d5cd 3 | size 6666 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/vp80-05-sharpness-1433.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:005811b6b16550a1da22a1df767311c1b85f1cc7c2409d7917fd594d0b48d4c1 3 | size 14508 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/vp80-05-sharpness-1434.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:da5bef25e427bb9a8be2889c76a65f9506cdfc4bab455b3285b6b627e5880285 3 | size 18224 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/vp80-05-sharpness-1438.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dd0ea301c7446b6fd6d002b9ab48b383501ce05c3953d589be48ede5cf293f9d 3 | size 9981 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/xmp_lossy.webp: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:755a63652695d7e190f375c9c0697cd37c9b601cd54405c704ec8efc200e67fc 3 | size 474772 4 | -------------------------------------------------------------------------------- /tests/Images/Input/Webp/yuv_test.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:96b86c39cad831c97c6ef9633d4d2d04ea0382547514dda5b1f639e10d7207fa 3 | size 3389 4 | --------------------------------------------------------------------------------