实例介绍
Magick.NET是面向ImageMagick的.NET库,为C#、VB.NET和.NET Core应用程序提供了一个强大的图像处理能力。它支持100多种主要文件格式的图像操作,使得开发者可以轻松地在.NET应用程序中实现复杂的图像处理任务。
支持的平台包括Windows、Linux和macOS,涵盖了.NET Standard 2.1和2.0版本,支持x64、arm64等多种架构,确保了良好的跨平台性能。此外,Magick.NET提供了多种量子深度的NuGet包,如Q8、Q16和Q16-HDRI,以满足不同的图像处理需求。
Magick.NET不仅支持AnyCPU并且兼容OpenMP,还提供了额外的库如Magick.NET.Core,这些库为开发者提供了额外的功能,以及与System.Drawing和System.Windows.Media交互的能力。
开发者可以通过NuGet包轻松地将Magick.NET添加到项目中,从而利用ImageMagick的强大功能来处理图像。这使得Magick.NET成为.NET开发者进行图像处理的理想选择。
【实例截图】
【核心代码】
文件清单
└── Magick.NET-91a18cbbc9c9d7f4f24957549becf42bc04f9b58
├── build
│ ├── linux-arm64
│ │ ├── build.cmd
│ │ ├── build.openmp.cmd
│ │ ├── Dockerfile
│ │ ├── github-actions.sh
│ │ ├── install.dependencies.sh
│ │ ├── run.cmd
│ │ └── run.openmp.cmd
│ ├── linux-musl-x64
│ │ ├── build.cmd
│ │ ├── build.openmp.cmd
│ │ ├── Dockerfile
│ │ ├── install.dependencies.sh
│ │ ├── run.cmd
│ │ └── run.openmp.cmd
│ ├── linux-x64
│ │ ├── Dockerfile
│ │ └── install.dependencies.sh
│ ├── osx-x64
│ │ └── install.dependencies.sh
│ ├── shared
│ │ ├── build.Magick.NET.sh
│ │ ├── install.Magick.Native.sh
│ │ └── test.Magick.NET.sh
│ └── windows
│ ├── build.Magick.NET.cmd
│ ├── build.Magick.NET.ps1
│ ├── install.dependencies.cmd
│ ├── install.dependencies.ps1
│ ├── test.Magick.NET.arm64.cmd
│ ├── test.Magick.NET.cmd
│ └── test.Magick.NET.ps1
├── Building.md
├── CODE_OF_CONDUCT.md
├── docs
│ ├── CombiningImages.md
│ ├── ConvertImage.md
│ ├── ConvertPDF.md
│ ├── CrossPlatform.md
│ ├── Defines.md
│ ├── DetailedDebugInformation.md
│ ├── Drawing.md
│ ├── ExceptionHandling.md
│ ├── ExifData.md
│ ├── img
│ │ └── example_addTextToExistingImage.jpg
│ ├── Initialization.md
│ ├── LosslessCompression.md
│ ├── ReadingImages.md
│ ├── Readme.md
│ ├── ReadRawThumbnail.md
│ ├── ResizeImage.md
│ ├── UsingColors.md
│ └── Watermark.md
├── License.txt
├── logo
│ ├── Magick.NET.icon.png
│ ├── Magick.NET.icon.svg
│ └── Magick.NET.svg
├── Magick.NET.sln
├── Magick.NET.snk
├── publish
│ ├── Magick.NET.Core.nuspec
│ ├── Magick.NET.nuspec
│ ├── Magick.NET.SystemDrawing.nuspec
│ ├── Magick.NET.SystemWindowsMedia.nuspec
│ ├── Magick.NET.targets
│ ├── publish.cmd
│ ├── publish.library.cmd
│ ├── publish.library.ps1
│ ├── publish.ps1
│ ├── publish.shared.ps1
│ ├── push.cmd
│ ├── Readme.md
│ ├── set.version.ps1
│ ├── update.version.cmd
│ └── update.version.ps1
├── Readme.md
├── samples
│ └── Magick.NET.Samples
│ ├── CombiningImages.cs
│ ├── ConvertImage.cs
│ ├── ConvertPDF.cs
│ ├── Defines.cs
│ ├── DetailedDebugInformation.cs
│ ├── Drawing.cs
│ ├── ExceptionHandling.cs
│ ├── ExifData.cs
│ ├── Files
│ │ ├── 2FD-Background.jpg
│ │ ├── CorruptImage.jpg
│ │ ├── Files.cs
│ │ ├── FileWithWarning.jpg
│ │ ├── FujiFilmFinePixS1Pro.jpg
│ │ ├── InvalidFile.jpg
│ │ ├── Snakeware.eps
│ │ ├── Snakeware.gif
│ │ ├── Snakeware.jpg
│ │ ├── Snakeware.pdf
│ │ ├── Snakeware.png
│ │ ├── StillLife.cr2
│ │ └── YourProfile.icc
│ ├── LosslessCompression.cs
│ ├── Magick.NET.Samples.csproj
│ ├── Output
│ │ └── Readme.txt
│ ├── Program.cs
│ ├── ReadImages.cs
│ ├── ReadRawThumbnail.cs
│ ├── ResizeImage.cs
│ ├── UsingColors.cs
│ └── Watermark.cs
├── src
│ ├── Magick.Native
│ │ ├── build
│ │ │ ├── Build.cmd
│ │ │ ├── Debug-Q16-HDRI-x64.cmd
│ │ │ ├── Debug-Q16-HDRI-x86.cmd
│ │ │ ├── Debug-Q16-x64.cmd
│ │ │ ├── Debug-Q16-x86.cmd
│ │ │ ├── Debug-Q8-x64.cmd
│ │ │ └── Debug-Q8-x86.cmd
│ │ ├── create-nuget-config.cmd
│ │ ├── create-nuget-config.sh
│ │ ├── install.cmd
│ │ ├── install.ps1
│ │ ├── install.sh
│ │ ├── libraries
│ │ │ ├── linux
│ │ │ │ └── Notice.txt
│ │ │ ├── linux-musl
│ │ │ │ └── Notice.txt
│ │ │ ├── osx
│ │ │ │ └── Notice.txt
│ │ │ └── win
│ │ │ └── Notice.txt
│ │ ├── libraries.md
│ │ ├── Magick.Native.version
│ │ ├── nuget.config.template
│ │ └── TrademarkAttribute.cs
│ ├── Magick.NET
│ │ ├── Colors
│ │ │ ├── ColorBase.cs
│ │ │ ├── ColorCMYK.cs
│ │ │ ├── ColorGray.cs
│ │ │ ├── ColorHSL.cs
│ │ │ ├── ColorHSV.cs
│ │ │ ├── ColorMono.cs
│ │ │ ├── ColorRGB.cs
│ │ │ ├── ColorYUV.cs
│ │ │ ├── HexColor.cs
│ │ │ ├── MagickColorCollection.cs
│ │ │ ├── MagickColor.cs
│ │ │ └── MagickColors.cs
│ │ ├── Configuration
│ │ │ ├── ConfigurationFile.cs
│ │ │ └── ConfigurationFiles.cs
│ │ ├── Copyright.txt
│ │ ├── Defines
│ │ │ └── MagickDefine.cs
│ │ ├── Drawables
│ │ │ ├── Coordinates
│ │ │ │ ├── DrawableCoordinates.cs
│ │ │ │ ├── PathArcCoordinates.cs
│ │ │ │ └── PointDCoordinates.cs
│ │ │ ├── DrawableAffine.cs
│ │ │ ├── DrawableAlpha.cs
│ │ │ ├── DrawableArc.cs
│ │ │ ├── DrawableBezier.cs
│ │ │ ├── DrawableBorderColor.cs
│ │ │ ├── DrawableCircle.cs
│ │ │ ├── DrawableClipPath.cs
│ │ │ ├── DrawableClipRule.cs
│ │ │ ├── DrawableClipUnits.cs
│ │ │ ├── DrawableColor.cs
│ │ │ ├── DrawableComposite.cs
│ │ │ ├── DrawableDensity.cs
│ │ │ ├── DrawableEllipse.cs
│ │ │ ├── DrawableFillColor.cs
│ │ │ ├── DrawableFillOpacity.cs
│ │ │ ├── DrawableFillPatternUrl.cs
│ │ │ ├── DrawableFillRule.cs
│ │ │ ├── DrawableFont.cs
│ │ │ ├── DrawableFontPointSize.cs
│ │ │ ├── DrawableGravity.cs
│ │ │ ├── DrawableLine.cs
│ │ │ ├── DrawablePath.cs
│ │ │ ├── DrawablePoint.cs
│ │ │ ├── DrawablePolygon.cs
│ │ │ ├── DrawablePolyline.cs
│ │ │ ├── DrawablePopClipPath.cs
│ │ │ ├── DrawablePopGraphicContext.cs
│ │ │ ├── DrawablePopPattern.cs
│ │ │ ├── DrawablePushClipPath.cs
│ │ │ ├── DrawablePushGraphicContext.cs
│ │ │ ├── DrawablePushPattern.cs
│ │ │ ├── DrawableRectangle.cs
│ │ │ ├── DrawableRotation.cs
│ │ │ ├── DrawableRoundRectangle.cs
│ │ │ ├── DrawableScaling.cs
│ │ │ ├── Drawables.cs
│ │ │ ├── DrawableSkewX.cs
│ │ │ ├── DrawableSkewY.cs
│ │ │ ├── DrawableStrokeAntialias.cs
│ │ │ ├── DrawableStrokeColor.cs
│ │ │ ├── DrawableStrokeDashArray.cs
│ │ │ ├── DrawableStrokeDashOffset.cs
│ │ │ ├── DrawableStrokeLineCap.cs
│ │ │ ├── DrawableStrokeLineJoin.cs
│ │ │ ├── DrawableStrokeMiterLimit.cs
│ │ │ ├── DrawableStrokeOpacity.cs
│ │ │ ├── DrawableStrokePatternUrl.cs
│ │ │ ├── DrawableStrokeWidth.cs
│ │ │ ├── DrawableTextAlignment.cs
│ │ │ ├── DrawableTextAntialias.cs
│ │ │ ├── DrawableText.cs
│ │ │ ├── DrawableTextDecoration.cs
│ │ │ ├── DrawableTextDirection.cs
│ │ │ ├── DrawableTextEncoding.cs
│ │ │ ├── DrawableTextInterlineSpacing.cs
│ │ │ ├── DrawableTextInterwordSpacing.cs
│ │ │ ├── DrawableTextKerning.cs
│ │ │ ├── DrawableTextUnderColor.cs
│ │ │ ├── DrawableTranslation.cs
│ │ │ ├── DrawableViewbox.cs
│ │ │ ├── DrawingWand.cs
│ │ │ ├── IDrawingWand.cs
│ │ │ └── Paths
│ │ │ ├── PathArcAbs.cs
│ │ │ ├── PathArcRel.cs
│ │ │ ├── PathClose.cs
│ │ │ ├── PathCurveToAbs.cs
│ │ │ ├── PathCurveToRel.cs
│ │ │ ├── PathLineToAbs.cs
│ │ │ ├── PathLineToHorizontalAbs.cs
│ │ │ ├── PathLineToHorizontalRel.cs
│ │ │ ├── PathLineToRel.cs
│ │ │ ├── PathLineToVerticalAbs.cs
│ │ │ ├── PathLineToVerticalRel.cs
│ │ │ ├── PathMoveToAbs.cs
│ │ │ ├── PathMoveToRel.cs
│ │ │ ├── PathQuadraticCurveToAbs.cs
│ │ │ ├── PathQuadraticCurveToRel.cs
│ │ │ ├── Paths.cs
│ │ │ ├── PathSmoothCurveToAbs.cs
│ │ │ ├── PathSmoothCurveToRel.cs
│ │ │ ├── PathSmoothQuadraticCurveToAbs.cs
│ │ │ └── PathSmoothQuadraticCurveToRel.cs
│ │ ├── Enums
│ │ │ ├── GeometryFlags.cs
│ │ │ └── LayerMethod.cs
│ │ ├── EventArgs
│ │ │ └── ArtifactEventArgs.cs
│ │ ├── Exceptions
│ │ │ ├── ExceptionSeverity.cs
│ │ │ └── MagickExceptionHelper.cs
│ │ ├── Extensions
│ │ │ ├── DensityExtensions.cs
│ │ │ └── IExifProfileExtensions.cs
│ │ ├── Factories
│ │ │ ├── DrawablesFactory.cs
│ │ │ ├── MagickColorFactory.cs
│ │ │ ├── MagickFactory.cs
│ │ │ ├── MagickGeometryFactory.cs
│ │ │ ├── MagickImageCollectionFactory.cs
│ │ │ ├── MagickImageFactory.cs
│ │ │ ├── MagickImageInfoFactory.cs
│ │ │ ├── MatrixFactory.cs
│ │ │ └── SettingsFactory.cs
│ │ ├── Formats
│ │ │ ├── Bmp
│ │ │ │ ├── BmpReadDefines.cs
│ │ │ │ ├── BmpSubtype.cs
│ │ │ │ └── BmpWriteDefines.cs
│ │ │ ├── Caption
│ │ │ │ └── CaptionReadDefines.cs
│ │ │ ├── Dds
│ │ │ │ ├── DdsCompression.cs
│ │ │ │ ├── DdsReadDefines.cs
│ │ │ │ └── DdsWriteDefines.cs
│ │ │ ├── Dng
│ │ │ │ ├── DngInterpolation.cs
│ │ │ │ ├── DngOutputColor.cs
│ │ │ │ └── DngReadDefines.cs
│ │ │ ├── Heic
│ │ │ │ └── HeicReadDefines.cs
│ │ │ ├── Jp2
│ │ │ │ ├── Jp2ProgressionOrder.cs
│ │ │ │ ├── Jp2ReadDefines.cs
│ │ │ │ └── Jp2WriteDefines.cs
│ │ │ ├── Jpeg
│ │ │ │ ├── JpegDctMethod.cs
│ │ │ │ ├── JpegProfileTypes.cs
│ │ │ │ ├── JpegReadDefines.cs
│ │ │ │ ├── JpegSamplingFactor.cs
│ │ │ │ └── JpegWriteDefines.cs
│ │ │ ├── Jxl
│ │ │ │ └── JxlWriteDefines.cs
│ │ │ │ ├── PdfInfo.cs
│ │ │ │ ├── PdfReadDefines.cs
│ │ │ │ └── PdfWriteDefines.cs
│ │ │ ├── Png
│ │ │ │ ├── PngProfileTypes.cs
│ │ │ │ └── PngReadDefines.cs
│ │ │ ├── Psd
│ │ │ │ ├── PsdAdditionalInfo.cs
│ │ │ │ ├── PsdAdditionalInfoPart.cs
│ │ │ │ ├── PsdReadDefines.cs
│ │ │ │ └── PsdWriteDefines.cs
│ │ │ ├── Tiff
│ │ │ │ ├── TiffAlpha.cs
│ │ │ │ ├── TiffJpegTablesMode.cs
│ │ │ │ ├── TiffReadDefines.cs
│ │ │ │ └── TiffWriteDefines.cs
│ │ │ ├── Video
│ │ │ │ ├── VideoReadDefines.cs
│ │ │ │ ├── VideoReadMode.cs
│ │ │ │ ├── VideoSync.cs
│ │ │ │ └── VideoWriteDefines.cs
│ │ │ └── WebP
│ │ │ ├── WebPAlphaCompression.cs
│ │ │ ├── WebPAlphaFiltering.cs
│ │ │ ├── WebPFilterType.cs
│ │ │ ├── WebPImageHint.cs
│ │ │ ├── WebPPreprocessing.cs
│ │ │ └── WebPWriteDefines.cs
│ │ ├── Helpers
│ │ │ ├── ArrayConverters
│ │ │ │ ├── ByteConverter.cs
│ │ │ │ ├── QuantumConverter.cs
│ │ │ │ └── ShortConverter.cs
│ │ │ ├── ByteArrayWrapper.cs
│ │ │ ├── Bytes.cs
│ │ │ ├── Environment.cs
│ │ │ ├── MagickMemory.cs
│ │ │ ├── NativeMemory.cs
│ │ │ ├── PercentageHelper.cs
│ │ │ ├── Runtime.cs
│ │ │ ├── StreamWrapper.cs
│ │ │ ├── TemporaryDefines.cs
│ │ │ ├── TemporaryFile.cs
│ │ │ ├── TemporaryMagickFormat.cs
│ │ │ └── UTF8Marshaler.cs
│ │ ├── ImageOptimizers
│ │ │ ├── GifOptimizer.cs
│ │ │ ├── IcoOptimizer.cs
│ │ │ ├── ImageOptimizer.cs
│ │ │ ├── ImageOptimizerHelper.cs
│ │ │ ├── JpegOptimizer.cs
│ │ │ ├── PngHelper.cs
│ │ │ └── PngOptimizer.cs
│ │ ├── MagickFormatInfo.cs
│ │ ├── MagickImageCollection.cs
│ │ ├── MagickImage.cs
│ │ ├── MagickImageInfo.cs
│ │ ├── MagickNET.cs
│ │ ├── Magick.NET.csproj
│ │ ├── Matrices
│ │ │ ├── ConvolveMatrix.cs
│ │ │ ├── DoubleMatrix.cs
│ │ │ └── MagickColorMatrix.cs
│ │ ├── Native
│ │ │ ├── Colors
│ │ │ │ ├── MagickColorCollection.cs
│ │ │ │ ├── MagickColorCollection.json
│ │ │ │ ├── MagickColor.cs
│ │ │ │ └── MagickColor.json
│ │ │ ├── ConstNativeInstance.cs
│ │ │ ├── Drawables
│ │ │ │ ├── DrawingWand.cs
│ │ │ │ └── DrawingWand.json
│ │ │ ├── Exceptions
│ │ │ │ ├── MagickExceptionHelper.cs
│ │ │ │ └── MagickExceptionHelper.json
│ │ │ ├── Formats
│ │ │ │ ├── PdfInfo.cs
│ │ │ │ └── PdfInfo.json
│ │ │ ├── Helpers
│ │ │ │ ├── Environment.cs
│ │ │ │ ├── Environment.json
│ │ │ │ ├── MagickMemory.cs
│ │ │ │ └── MagickMemory.json
│ │ │ ├── INativeInstance.cs
│ │ │ ├── Magick.cs
│ │ │ ├── MagickFormatInfo.cs
│ │ │ ├── MagickFormatInfo.json
│ │ │ ├── MagickImageCollection.cs
│ │ │ ├── MagickImageCollection.json
│ │ │ ├── MagickImage.cs
│ │ │ ├── MagickImage.json
│ │ │ ├── Magick.json
│ │ │ ├── Matricis
│ │ │ │ ├── DoubleMatrix.cs
│ │ │ │ └── DoubleMatrix.json
│ │ │ ├── NativeChannels.cs
│ │ │ ├── NativeHelper.cs
│ │ │ ├── NativeInstance.cs
│ │ │ ├── NativeLibrary.cs
│ │ │ ├── OpenCL
│ │ │ │ ├── OpenCL.cs
│ │ │ │ ├── OpenCLDevice.cs
│ │ │ │ ├── OpenCLDevice.json
│ │ │ │ ├── OpenCL.json
│ │ │ │ ├── OpenCLKernelProfileRecord.cs
│ │ │ │ └── OpenCLKernelProfileRecord.json
│ │ │ ├── Optimizers
│ │ │ │ ├── JpegOptimizer.cs
│ │ │ │ └── JpegOptimizer.json
│ │ │ ├── Pixels
│ │ │ │ ├── PixelCollection.cs
│ │ │ │ └── PixelCollection.json
│ │ │ ├── Quantum.cs
│ │ │ ├── Quantum.json
│ │ │ ├── ResourceLimits.cs
│ │ │ ├── ResourceLimits.json
│ │ │ ├── Settings
│ │ │ │ ├── DrawingSettings.cs
│ │ │ │ ├── DrawingSettings.json
│ │ │ │ ├── MagickSettings.cs
│ │ │ │ ├── MagickSettings.json
│ │ │ │ ├── MontageSettings.cs
│ │ │ │ ├── MontageSettings.json
│ │ │ │ ├── QuantizeSettings.cs
│ │ │ │ └── QuantizeSettings.json
│ │ │ ├── Statistics
│ │ │ │ ├── ChannelMoments.cs
│ │ │ │ ├── ChannelMoments.json
│ │ │ │ ├── ChannelPerceptualHash.cs
│ │ │ │ ├── ChannelPerceptualHash.json
│ │ │ │ ├── ChannelStatistics.cs
│ │ │ │ ├── ChannelStatistics.json
│ │ │ │ ├── Moments.cs
│ │ │ │ ├── Moments.json
│ │ │ │ ├── PerceptualHash.cs
│ │ │ │ ├── PerceptualHash.json
│ │ │ │ ├── Statistics.cs
│ │ │ │ └── Statistics.json
│ │ │ └── Types
│ │ │ ├── ConnectedComponent.cs
│ │ │ ├── ConnectedComponent.json
│ │ │ ├── MagickGeometry.cs
│ │ │ ├── MagickGeometry.json
│ │ │ ├── MagickRectangle.cs
│ │ │ ├── MagickRectangle.json
│ │ │ ├── OffsetInfo.cs
│ │ │ ├── OffsetInfo.json
│ │ │ ├── PointInfoCollection.cs
│ │ │ ├── PointInfoCollection.json
│ │ │ ├── PointInfo.cs
│ │ │ ├── PointInfo.json
│ │ │ ├── PrimaryInfo.cs
│ │ │ ├── PrimaryInfo.json
│ │ │ ├── StringInfo.cs
│ │ │ ├── StringInfo.json
│ │ │ ├── TypeMetric.cs
│ │ │ └── TypeMetric.json
│ │ ├── Netstandard21
│ │ │ ├── Factories
│ │ │ │ ├── MagickImageCollectionFactory.cs
│ │ │ │ ├── MagickImageFactory.cs
│ │ │ │ └── MagickImageInfoFactory.cs
│ │ │ ├── Helpers
│ │ │ │ ├── BufferWriterWrapper.cs
│ │ │ │ ├── ReadOnlySequenceWrapper.cs
│ │ │ │ └── Throw.cs
│ │ │ ├── MagickFormatInfo.cs
│ │ │ ├── MagickImageCollection.cs
│ │ │ ├── MagickImage.cs
│ │ │ ├── MagickImageInfo.cs
│ │ │ └── Pixels
│ │ │ ├── PixelCollection.cs
│ │ │ ├── SafePixelCollection.cs
│ │ │ └── UnsafePixelCollection.cs
│ │ ├── OpenCL
│ │ │ ├── OpenCL.cs
│ │ │ ├── OpenCLDevice.cs
│ │ │ └── OpenCLKernelProfileRecord.cs
│ │ ├── Pixels
│ │ │ ├── PixelCollection.cs
│ │ │ ├── PixelCollectionEnumerator.cs
│ │ │ ├── Pixel.cs
│ │ │ ├── SafePixelCollection.cs
│ │ │ └── UnsafePixelCollection.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ └── InternalsVisibleTo.cs
│ │ ├── Quantum.cs
│ │ ├── ResourceLimits.cs
│ │ ├── Settings
│ │ │ ├── CompareSettings.cs
│ │ │ ├── ComplexSettings.cs
│ │ │ ├── ConnectedComponentsSettings.cs
│ │ │ ├── DeskewSettings.cs
│ │ │ ├── DistortSettings.cs
│ │ │ ├── DrawingSettings.cs
│ │ │ ├── KmeansSettings.cs
│ │ │ ├── MagickReadSettings.cs
│ │ │ ├── MagickSettings.cs
│ │ │ ├── MontageSettings.cs
│ │ │ ├── MorphologySettings.cs
│ │ │ ├── PixelImportSettings.cs
│ │ │ ├── PixelReadSettings.cs
│ │ │ └── QuantizeSettings.cs
│ │ ├── Statistics
│ │ │ ├── ChannelMoments.cs
│ │ │ ├── ChannelPerceptualHash.cs
│ │ │ ├── ChannelStatistics.cs
│ │ │ ├── Moments.cs
│ │ │ ├── PerceptualHash.cs
│ │ │ └── Statistics.cs
│ │ └── Types
│ │ ├── ChromaticityInfo.cs
│ │ ├── ConnectedComponent.cs
│ │ ├── MagickErrorInfo.cs
│ │ ├── MagickGeometry.cs
│ │ ├── MagickRectangle.cs
│ │ ├── MagickSearchResult.cs
│ │ ├── OffsetInfo.cs
│ │ ├── PointInfoCollection.cs
│ │ ├── PointInfo.cs
│ │ ├── PrimaryInfo.cs
│ │ ├── SparseColorArg.cs
│ │ ├── StringInfo.cs
│ │ └── TypeMetric.cs
│ ├── Magick.NET.Core
│ │ ├── Colors
│ │ │ ├── IMagickColors{TQuantumType}.cs
│ │ │ └── IMagickColor{TQuantumType}.cs
│ │ ├── Configuration
│ │ │ ├── IConfigurationFile.cs
│ │ │ └── IConfigurationFiles.cs
│ │ ├── Defines
│ │ │ ├── IDefine.cs
│ │ │ ├── IDefines.cs
│ │ │ ├── IReadDefines.cs
│ │ │ └── IWriteDefines.cs
│ │ ├── Drawables
│ │ │ ├── IDrawableAffine.cs
│ │ │ ├── IDrawableAlpha.cs
│ │ │ ├── IDrawableArc.cs
│ │ │ ├── IDrawableBezier.cs
│ │ │ ├── IDrawableBorderColor{TQuantumType}.cs
│ │ │ ├── IDrawableCircle.cs
│ │ │ ├── IDrawableClipPath.cs
│ │ │ ├── IDrawableClipRule.cs
│ │ │ ├── IDrawableClipUnits.cs
│ │ │ ├── IDrawableColor.cs
│ │ │ ├── IDrawableComposite{TQuantumType}.cs
│ │ │ ├── IDrawable.cs
│ │ │ ├── IDrawableDensity.cs
│ │ │ ├── IDrawableEllipse.cs
│ │ │ ├── IDrawableFillColor{TQuantumType}.cs
│ │ │ ├── IDrawableFillOpacity.cs
│ │ │ ├── IDrawableFillPatternUrl.cs
│ │ │ ├── IDrawableFillRule.cs
│ │ │ ├── IDrawableFont.cs
│ │ │ ├── IDrawableFontPointSize.cs
│ │ │ ├── IDrawableGravity.cs
│ │ │ ├── IDrawableLine.cs
│ │ │ ├── IDrawablePath.cs
│ │ │ ├── IDrawablePoint.cs
│ │ │ ├── IDrawablePolygon.cs
│ │ │ ├── IDrawablePolyline.cs
│ │ │ ├── IDrawablePopClipPath.cs
│ │ │ ├── IDrawablePopGraphicContext.cs
│ │ │ ├── IDrawablePopPattern.cs
│ │ │ ├── IDrawablePushClipPath.cs
│ │ │ ├── IDrawablePushGraphicContext.cs
│ │ │ ├── IDrawablePushPattern.cs
│ │ │ ├── IDrawableRectangle.cs
│ │ │ ├── IDrawableRotation.cs
│ │ │ ├── IDrawableRoundRectangle.cs
│ │ │ ├── IDrawableScaling.cs
│ │ │ ├── IDrawableSkewX.cs
│ │ │ ├── IDrawableSkewY.cs
│ │ │ ├── IDrawables{TQuantumType}.cs
│ │ │ ├── IDrawableStrokeAntialias.cs
│ │ │ ├── IDrawableStrokeColor{TQuantumType}.cs
│ │ │ ├── IDrawableStrokeDashArray.cs
│ │ │ ├── IDrawableStrokeDashOffset.cs
│ │ │ ├── IDrawableStrokeLineCap.cs
│ │ │ ├── IDrawableStrokeLineJoin.cs
│ │ │ ├── IDrawableStrokeMiterLimit.cs
│ │ │ ├── IDrawableStrokeOpacity.cs
│ │ │ ├── IDrawableStrokePatternUrl.cs
│ │ │ ├── IDrawableStrokeWidth.cs
│ │ │ ├── IDrawableTextAlignment.cs
│ │ │ ├── IDrawableTextAntialias.cs
│ │ │ ├── IDrawableText.cs
│ │ │ ├── IDrawableTextDecoration.cs
│ │ │ ├── IDrawableTextDirection.cs
│ │ │ ├── IDrawableTextEncoding.cs
│ │ │ ├── IDrawableTextInterlineSpacing.cs
│ │ │ ├── IDrawableTextInterwordSpacing.cs
│ │ │ ├── IDrawableTextKerning.cs
│ │ │ ├── IDrawableTextUnderColor.cs
│ │ │ ├── IDrawableTranslation.cs
│ │ │ ├── IDrawableViewbox.cs
│ │ │ └── Paths
│ │ │ ├── Args
│ │ │ │ └── PathArc.cs
│ │ │ ├── IPathArc.cs
│ │ │ ├── IPathClose.cs
│ │ │ ├── IPath.cs
│ │ │ ├── IPathCurveTo.cs
│ │ │ ├── IPathLineTo.cs
│ │ │ ├── IPathLineToHorizontal.cs
│ │ │ ├── IPathLineToVertical.cs
│ │ │ ├── IPathMoveTo.cs
│ │ │ ├── IPathQuadraticCurveTo.cs
│ │ │ ├── IPathSmoothCurveTo.cs
│ │ │ ├── IPathSmoothQuadraticCurveTo.cs
│ │ │ └── IPaths{TQuantumType}.cs
│ │ ├── Enums
│ │ │ ├── AlphaOption.cs
│ │ │ ├── AutoThresholdMethod.cs
│ │ │ ├── Channels.cs
│ │ │ ├── ClassType.cs
│ │ │ ├── ClipPathUnit.cs
│ │ │ ├── ColorSpace.cs
│ │ │ ├── ColorTransformMode.cs
│ │ │ ├── ColorType.cs
│ │ │ ├── ComplexOperator.cs
│ │ │ ├── CompositeOperator.cs
│ │ │ ├── CompressionMethod.cs
│ │ │ ├── DensityUnit.cs
│ │ │ ├── DistortMethod.cs
│ │ │ ├── DitherMethod.cs
│ │ │ ├── Endian.cs
│ │ │ ├── ErrorMetric.cs
│ │ │ ├── EvaluateFunction.cs
│ │ │ ├── EvaluateOperator.cs
│ │ │ ├── FillRule.cs
│ │ │ ├── FilterType.cs
│ │ │ ├── FontStretch.cs
│ │ │ ├── FontStyleType.cs
│ │ │ ├── FontWeight.cs
│ │ │ ├── GifDisposeMethod.cs
│ │ │ ├── Gravity.cs
│ │ │ ├── Interlace.cs
│ │ │ ├── Kernel.cs
│ │ │ ├── LineCap.cs
│ │ │ ├── LineJoin.cs
│ │ │ ├── LogEvents.cs
│ │ │ ├── MagickFormat.cs
│ │ │ ├── MorphologyMethod.cs
│ │ │ ├── NoiseType.cs
│ │ │ ├── OpenCLDeviceType.cs
│ │ │ ├── OrientationType.cs
│ │ │ ├── PaintMethod.cs
│ │ │ ├── PixelChannel.cs
│ │ │ ├── PixelIntensityMethod.cs
│ │ │ ├── PixelInterpolateMethod.cs
│ │ │ ├── PixelMapping.cs
│ │ │ ├── RenderingIntent.cs
│ │ │ ├── SparseColorMethod.cs
│ │ │ ├── StatisticType.cs
│ │ │ ├── StorageType.cs
│ │ │ ├── TextAlignment.cs
│ │ │ ├── TextDecoration.cs
│ │ │ ├── TextDirection.cs
│ │ │ └── VirtualPixelMethod.cs
│ │ ├── EventArgs
│ │ │ ├── LogEventArgs.cs
│ │ │ ├── ProgressEventArgs.cs
│ │ │ └── WarningEventArgs.cs
│ │ ├── Exceptions
│ │ │ ├── Error
│ │ │ │ ├── MagickBlobErrorException.cs
│ │ │ │ ├── MagickCacheErrorException.cs
│ │ │ │ ├── MagickCoderErrorException.cs
│ │ │ │ ├── MagickConfigureErrorException.cs
│ │ │ │ ├── MagickCorruptImageErrorException.cs
│ │ │ │ ├── MagickDelegateErrorException.cs
│ │ │ │ ├── MagickDrawErrorException.cs
│ │ │ │ ├── MagickErrorException.cs
│ │ │ │ ├── MagickFileOpenErrorException.cs
│ │ │ │ ├── MagickImageErrorException.cs
│ │ │ │ ├── MagickMissingDelegateErrorException.cs
│ │ │ │ ├── MagickModuleErrorException.cs
│ │ │ │ ├── MagickOptionErrorException.cs
│ │ │ │ ├── MagickPolicyErrorException.cs
│ │ │ │ ├── MagickRegistryErrorException.cs
│ │ │ │ ├── MagickResourceLimitErrorException.cs
│ │ │ │ ├── MagickStreamErrorException.cs
│ │ │ │ └── MagickTypeErrorException.cs
│ │ │ ├── MagickException.cs
│ │ │ └── Warning
│ │ │ ├── MagickBlobWarningException.cs
│ │ │ ├── MagickCacheWarningException.cs
│ │ │ ├── MagickCoderWarningException.cs
│ │ │ ├── MagickConfigureWarningException.cs
│ │ │ ├── MagickCorruptImageWarningException.cs
│ │ │ ├── MagickDelegateWarningException.cs
│ │ │ ├── MagickDrawWarningException.cs
│ │ │ ├── MagickFileOpenWarningException.cs
│ │ │ ├── MagickImageWarningException.cs
│ │ │ ├── MagickMissingDelegateWarningException.cs
│ │ │ ├── MagickModuleWarningException.cs
│ │ │ ├── MagickOptionWarningException.cs
│ │ │ ├── MagickPolicyWarningException.cs
│ │ │ ├── MagickRegistryWarningException.cs
│ │ │ ├── MagickResourceLimitWarningException.cs
│ │ │ ├── MagickStreamWarningException.cs
│ │ │ ├── MagickTypeWarningException.cs
│ │ │ └── MagickWarningException.cs
│ │ ├── Factories
│ │ │ ├── IDrawablesFactory{TQuantumType}.cs
│ │ │ ├── IMagickColorFactory{TQuantumType}.cs
│ │ │ ├── IMagickFactory.cs
│ │ │ ├── IMagickFactory{TQuantumType}.cs
│ │ │ ├── IMagickGeometryFactory.cs
│ │ │ ├── IMagickImageCollectionFactory{TQuantumType}.cs
│ │ │ ├── IMagickImageFactory{TQuantumType}.cs
│ │ │ ├── IMagickImageInfoFactory.cs
│ │ │ ├── IMagickImageInfoFactory{TQuantumType}.cs
│ │ │ ├── IMatrixFactory.cs
│ │ │ └── ISettingsFactory.cs
│ │ ├── Helpers
│ │ │ ├── ByteConverter.cs
│ │ │ ├── MemoryStreamExtensions.cs
│ │ │ └── XmlHelper.cs
│ │ ├── ImageOptimizers
│ │ │ └── IImageOptimizer.cs
│ │ ├── IMagickFormatInfo.cs
│ │ ├── IMagickImageCollection.cs
│ │ ├── IMagickImageCollection{TQuantumType}.cs
│ │ ├── IMagickImage.cs
│ │ ├── IMagickImageInfo.cs
│ │ ├── IMagickImageInfo{TQuantumType}.cs
│ │ ├── IMagickImage{TQuantumType}.cs
│ │ ├── IMagickNET.cs
│ │ ├── IQuantum.cs
│ │ ├── IQuantum{TQuantumType}.cs
│ │ ├── IResourceLimits.cs
│ │ ├── Magick.NET.Core.csproj
│ │ ├── Matrices
│ │ │ ├── IConvolveMatrix.cs
│ │ │ ├── IDoubleMatrix.cs
│ │ │ └── IMagickColorMatrix.cs
│ │ ├── Netstandard21
│ │ │ ├── Factories
│ │ │ │ ├── IMagickImageCollectionFactory{TQuantumType}.cs
│ │ │ │ ├── IMagickImageFactory{TQuantumType}.cs
│ │ │ │ └── IMagickImageInfoFactory.cs
│ │ │ ├── IMagickImageCollection.cs
│ │ │ ├── IMagickImageCollection{TQuantumType}.cs
│ │ │ ├── IMagickImage.cs
│ │ │ ├── IMagickImageInfo.cs
│ │ │ ├── IMagickImageInfo{TQuantumType}.cs
│ │ │ ├── IMagickImage{TQuantumType}.cs
│ │ │ └── Pixels
│ │ │ └── IPixelCollection{TQuantumType}.cs
│ │ ├── OpenCL
│ │ │ ├── IOpenCL.cs
│ │ │ ├── IOpenCLDevice.cs
│ │ │ └── IOpenCLKernelProfileRecord.cs
│ │ ├── Pixels
│ │ │ ├── IPixelCollection{TQuantumType}.cs
│ │ │ ├── IPixel{TQuantumType}.cs
│ │ │ └── IUnsafePixelCollection{TQuantumType}.cs
│ │ ├── Profiles
│ │ │ ├── 8Bim
│ │ │ │ ├── ClipPath.cs
│ │ │ │ ├── ClipPathReader.cs
│ │ │ │ ├── EightBimProfile.cs
│ │ │ │ ├── EightBimReader.cs
│ │ │ │ ├── EightBimValue.cs
│ │ │ │ ├── EightBimWriter.cs
│ │ │ │ ├── IClipPath.cs
│ │ │ │ ├── IEightBimProfile.cs
│ │ │ │ └── IEightBimValue.cs
│ │ │ ├── Color
│ │ │ │ ├── ColorProfile.cs
│ │ │ │ ├── ColorProfileData.cs
│ │ │ │ ├── ColorProfileReader.cs
│ │ │ │ └── IColorProfile.cs
│ │ │ ├── EndianReader.cs
│ │ │ ├── Exif
│ │ │ │ ├── ExifData.cs
│ │ │ │ ├── ExifDataType.cs
│ │ │ │ ├── ExifDataTypes.cs
│ │ │ │ ├── ExifParts.cs
│ │ │ │ ├── ExifProfile.cs
│ │ │ │ ├── ExifReader.cs
│ │ │ │ ├── ExifTagDescriptionAttribute.cs
│ │ │ │ ├── ExifTags.cs
│ │ │ │ ├── ExifWriter.cs
│ │ │ │ ├── IExifProfile.cs
│ │ │ │ ├── Tags
│ │ │ │ │ ├── ExifTag.ByteArray.cs
│ │ │ │ │ ├── ExifTag.Byte.cs
│ │ │ │ │ ├── ExifTag.cs
│ │ │ │ │ ├── ExifTag.DoubleArray.cs
│ │ │ │ │ ├── ExifTag.LongArray.cs
│ │ │ │ │ ├── ExifTag.Long.cs
│ │ │ │ │ ├── ExifTag.NumberArray.cs
│ │ │ │ │ ├── ExifTag.Number.cs
│ │ │ │ │ ├── ExifTag.RationalArray.cs
│ │ │ │ │ ├── ExifTag.Rational.cs
│ │ │ │ │ ├── ExifTag.ShortArray.cs
│ │ │ │ │ ├── ExifTag.Short.cs
│ │ │ │ │ ├── ExifTag.SignedRationalArray.cs
│ │ │ │ │ ├── ExifTag.SignedRational.cs
│ │ │ │ │ ├── ExifTag.String.cs
│ │ │ │ │ ├── ExifTag{TValueType}.cs
│ │ │ │ │ ├── ExifTag.Undefined.cs
│ │ │ │ │ ├── ExifTagValue.cs
│ │ │ │ │ └── UnkownExifTag.cs
│ │ │ │ └── Values
│ │ │ │ ├── ExifArrayValue{TValueType}.cs
│ │ │ │ ├── ExifByteArray.cs
│ │ │ │ ├── ExifByte.cs
│ │ │ │ ├── ExifDoubleArray.cs
│ │ │ │ ├── ExifDouble.cs
│ │ │ │ ├── ExifFloatArray.cs
│ │ │ │ ├── ExifFloat.cs
│ │ │ │ ├── ExifLongArray.cs
│ │ │ │ ├── ExifLong.cs
│ │ │ │ ├── ExifNumberArray.cs
│ │ │ │ ├── ExifNumber.cs
│ │ │ │ ├── ExifRationalArray.cs
│ │ │ │ ├── ExifRational.cs
│ │ │ │ ├── ExifShortArray.cs
│ │ │ │ ├── ExifShort.cs
│ │ │ │ ├── ExifSignedByteArray.cs
│ │ │ │ ├── ExifSignedByte.cs
│ │ │ │ ├── ExifSignedLongArray.cs
│ │ │ │ ├── ExifSignedLong.cs
│ │ │ │ ├── ExifSignedRationalArray.cs
│ │ │ │ ├── ExifSignedRational.cs
│ │ │ │ ├── ExifSignedShortArray.cs
│ │ │ │ ├── ExifSignedShort.cs
│ │ │ │ ├── ExifString.cs
│ │ │ │ ├── ExifValue.cs
│ │ │ │ ├── ExifValues.cs
│ │ │ │ ├── ExifValue{TValueType}.cs
│ │ │ │ ├── IExifValue.cs
│ │ │ │ └── IExifValue{TValueType}.cs
│ │ │ ├── IImageProfile.cs
│ │ │ ├── ImageProfile.cs
│ │ │ ├── Iptc
│ │ │ │ ├── IIptcProfile.cs
│ │ │ │ ├── IIptcValue.cs
│ │ │ │ ├── IptcProfile.cs
│ │ │ │ ├── IptcTag.cs
│ │ │ │ ├── IptcTagHelper.cs
│ │ │ │ └── IptcValue.cs
│ │ │ └── Xmp
│ │ │ ├── IXmpProfile.cs
│ │ │ └── XmpProfile.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ └── InternalsVisibleTo.cs
│ │ ├── Resources
│ │ │ └── ColorProfiles
│ │ │ ├── CMYK
│ │ │ │ ├── CoatedFOGRA39.icc
│ │ │ │ └── USWebCoatedSWOP.icc
│ │ │ └── RGB
│ │ │ ├── AdobeRGB1998.icc
│ │ │ ├── AppleRGB.icc
│ │ │ ├── ColorMatchRGB.icc
│ │ │ └── SRGB.icm
│ │ ├── Settings
│ │ │ ├── ICompareSettings{TQuantumType}.cs
│ │ │ ├── IComplexSettings.cs
│ │ │ ├── IConnectedComponentsSettings.cs
│ │ │ ├── IDeskewSettings.cs
│ │ │ ├── IDistortSettings.cs
│ │ │ ├── IKmeansSettings.cs
│ │ │ ├── IMagickReadSettings{TQuantumType}.cs
│ │ │ ├── IMagickSettings{TQuantumType}.cs
│ │ │ ├── IMontageSettings{TQuantumType}.cs
│ │ │ ├── IMorphologySettings.cs
│ │ │ ├── IPixelImportSettings.cs
│ │ │ ├── IPixelReadSettings{TQuantumType}.cs
│ │ │ └── IQuantizeSettings.cs
│ │ ├── Statistics
│ │ │ ├── IChannelMoments.cs
│ │ │ ├── IChannelPerceptualHash.cs
│ │ │ ├── IChannelStatistics.cs
│ │ │ ├── IMoments.cs
│ │ │ ├── IPerceptualHash.cs
│ │ │ └── IStatistics.cs
│ │ └── Types
│ │ ├── BigRational.cs
│ │ ├── Density.cs
│ │ ├── IChromaticityInfo.cs
│ │ ├── IConnectedComponent{TQuantumType}.cs
│ │ ├── IMagickErrorInfo.cs
│ │ ├── IMagickGeometry.cs
│ │ ├── IMagickSearchResult{TQuantumType}.cs
│ │ ├── IPrimaryInfo.cs
│ │ ├── ISparseColorArg{TQuantumType}.cs
│ │ ├── ITypeMetric.cs
│ │ ├── Number.cs
│ │ ├── Percentage.cs
│ │ ├── PointD.cs
│ │ ├── Rational.cs
│ │ ├── SignedRational.cs
│ │ └── Threshold.cs
│ ├── Magick.NET.props
│ ├── Magick.NET.ruleset
│ ├── Magick.NET.SourceGenerator
│ │ ├── CodeBuilder.cs
│ │ ├── Drawables
│ │ │ ├── DrawablesAttribute.cs
│ │ │ └── DrawablesGenerator.cs
│ │ ├── ExifTagDescription
│ │ │ ├── ExifTagDescriptionAttribute.cs
│ │ │ ├── ExifTagDescriptionGenerator.cs
│ │ │ └── ExifTagDescriptionInfo.cs
│ │ ├── Extensions
│ │ │ └── ISymbolExtensions.cs
│ │ ├── IncrementalGeneratorInitializationContextExtensions.cs
│ │ ├── IncrementalGeneratorPostInitializationContextExtensions.cs
│ │ ├── MagickColors
│ │ │ ├── MagickColorsAttribute.cs
│ │ │ ├── MagickColorsGenerator.cs
│ │ │ └── SystemDrawingColor.cs
│ │ ├── Magick.NET.SourceGenerator.csproj
│ │ ├── Paths
│ │ │ ├── PathsAttribute.cs
│ │ │ └── PathsGenerator.cs
│ │ └── PropertySymbolInfo.cs
│ ├── Magick.NET.SystemDrawing
│ │ ├── ImageFormatExtensions.cs
│ │ ├── IMagickColorExtensions.cs
│ │ ├── IMagickGeometryExtensions.cs
│ │ ├── IMagickImageCollectionExtensions.cs
│ │ ├── IMagickImageExtentions.cs
│ │ ├── IMagickImageFactoryExtensions.cs
│ │ ├── Magick.NET.SystemDrawing.csproj
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ └── InternalsVisibleTo.cs
│ ├── Magick.NET.SystemWindowsMedia
│ │ ├── IMagickImageExtentions.cs
│ │ └── Magick.NET.SystemWindowsMedia.csproj
│ └── Shared
│ ├── Bytes.cs
│ ├── EnumHelper.cs
│ ├── FileHelper.cs
│ ├── MemberNotNullAttribute.cs
│ ├── NotNullAttribute.cs
│ ├── Throw.cs
│ └── TypeHelper.cs
├── stylecop.json
├── tests
│ ├── Magick.NET.Core.Tests
│ │ ├── Helpers
│ │ │ └── XmlHelperTests
│ │ │ ├── TheCreateElementMethod.cs
│ │ │ └── TheSetAttributeMethod.cs
│ │ ├── Magick.NET.Core.Tests.csproj
│ │ ├── Profiles
│ │ │ ├── 8Bim
│ │ │ │ └── EightBimProfileTests
│ │ │ │ └── TheConstructor.cs
│ │ │ ├── Color
│ │ │ │ └── ColorProfileTests
│ │ │ │ ├── TheColorSpaceProperty.cs
│ │ │ │ ├── TheCopyrightProperty.cs
│ │ │ │ ├── TheDescriptionProperty.cs
│ │ │ │ ├── TheEmbeddedResources.cs
│ │ │ │ ├── TheManufacturerProperty.cs
│ │ │ │ └── TheModelProperty.cs
│ │ │ ├── EndianReaderTests
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ ├── TheReadByteMethod.cs
│ │ │ │ ├── TheReadDoubleMethod.cs
│ │ │ │ ├── TheReadFloatMethod.cs
│ │ │ │ ├── TheReadLongMethod.cs
│ │ │ │ ├── TheReadShortMethod.cs
│ │ │ │ ├── TheReadStringMethod.cs
│ │ │ │ ├── TheSeekMethod.cs
│ │ │ │ └── TheSkipMethod.cs
│ │ │ ├── Exif
│ │ │ │ ├── ExifProfileTests
│ │ │ │ │ ├── Init.cs
│ │ │ │ │ ├── TheSetValueMethod.cs
│ │ │ │ │ └── TheToByteArrayMethod.cs
│ │ │ │ ├── ExifReaderTests
│ │ │ │ │ └── TheReadMethod.cs
│ │ │ │ ├── Tags
│ │ │ │ │ └── ExifTagTests
│ │ │ │ │ ├── TheEqualsMethod.cs
│ │ │ │ │ └── TheOperators.cs
│ │ │ │ └── Values
│ │ │ │ └── ExifValueTests
│ │ │ │ ├── TheEqualsMethod.cs
│ │ │ │ ├── TheOperators.cs
│ │ │ │ ├── TheToStringMethod.cs
│ │ │ │ └── TheValueProperty.cs
│ │ │ ├── ImageProfileTests
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ ├── TheEqualsMethod.cs
│ │ │ │ ├── TheGetDataMethod.cs
│ │ │ │ └── TheToByteArrayMethod.cs
│ │ │ └── Iptc
│ │ │ ├── IptcProfileTests
│ │ │ │ ├── TheRemoveValueMethod.cs
│ │ │ │ └── TheSetValueMethod.cs
│ │ │ └── IptcValueTests
│ │ │ ├── TheConstructor.cs
│ │ │ ├── TheToStringMethod.cs
│ │ │ └── TheValueProperty.cs
│ │ └── Types
│ │ ├── DensityTests
│ │ │ ├── TheChangeUnitsMethod.cs
│ │ │ ├── TheConstructor.cs
│ │ │ ├── TheEqualsMethod.cs
│ │ │ └── TheToStringMethod.cs
│ │ ├── NumberTests
│ │ │ ├── TheCompareToMethod.cs
│ │ │ ├── TheEqualsMethod.cs
│ │ │ └── TheOperators.cs
│ │ ├── PercentageTests
│ │ │ ├── TheCompareToMethod.cs
│ │ │ ├── TheConstructor.cs
│ │ │ ├── TheEqualsMethod.cs
│ │ │ ├── TheOperators.cs
│ │ │ └── TheToInt32Method.cs
│ │ ├── PointDTests
│ │ │ ├── TheConstructor.cs
│ │ │ └── TheEqualsMethod.cs
│ │ ├── RationalTests
│ │ │ ├── TheConstructor.cs
│ │ │ ├── TheEqualsMethod.cs
│ │ │ ├── TheToDoubleMethod.cs
│ │ │ └── TheToStringMethod.cs
│ │ ├── SignedRationalTests
│ │ │ ├── TheConstructor.cs
│ │ │ ├── TheEqualsMethod.cs
│ │ │ ├── TheToDoubleMethod.cs
│ │ │ └── TheToStringMethod.cs
│ │ └── ThresholdTests
│ │ ├── TheConstructor.cs
│ │ ├── TheEqualsMethod.cs
│ │ └── TheToStringMethod.cs
│ ├── Magick.NET.props
│ ├── Magick.NET.ruleset
│ ├── Magick.NET.SystemDrawing.Tests
│ │ ├── IMagickColorExtensionsTests
│ │ │ └── TheToColorMethod.cs
│ │ ├── IMagickImageCollectionExtensionsTests
│ │ │ └── TheToBitmapMethod.cs
│ │ ├── IMagickImageExtensionsTests
│ │ │ ├── TheReadMethod.cs
│ │ │ ├── TheToBitmapMethod.cs
│ │ │ └── TheToBitmapWithDensityMethod.cs
│ │ ├── IMagickImageFactoryExtensionsTests
│ │ │ └── TheCreateMethod.cs
│ │ └── Magick.NET.SystemDrawing.Tests.csproj
│ ├── Magick.NET.SystemWindowsMedia.Tests
│ │ ├── IMagickImageExtentionsTests
│ │ │ ├── TheToBitmapSourceMethod.cs
│ │ │ └── TheToBitmapSourceWithDensityMethod.cs
│ │ └── Magick.NET.SystemWindowsMedia.Tests.csproj
│ ├── Magick.NET.Tests
│ │ ├── Coders
│ │ │ ├── TheAvifCoder.cs
│ │ │ ├── TheBgrCoder.cs
│ │ │ ├── TheBmpCoder.cs
│ │ │ ├── TheCaptionCoder.cs
│ │ │ ├── TheDdsCoder.cs
│ │ │ ├── TheDngCoder.cs
│ │ │ ├── TheEpsCoder.cs
│ │ │ ├── TheGifCoder.cs
│ │ │ ├── TheJp2Coder.cs
│ │ │ ├── TheJpegCoder.cs
│ │ │ ├── TheJpegXlCoder.cs
│ │ │ ├── TheLabelCoder.cs
│ │ │ ├── TheMapCoder.cs
│ │ │ ├── TheMslCoder.cs
│ │ │ ├── TheMvgCoder.cs
│ │ │ ├── ThePangoCoder.cs
│ │ │ ├── ThePcxCoder.cs
│ │ │ ├── ThePdfCoder.cs
│ │ │ ├── ThePngCoder.cs
│ │ │ ├── ThePnmCoder.cs
│ │ │ ├── ThePsdCoder.cs
│ │ │ ├── TheRgbCoder.cs
│ │ │ ├── TheSvgCoder.cs
│ │ │ ├── TheTiffCoder.cs
│ │ │ ├── TheVideoCoder.cs
│ │ │ ├── TheWebPCoder.cs
│ │ │ └── TheXcCoder.cs
│ │ ├── Colors
│ │ │ ├── ColorCMYKTests
│ │ │ │ ├── TheCompareToMethod.cs
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ ├── TheEqualsMethod.cs
│ │ │ │ ├── TheFromMagickColorMethod.cs
│ │ │ │ ├── TheGetHashCodeMethod.cs
│ │ │ │ ├── TheNativeInstance.cs
│ │ │ │ ├── TheOperators.cs
│ │ │ │ └── TheProperties.cs
│ │ │ ├── ColorGrayTests
│ │ │ │ ├── TheCompareToMethod.cs
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ ├── TheEqualsMethod.cs
│ │ │ │ ├── TheFromMagickColorMethod.cs
│ │ │ │ ├── TheGetHashCodeMethod.cs
│ │ │ │ ├── TheOperators.cs
│ │ │ │ └── TheProperties.cs
│ │ │ ├── ColorHSLTests
│ │ │ │ ├── TheCompareToMethod.cs
│ │ │ │ ├── TheEqualsMethod.cs
│ │ │ │ ├── TheFromMagickColorMethod.cs
│ │ │ │ ├── TheGetHashCodeMethod.cs
│ │ │ │ ├── TheOperators.cs
│ │ │ │ └── TheProperties.cs
│ │ │ ├── ColorHSVTests
│ │ │ │ ├── TheCompareToMethod.cs
│ │ │ │ ├── TheEqualsMethod.cs
│ │ │ │ ├── TheFromMagickColorMethod.cs
│ │ │ │ ├── TheGetHashCodeMethod.cs
│ │ │ │ ├── TheOperators.cs
│ │ │ │ └── TheProperties.cs
│ │ │ ├── ColorMonoTests
│ │ │ │ ├── TheCompareToMethod.cs
│ │ │ │ ├── TheEqualsMethod.cs
│ │ │ │ ├── TheFromMagickColorMethod.cs
│ │ │ │ ├── TheGetHashCodeMethod.cs
│ │ │ │ ├── TheOperators.cs
│ │ │ │ └── TheProperties.cs
│ │ │ ├── ColorRGBTests
│ │ │ │ ├── TheCompareToMethod.cs
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ ├── TheEqualsMethod.cs
│ │ │ │ ├── TheFromMagickColorMethod.cs
│ │ │ │ ├── TheFuzzyEqualsMethod.cs
│ │ │ │ ├── TheGetHashCodeMethod.cs
│ │ │ │ ├── TheOperators.cs
│ │ │ │ └── TheProperties.cs
│ │ │ ├── ColorYUVTests
│ │ │ │ ├── TheCompareToMethod.cs
│ │ │ │ ├── TheEqualsMethod.cs
│ │ │ │ ├── TheFromMagickColorMethod.cs
│ │ │ │ ├── TheGetHashCodeMethod.cs
│ │ │ │ ├── TheOperators.cs
│ │ │ │ └── TheProperties.cs
│ │ │ ├── MagickColorsTests
│ │ │ │ └── TheProperties.cs
│ │ │ └── MagickColorTests
│ │ │ ├── TheCompareToMethod.cs
│ │ │ ├── TheConstructor.cs
│ │ │ ├── TheFuzzyEqualsMethod.cs
│ │ │ ├── TheOperators.cs
│ │ │ ├── TheToHexStringMethod.cs
│ │ │ ├── TheToShortStringMethod.cs
│ │ │ └── TheToStringMethod.cs
│ │ ├── Configuration
│ │ │ └── ConfigurationFilesTests
│ │ │ ├── TheColorsProperty.cs
│ │ │ ├── TheConfigureProperty.cs
│ │ │ ├── TheDelegatesProperty.cs
│ │ │ ├── TheEnglishProperty.cs
│ │ │ ├── TheLocaleProperty.cs
│ │ │ ├── TheLogProperty.cs
│ │ │ ├── ThePolicyProperty.cs
│ │ │ ├── TheThresholdsProperty.cs
│ │ │ ├── TheTypeGhostscriptProperty.cs
│ │ │ └── TheTypeProperty.cs
│ │ ├── Defines
│ │ │ └── MagickDefineTests
│ │ │ ├── TheConstructor.cs
│ │ │ └── TheCreateMethod.cs
│ │ ├── Drawables
│ │ │ ├── DrawableAffineTests
│ │ │ │ ├── TheProperties.cs
│ │ │ │ ├── TheResetMethod.cs
│ │ │ │ ├── TheTransformOriginMethod.cs
│ │ │ │ ├── TheTransformRotationMethod.cs
│ │ │ │ ├── TheTransformScaleMethod.cs
│ │ │ │ ├── TheTransformSkewXMethod.cs
│ │ │ │ └── TheTransformSkewYMethod.cs
│ │ │ ├── DrawableClipPathTests
│ │ │ │ └── TheDrawMethod.cs
│ │ │ ├── DrawableDensityTests
│ │ │ │ └── TheConstructor.cs
│ │ │ ├── DrawablePathTests
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ └── TheDrawMethod.cs
│ │ │ ├── DrawablesTests
│ │ │ │ ├── TheCompositeMethod.cs
│ │ │ │ ├── TheDrawMethod.cs
│ │ │ │ ├── TheFontTypeMetricsMethod.cs
│ │ │ │ ├── TheGetEnumeratorMethod.cs
│ │ │ │ └── TheStrokeDashArrayMethod.cs
│ │ │ ├── DrawableStrokeAntialiasTests
│ │ │ │ ├── TheDisabledProperty.cs
│ │ │ │ ├── TheDrawMethod.cs
│ │ │ │ └── TheEnabledProperty.cs
│ │ │ ├── DrawableTests.cs
│ │ │ ├── DrawableTextAntialiasTests
│ │ │ │ ├── TheDisabledProperty.cs
│ │ │ │ ├── TheDrawMethod.cs
│ │ │ │ └── TheEnabledProperty.cs
│ │ │ ├── DrawableTextEncodingTests
│ │ │ │ └── TheEncodingProperty.cs
│ │ │ └── Paths
│ │ │ ├── PathsTests.cs
│ │ │ ├── PathTests.cs
│ │ │ └── TheGetEnumeratorMethod.cs
│ │ ├── Exceptions
│ │ │ ├── ExceptionHelperTests.cs
│ │ │ ├── ExceptionInfo.cs
│ │ │ └── MagickExceptionTests
│ │ │ └── TheRelatedExceptionsProperty.cs
│ │ ├── Extensions
│ │ │ ├── DensityExtensionsTests
│ │ │ │ └── TheToGeometryMethod.cs
│ │ │ └── IExifProfileExtensionsTests
│ │ │ └── TheCreateThumbnailMethod.cs
│ │ ├── Factories
│ │ │ ├── DrawablesFactoryTests
│ │ │ │ └── TheCreateMethod.cs
│ │ │ ├── MagickColorFactoryTests
│ │ │ │ └── TheConstructor.cs
│ │ │ ├── MagickFactoryTests
│ │ │ │ ├── TheColorProperty.cs
│ │ │ │ ├── TheColorsProperty.cs
│ │ │ │ ├── TheConfigurationfilesProperty.cs
│ │ │ │ ├── TheDrawablesProperty.cs
│ │ │ │ ├── TheGeometryProperty.cs
│ │ │ │ ├── TheImageCollectionProperty.cs
│ │ │ │ ├── TheImageInfoProperty.cs
│ │ │ │ ├── TheImageProperty.cs
│ │ │ │ ├── TheMagickNETProperty.cs
│ │ │ │ ├── TheMatrixProperty.cs
│ │ │ │ ├── TheOpenCLProperty.cs
│ │ │ │ ├── TheQuantumProperty.cs
│ │ │ │ ├── TheResourceLimitsProperty.cs
│ │ │ │ └── TheSettingsProperty.cs
│ │ │ ├── MagickGeometryFactoryTests
│ │ │ │ ├── TheCreateFromPageSizeMethod.cs
│ │ │ │ └── TheCreateMethod.cs
│ │ │ ├── MagickImageCollectionFactoryTests
│ │ │ │ ├── TheCreateAsyncMethod.cs
│ │ │ │ └── TheCreateMethod.cs
│ │ │ ├── MagickImageFactoryTests
│ │ │ │ ├── TheCreateAsyncMethod.cs
│ │ │ │ └── TheCreateMethod.cs
│ │ │ ├── MagickImageInfoFactoryTests
│ │ │ │ └── TheCreateMethod.cs
│ │ │ ├── MatrixFactoryTests
│ │ │ │ ├── TheCreateColorMatrixMethod.cs
│ │ │ │ └── TheCreateConvolveMatrixMethod.cs
│ │ │ └── SettingsFactoryTests
│ │ │ ├── TheCreateCompareSettingsMethod.cs
│ │ │ ├── TheCreateComplexSettingsMethod.cs
│ │ │ ├── TheCreateConnectedComponentsSettingsMethod.cs
│ │ │ ├── TheCreateDeskewSettingsMethod.cs
│ │ │ ├── TheCreateDistortSettingsMethod.cs
│ │ │ ├── TheCreateKmeansSettingsMethod.cs
│ │ │ ├── TheCreateMagickReadSettingsMethod.cs
│ │ │ ├── TheCreateMontageSettingsMethod.cs
│ │ │ ├── TheCreateMorphologySettingsMethod.cs
│ │ │ ├── TheCreatePixelReadSettingsMethod.cs
│ │ │ └── TheCreateQuantizeSettingsMethod.cs
│ │ ├── Fonts
│ │ │ ├── arial.ttf
│ │ │ ├── cour.ttf
│ │ │ ├── Gloock-Regular.ttf
│ │ │ ├── KaushanScript-Regular.ttf
│ │ │ └── PhillySans.otf
│ │ ├── Formats
│ │ │ ├── Bmp
│ │ │ │ ├── BmpReadDefinesTests
│ │ │ │ │ ├── TheConstructor.cs
│ │ │ │ │ └── TheIgnoreFileSizeProperty.cs
│ │ │ │ └── BmpWriteDefinesTests
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ └── TheSubtypeProperty.cs
│ │ │ ├── Caption
│ │ │ │ └── CaptionReadDefinesTests
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ ├── TheMaxFontPointsizeProperty.cs
│ │ │ │ └── TheStartPointsizeProperty.cs
│ │ │ ├── Dds
│ │ │ │ ├── DdsReadDefinesTests
│ │ │ │ │ ├── TheConstructor.cs
│ │ │ │ │ └── TheSkipMipmapsProperty.cs
│ │ │ │ └── DdsWriteDefinesTests
│ │ │ │ ├── TheClusterFitProperty.cs
│ │ │ │ ├── TheCompressionProperty.cs
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ ├── TheFastMipmapsProperty.cs
│ │ │ │ ├── TheMipmapsFromCollectionProperty.cs
│ │ │ │ ├── TheMipmapsProperty.cs
│ │ │ │ ├── TheRawProperty.cs
│ │ │ │ └── TheWeightByAlphaProperty.cs
│ │ │ ├── Dng
│ │ │ │ └── DngReadDefinesTests
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ ├── TheDisableAutoBrightnessProperty.cs
│ │ │ │ ├── TheInterpolationQualityProperty.cs
│ │ │ │ ├── TheOutputColorProperty.cs
│ │ │ │ ├── TheReadThumbnailProperty.cs
│ │ │ │ ├── TheUseAutoWhitebalanceProperty.cs
│ │ │ │ └── TheUseCameraWhitebalanceProperty.cs
│ │ │ ├── Heic
│ │ │ │ └── HeicReadDefinesTests
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ ├── TheDepthImageProperty.cs
│ │ │ │ └── ThePreserveOrientationProperty.cs
│ │ │ ├── Jp2
│ │ │ │ ├── Jp2ReadDefinesTests
│ │ │ │ │ ├── TheAssumeAlphaProperty.cs
│ │ │ │ │ ├── TheConstructor.cs
│ │ │ │ │ ├── TheQualityLayersProperty.cs
│ │ │ │ │ └── TheReduceFactorProperty.cs
│ │ │ │ └── Jp2WriteDefinesTests
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ ├── TheNumberResolutionsProperty.cs
│ │ │ │ ├── TheProgressionOrderProperty.cs
│ │ │ │ ├── TheQualityProperty.cs
│ │ │ │ └── TheRateProperty.cs
│ │ │ ├── Jpeg
│ │ │ │ ├── JpegReadDefinesTests
│ │ │ │ │ ├── TheBlockSmoothingProperty.cs
│ │ │ │ │ ├── TheColorsProperty.cs
│ │ │ │ │ ├── TheConstructor.cs
│ │ │ │ │ ├── TheDctMethodProperty.cs
│ │ │ │ │ ├── TheFancyUpsamplingProperty.cs
│ │ │ │ │ ├── TheSizeProperty.cs
│ │ │ │ │ └── TheSkipProfilesProperty.cs
│ │ │ │ └── JpegWriteDefinesTests
│ │ │ │ ├── TheArithmeticCodingProperty.cs
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ ├── TheDctMethodProperty.cs
│ │ │ │ ├── TheExtentProperty.cs
│ │ │ │ ├── TheOptimizeCodingProperty.cs
│ │ │ │ ├── TheQuantizationTablesProperty.cs
│ │ │ │ └── TheSamplingFactorProperty.cs
│ │ │ ├── Jxl
│ │ │ │ └── JxlWriteDefinesTests
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ └── TheEffortProperty.cs
│ │ │ │ ├── PdfInfoTests
│ │ │ │ │ ├── TheCreateMethod.cs
│ │ │ │ │ └── ThePageCountProperty.cs
│ │ │ │ ├── PdfReadDefinesTests
│ │ │ │ │ ├── TheConstructor.cs
│ │ │ │ │ ├── TheFitPageProperty.cs
│ │ │ │ │ ├── TheHideAnnotationsProperty.cs
│ │ │ │ │ ├── TheInterpolateProperty.cs
│ │ │ │ │ ├── ThePasswordProperty.cs
│ │ │ │ │ ├── TheUseCropBoxProperty.cs
│ │ │ │ │ └── TheUseTrimBoxProperty.cs
│ │ │ │ └── PdfWriteDefinesTests
│ │ │ │ ├── TheAuthorProperty.cs
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ ├── TheCreationTimeProperty.cs
│ │ │ │ ├── TheCreatorProperty.cs
│ │ │ │ ├── TheKeywordsProperty.cs
│ │ │ │ ├── TheModificationTimeProperty.cs
│ │ │ │ ├── TheProducerProperty.cs
│ │ │ │ ├── TheSubjectProperty.cs
│ │ │ │ └── TheTitleProperty.cs
│ │ │ ├── Png
│ │ │ │ └── PngReadDefinesTests
│ │ │ │ ├── TheChunkCacheMaxProperty.cs
│ │ │ │ ├── TheChunkMallocMaxProperty.cs
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ ├── TheIgnoreCrcProperty.cs
│ │ │ │ ├── ThePreserveiCCPProperty.cs
│ │ │ │ ├── TheSkipProfilesProperty.cs
│ │ │ │ └── TheSwapBytesProperty.cs
│ │ │ ├── Psd
│ │ │ │ ├── PsdAdditionalInfoTests
│ │ │ │ │ ├── TheFromImageMethod.cs
│ │ │ │ │ └── TheLayerNameProperty.cs
│ │ │ │ ├── PsdReadDefinesTests
│ │ │ │ │ ├── TheAlphaUnblendProperty.cs
│ │ │ │ │ ├── TheConstructor.cs
│ │ │ │ │ ├── ThePreserveOpacityMaskProperty.cs
│ │ │ │ │ └── TheReplicateProfileProperty.cs
│ │ │ │ └── PsdWriteDefinesTests
│ │ │ │ ├── TheAdditionalInfoProperty.cs
│ │ │ │ └── TheConstructor.cs
│ │ │ ├── Tiff
│ │ │ │ ├── TiffReadDefinesTests
│ │ │ │ │ ├── TheConstructor.cs
│ │ │ │ │ ├── TheIgnoreExifPopertiesProperty.cs
│ │ │ │ │ ├── TheIgnoreLayersMethod.cs
│ │ │ │ │ └── TheIgnoreTagsProperty.cs
│ │ │ │ └── TiffWriteDefinesTests
│ │ │ │ ├── Init.cs
│ │ │ │ ├── TheAlphaProperty.cs
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ ├── TheEndianProperty.cs
│ │ │ │ ├── TheFillOrderProperty.cs
│ │ │ │ ├── TheJpegTablesModeProperty.cs
│ │ │ │ ├── ThePredictorProperty.cs
│ │ │ │ ├── ThePreserveCompressionProperty.cs
│ │ │ │ ├── TheRowsPerStripProperty.cs
│ │ │ │ ├── TheTileGeometryProperty.cs
│ │ │ │ └── TheWriteLayersProperty.cs
│ │ │ ├── Video
│ │ │ │ ├── VideoReadDefinesTests
│ │ │ │ │ ├── TheConstructor.cs
│ │ │ │ │ ├── ThePixelFormatProperty.cs
│ │ │ │ │ ├── TheReadModeProperty.cs
│ │ │ │ │ └── TheVideoSyncProperty.cs
│ │ │ │ └── VideoWriteDefinesTests
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ └── ThePixelFormatProperty.cs
│ │ │ └── WebP
│ │ │ └── WebPWriteDefinesTests
│ │ │ ├── TheAlphaCompressionProperty.cs
│ │ │ ├── TheAlphaFilteringProperty.cs
│ │ │ ├── TheAlphaQualityProperty.cs
│ │ │ ├── TheAutoFilterProperty.cs
│ │ │ ├── TheConstructor.cs
│ │ │ ├── TheEmulateJpegSizeProperty.cs
│ │ │ ├── TheExactProperty.cs
│ │ │ ├── TheFilterSharpnessProperty.cs
│ │ │ ├── TheFilterStrengthProperty.cs
│ │ │ ├── TheFilterTypeProperty.cs
│ │ │ ├── TheImageHintProperty.cs
│ │ │ ├── TheLosslessProperty.cs
│ │ │ ├── TheLowMemoryProperty.cs
│ │ │ ├── TheMethodProperty.cs
│ │ │ ├── TheNearLosslessProperty.cs
│ │ │ ├── ThePartitionLimitProperty.cs
│ │ │ ├── ThePartitionsProperty.cs
│ │ │ ├── ThePassProperty.cs
│ │ │ ├── ThePreprocessingProperty.cs
│ │ │ ├── TheSegmentProperty.cs
│ │ │ ├── TheShowCompressedProperty.cs
│ │ │ ├── TheSnsStrengthProperty.cs
│ │ │ ├── TheTargetPsnrProperty.cs
│ │ │ ├── TheTargetSizeProperty.cs
│ │ │ ├── TheThreadLevelProperty.cs
│ │ │ └── TheUseSharpYuvProperty.cs
│ │ ├── Ghostscript.cs
│ │ ├── Helpers
│ │ │ ├── ByteArrayWrapperTests
│ │ │ │ ├── TheGetBytesMethod.cs
│ │ │ │ ├── TheReadMethod.cs
│ │ │ │ ├── TheSeekMethod.cs
│ │ │ │ ├── TheTellMethod.cs
│ │ │ │ └── TheWriteMethod.cs
│ │ │ ├── ByteConverterTests
│ │ │ │ └── TheToArrayMethod.cs
│ │ │ ├── EnumHelperTests
│ │ │ │ ├── TheConvertFlagsMethod.cs
│ │ │ │ ├── TheHasFlagMethod.cs
│ │ │ │ └── TheParseMethod.cs
│ │ │ ├── QuantumConverterTests
│ │ │ │ └── TheToArrayMethod.cs
│ │ │ ├── ShortConverterTests
│ │ │ │ └── TheToArrayMethod.cs
│ │ │ ├── StreamWrapperTests
│ │ │ │ ├── TheCreateForReadingMethod.cs
│ │ │ │ ├── TheCreateForWritingMethod.cs
│ │ │ │ ├── TheDisposeMethod.cs
│ │ │ │ ├── TheReadMethod.cs
│ │ │ │ ├── TheSeekMethod.cs
│ │ │ │ ├── TheTellMethod.cs
│ │ │ │ └── TheWriteMethod.cs
│ │ │ └── TemporaryDefinesTests
│ │ │ ├── TheDisposeMethod.cs
│ │ │ └── TheSetArtifactMethod.cs
│ │ ├── Images
│ │ │ ├── 8Bim.jpg
│ │ │ ├── 8Bim.tif
│ │ │ ├── Circle.png
│ │ │ ├── CMYK.jpg
│ │ │ ├── Coders
│ │ │ │ ├── Animated_PNG_example_bouncing_beach_ball.png
│ │ │ │ ├── CN Studios Logo.ai
│ │ │ │ ├── empty-exif.avif
│ │ │ │ ├── grim.jp2
│ │ │ │ ├── IgnoreTag.tif
│ │ │ │ ├── InvalidCrc.bmp
│ │ │ │ ├── layer-styles-sample.psd
│ │ │ │ ├── Page.tif
│ │ │ │ ├── pdf-example-password.original.pdf
│ │ │ │ ├── Pixel.tif
│ │ │ │ ├── Player.psd
│ │ │ │ ├── RAW_KODAK_DC50.KDC
│ │ │ │ ├── RowsPerStrip.tif
│ │ │ │ ├── sample.pdf
│ │ │ │ ├── SwedenHeart.eps
│ │ │ │ ├── Test.dds
│ │ │ │ ├── Test.jp2
│ │ │ │ ├── Test.mng
│ │ │ │ ├── Test.mp4
│ │ │ │ └── wizard.psd
│ │ │ ├── ConnectedComponents.png
│ │ │ ├── Corrupt.png
│ │ │ ├── ExifUndefType.jpg
│ │ │ ├── FujiFilmFinePixS1Pro.gif
│ │ │ ├── FujiFilmFinePixS1Pro.jpg
│ │ │ ├── FujiFilmFinePixS1Pro.png
│ │ │ ├── ImageMagick.ico
│ │ │ ├── ImageMagick.jpg
│ │ │ ├── ImageMagick.txt
│ │ │ ├── Invitation.tif
│ │ │ ├── Letter.jpg
│ │ │ ├── Magick.NET.icon.png
│ │ │ ├── Noise.png
│ │ │ ├── Picture.jpg
│ │ │ ├── Red.png
│ │ │ ├── R攕eSparkle.gif
│ │ │ ├── Snakeware.png
│ │ │ ├── Test.png
│ │ │ ├── viceland.png
│ │ │ ├── wand.ico
│ │ │ ├── white.jpg
│ │ │ └── wireframe.tif
│ │ ├── MagickFormatInfoTests
│ │ │ ├── TheCreateMethod.cs
│ │ │ ├── TheEqualsMethod.cs
│ │ │ └── TheUnregisterMethod.cs
│ │ ├── MagickImageCollectionTests
│ │ │ ├── TheAddMethod.cs
│ │ │ ├── TheAddRangeMethod.cs
│ │ │ ├── TheAppendHorizontallyMethod.cs
│ │ │ ├── TheAppendVerticallyMethod.cs
│ │ │ ├── TheCloneMethod.cs
│ │ │ ├── TheCoalesceMethod.cs
│ │ │ ├── TheCombineMethod.cs
│ │ │ ├── TheComplexMethod.cs
│ │ │ ├── TheConstructor.cs
│ │ │ ├── TheCopyToMethod.cs
│ │ │ ├── TheDeconstructMethod.cs
│ │ │ ├── TheDisposeMethod.cs
│ │ │ ├── TheEvaluateMethod.cs
│ │ │ ├── TheFlattenMethod.cs
│ │ │ ├── TheIndexer.cs
│ │ │ ├── TheIndexProperty.cs
│ │ │ ├── TheInsertMethod.cs
│ │ │ ├── TheMapMethod.cs
│ │ │ ├── TheMergeMethod.cs
│ │ │ ├── TheMontageMethod.cs
│ │ │ ├── TheMorphMethod.cs
│ │ │ ├── TheMosaicMethod.cs
│ │ │ ├── TheOptimizeMethod.cs
│ │ │ ├── TheOptimizePlusMethod.cs
│ │ │ ├── TheOptimizeTransparencyMethod.cs
│ │ │ ├── ThePingMethod.cs
│ │ │ ├── ThePolynomialMethod.cs
│ │ │ ├── TheQuantizeMethod.cs
│ │ │ ├── TheReadAsyncMethod.cs
│ │ │ ├── TheReadMethod.cs
│ │ │ ├── TheRemoveAtMethod.cs
│ │ │ ├── TheRemoveMethod.cs
│ │ │ ├── TheRePageMethod.cs
│ │ │ ├── TheReverseMethod.cs
│ │ │ ├── TheSmushHorizontalMethod.cs
│ │ │ ├── TheSmushVerticalMethod.cs
│ │ │ ├── TheToBase64Method.cs
│ │ │ ├── TheToByteArrayMethod.cs
│ │ │ ├── TheTrimBoundsMethod.cs
│ │ │ ├── TheWarningEvent.cs
│ │ │ ├── TheWriteAsyncMethod.cs
│ │ │ └── TheWriteMethod.cs
│ │ ├── MagickImageInfoTests
│ │ │ ├── TheConstructor.cs
│ │ │ ├── TheReadCollectionMethod.cs
│ │ │ └── TheReadMethod.cs
│ │ ├── MagickImageTests
│ │ │ ├── TheAdaptiveBlurMethod.cs
│ │ │ ├── TheAdaptiveResizeMethod.cs
│ │ │ ├── TheAdaptiveSharpenMethod.cs
│ │ │ ├── TheAdaptiveThresholdMethod.cs
│ │ │ ├── TheAddNoiseMethod.cs
│ │ │ ├── TheAffineTransformMethod.cs
│ │ │ ├── TheAlphaMethod.cs
│ │ │ ├── TheAnimationDelayProperty.cs
│ │ │ ├── TheAnimationIterationsProperty.cs
│ │ │ ├── TheAnnotateMethod.cs
│ │ │ ├── TheArtifactNamesMethod.cs
│ │ │ ├── TheAttributeNamesMethod.cs
│ │ │ ├── TheAutoGammaMethod.cs
│ │ │ ├── TheAutoOrientMethod.cs
│ │ │ ├── TheAutoThresholdMethod.cs
│ │ │ ├── TheBackgroundColorProperty.cs
│ │ │ ├── TheBilateralBlurMethod.cs
│ │ │ ├── TheBlackPointCompensationProperty.cs
│ │ │ ├── TheBlackThresholdMethod.cs
│ │ │ ├── TheBlueShiftMethod.cs
│ │ │ ├── TheBorderMethod.cs
│ │ │ ├── TheBoundingBoxProperty.cs
│ │ │ ├── TheBrightnessContrastMethod.cs
│ │ │ ├── TheCannyEdgeMethod.cs
│ │ │ ├── TheChannelsProperty.cs
│ │ │ ├── TheCharcoalMethod.cs
│ │ │ ├── TheChopMethod.cs
│ │ │ ├── TheChromaProperty.cs
│ │ │ ├── TheClaheMethod.cs
│ │ │ ├── TheClampMethod.cs
│ │ │ ├── TheClassTypeProperty.cs
│ │ │ ├── TheClipMethod.cs
│ │ │ ├── TheClipOutsideMethod.cs
│ │ │ ├── TheCloneMethod.cs
│ │ │ ├── TheClutMethod.cs
│ │ │ ├── TheColorAlphaMethod.cs
│ │ │ ├── TheColorizeMethod.cs
│ │ │ ├── TheColormapSizeProperty.cs
│ │ │ ├── TheColorMatrixMethod.cs
│ │ │ ├── TheColorThresholdMethod.cs
│ │ │ ├── TheColorTypeProperty.cs
│ │ │ ├── TheCommentProperty.cs
│ │ │ ├── TheCompareMethod.cs
│ │ │ ├── TheCompareToMethod.cs
│ │ │ ├── TheCompositeMethod.cs
│ │ │ ├── TheConnectedComponentsMethod.cs
│ │ │ ├── TheConstructor.cs
│ │ │ ├── TheContrastMethod.cs
│ │ │ ├── TheContrastStretchMethod.cs
│ │ │ ├── TheConvexHullMethod.cs
│ │ │ ├── TheConvolveMethod.cs
│ │ │ ├── TheCopyPixelsMethod.cs
│ │ │ ├── TheCropMethod.cs
│ │ │ ├── TheCropToTilesMethod.cs
│ │ │ ├── TheCycleColormapMethod.cs
│ │ │ ├── TheDecipherMethod.cs
│ │ │ ├── TheDensityProperty.cs
│ │ │ ├── TheDepthProperty.cs
│ │ │ ├── TheDeskewMethod.cs
│ │ │ ├── TheDespeckleMethod.cs
│ │ │ ├── TheDetermineBitDepthMethod.cs
│ │ │ ├── TheDetermineColorTypeMethod.cs
│ │ │ ├── TheDisposeMethod.cs
│ │ │ ├── TheDistortMethod.cs
│ │ │ ├── TheEdgeMethod.cs
│ │ │ ├── TheEmbossMethod.cs
│ │ │ ├── TheEncipherMethod.cs
│ │ │ ├── TheEnhanceMethod.cs
│ │ │ ├── TheEqualizeMethod.cs
│ │ │ ├── TheEvaluateMethod.cs
│ │ │ ├── TheExtentMethod.cs
│ │ │ ├── TheFlipMethod.cs
│ │ │ ├── TheFloodFillMethod.cs
│ │ │ ├── TheFlopMethod.cs
│ │ │ ├── TheFontTypeMetricsMethod.cs
│ │ │ ├── TheFormatExpressionMethod.cs
│ │ │ ├── TheFrameMethod.cs
│ │ │ ├── TheFxMethod.cs
│ │ │ ├── TheGammaCorrectMethod.cs
│ │ │ ├── TheGaussianBlurMethod.cs
│ │ │ ├── TheGetArtifactMethod.cs
│ │ │ ├── TheGetAttributeMethod.cs
│ │ │ ├── TheGetClippingPathMethod.cs
│ │ │ ├── TheGetColormapColorMethod.cs
│ │ │ ├── TheGetIptcProfileMethod.cs
│ │ │ ├── TheGrayscaleMethod.cs
│ │ │ ├── TheHaldClutMethod.cs
│ │ │ ├── TheHasProfileMethod.cs
│ │ │ ├── TheHistogramMethod.cs
│ │ │ ├── TheHoughLineMethod.cs
│ │ │ ├── TheImplodeMethod.cs
│ │ │ ├── TheImportPixelsMethod.cs
│ │ │ ├── TheIntegralMethod.cs
│ │ │ ├── TheInterlaceProperty.cs
│ │ │ ├── TheInterpolativeResizeMethod.cs
│ │ │ ├── TheInverseContrastMethod.cs
│ │ │ ├── TheInverseLevelColorsMethod.cs
│ │ │ ├── TheInverseLevelMethod.cs
│ │ │ ├── TheInverseOpaqueMethod.cs
│ │ │ ├── TheInverseSigmoidalContrastMethod.cs
│ │ │ ├── TheInverseTransparentChromaMethod.cs
│ │ │ ├── TheInverseTransparentMethod.cs
│ │ │ ├── TheIsOpaqueProperty.cs
│ │ │ ├── TheKmeansMethod.cs
│ │ │ ├── TheKuwaharaMethod.cs
│ │ │ ├── TheLabelAttribute.cs
│ │ │ ├── TheLevelColorsMethod.cs
│ │ │ ├── TheLevelMethod.cs
│ │ │ ├── TheLinearStretchMethod.cs
│ │ │ ├── TheLiquidRescaleMethod.cs
│ │ │ ├── TheLocalContrastMethod.cs
│ │ │ ├── TheLowerMethod.cs
│ │ │ ├── TheMagnifyMethod.cs
│ │ │ ├── TheMapMethod.cs
│ │ │ ├── TheMatteColorProperty.cs
│ │ │ ├── TheMeanShiftMethod.cs
│ │ │ ├── TheMinifyMethod.cs
│ │ │ ├── TheMinimumBoundingBoxMethod.cs
│ │ │ ├── TheModulateMethod.cs
│ │ │ ├── TheMomentsMethod.cs
│ │ │ ├── TheMorphologyMethod.cs
│ │ │ ├── TheMotionBlurMethod.cs
│ │ │ ├── TheNegateGrayscaleMethod.cs
│ │ │ ├── TheNegateMethod.cs
│ │ │ ├── TheNormalizeMethod.cs
│ │ │ ├── TheOilPaintMethod.cs
│ │ │ ├── TheOpaqueMethod.cs
│ │ │ ├── TheOperators.cs
│ │ │ ├── TheOrderedDitherMethod.cs
│ │ │ ├── TheOrientationProperty.cs
│ │ │ ├── ThePerceptibleMethod.cs
│ │ │ ├── ThePerceptualHashMethod.cs
│ │ │ ├── ThePingMethod.cs
│ │ │ ├── ThePolaroidMethod.cs
│ │ │ ├── ThePosterizeMethod.cs
│ │ │ ├── ThePreserveColorTypeMethod.cs
│ │ │ ├── TheProfileNamesProperty.cs
│ │ │ ├── TheProgressEvent.cs
│ │ │ ├── TheQualityProperty.cs
│ │ │ ├── TheQuantizeMethod.cs
│ │ │ ├── TheRaiseMethod.cs
│ │ │ ├── TheRandomThresholdMethod.cs
│ │ │ ├── TheRangeThresholdMethod.cs
│ │ │ ├── TheReadAsyncMethod.cs
│ │ │ ├── TheReadMethod.cs
│ │ │ ├── TheReadPixelsAsyncMethod.cs
│ │ │ ├── TheReadPixelsMethod.cs
│ │ │ ├── TheRegionMaskMethod.cs
│ │ │ ├── TheRemoveProfileMethod.cs
│ │ │ ├── TheRemoveReadMaskMethod.cs
│ │ │ ├── TheRemoveWriteMaskMethod.cs
│ │ │ ├── TheResampleMethod.cs
│ │ │ ├── TheResizeMethod.cs
│ │ │ ├── TheRollMethod.cs
│ │ │ ├── TheRotateMethod.cs
│ │ │ ├── TheRotationalBlurMethod.cs
│ │ │ ├── TheSampleMethod.cs
│ │ │ ├── TheScaleMethod.cs
│ │ │ ├── TheSegmentMethod.cs
│ │ │ ├── TheSelectiveBlurMethod.cs
│ │ │ ├── TheSeparateMethod.cs
│ │ │ ├── TheSepiaToneMethod.cs
│ │ │ ├── TheSetArtifactMethod.cs
│ │ │ ├── TheSetAttenuateMethod.cs
│ │ │ ├── TheSetAttributeMethod.cs
│ │ │ ├── TheSetBitDepthMethod.cs
│ │ │ ├── TheSetClippingPathMethod.cs
│ │ │ ├── TheSetColormapColorMethod.cs
│ │ │ ├── TheSetCompressionMethod.cs
│ │ │ ├── TheSetProfileMethod.cs
│ │ │ ├── TheSetReadMaskMethod.cs
│ │ │ ├── TheSetWriteMaskMethod.cs
│ │ │ ├── TheShadeGrayscaleMethod.cs
│ │ │ ├── TheShadeMethod.cs
│ │ │ ├── TheShadowMethod.cs
│ │ │ ├── TheSharpenMethod.cs
│ │ │ ├── TheShaveMethod.cs
│ │ │ ├── TheShearMethod.cs
│ │ │ ├── TheSigmoidalContrastMethod.cs
│ │ │ ├── TheSignatureProperty.cs
│ │ │ ├── TheSketchMethod.cs
│ │ │ ├── TheSolarizeMethod.cs
│ │ │ ├── TheSortPixelsMethod.cs
│ │ │ ├── TheSparseColorMethod.cs
│ │ │ ├── TheSpliceMethod.cs
│ │ │ ├── TheSpreadMethod.cs
│ │ │ ├── TheStatisticMethod.cs
│ │ │ ├── TheStatisticsMethod.cs
│ │ │ ├── TheSteganoMethod.cs
│ │ │ ├── TheStereoMethod.cs
│ │ │ ├── TheStripMethod.cs
│ │ │ ├── TheSubImageSearchMethod.cs
│ │ │ ├── TheSwirlMethod.cs
│ │ │ ├── TheTextureMethod.cs
│ │ │ ├── TheThresholdMethod.cs
│ │ │ ├── TheThumbnailMethod.cs
│ │ │ ├── TheTileMethod.cs
│ │ │ ├── TheTintMethod.cs
│ │ │ ├── TheToBase64Method.cs
│ │ │ ├── TheToByteArrayMethod.cs
│ │ │ ├── TheToStringMethod.cs
│ │ │ ├── TheTotalColorsProperty.cs
│ │ │ ├── TheTransformColorSpaceMethod.cs
│ │ │ ├── TheTransparentChromaMethod.cs
│ │ │ ├── TheTransparentMethod.cs
│ │ │ ├── TheTransposeMethod.cs
│ │ │ ├── TheTransverseMethod.cs
│ │ │ ├── TheTrimMethod.cs
│ │ │ ├── TheUniqueColorsMethod.cs
│ │ │ ├── TheUnsharpMaskMethod.cs
│ │ │ ├── TheVignetteMethod.cs
│ │ │ ├── TheVirtualPixelMethodProperty.cs
│ │ │ ├── TheWarningEvent.cs
│ │ │ ├── TheWaveletDenoiseMethod.cs
│ │ │ ├── TheWaveMethod.cs
│ │ │ ├── TheWhiteBalanceMethod.cs
│ │ │ ├── TheWhiteThresholdMethod.cs
│ │ │ ├── TheWriteAsyncMethod.cs
│ │ │ └── TheWriteMethod.cs
│ │ ├── MagickNETTests
│ │ │ ├── Init.cs
│ │ │ ├── TheDelegatesProperty.cs
│ │ │ ├── TheFeaturesProperty.cs
│ │ │ ├── TheFontFamiliesProperty.cs
│ │ │ ├── TheFontNamesProperty.cs
│ │ │ ├── TheGetEnvironmentVariableMethod.cs
│ │ │ ├── TheImageMagickVersionProperty.cs
│ │ │ ├── TheInitializeMethod.cs
│ │ │ ├── TheLogEvent.cs
│ │ │ ├── ThePolicy.cs
│ │ │ ├── TheSetDefaultFontFileMethod.cs
│ │ │ ├── TheSetEnvironmentVariableMethod.cs
│ │ │ ├── TheSetFontConfigDirectoryMethod.cs
│ │ │ ├── TheSetGhostscriptDirectoryMethod.cs
│ │ │ ├── TheSetGhostscriptFontDirectoryMethod.cs
│ │ │ ├── TheSetRandomSeedMethod.cs
│ │ │ ├── TheSetTempDirectoryMethod.cs
│ │ │ ├── TheSupportedFormatsProperty.cs
│ │ │ └── TheVersionProperty.cs
│ │ ├── Magick.NET.Tests.csproj
│ │ ├── Matrices
│ │ │ ├── ConvolveMatrixTests.cs
│ │ │ └── MagickColorMatrixTests
│ │ │ ├── TheConstructor.cs
│ │ │ ├── TheGetValueMethod.cs
│ │ │ ├── TheIndexer.cs
│ │ │ ├── TheSetColumnMethod.cs
│ │ │ ├── TheSetRowMethod.cs
│ │ │ ├── TheSetValueMethod.cs
│ │ │ └── TheToArrayMethod.cs
│ │ ├── Netstandard21
│ │ │ ├── Factories
│ │ │ │ ├── MagickImageCollectionFactoryTests
│ │ │ │ │ └── TheCreateMethod.cs
│ │ │ │ ├── MagickImageFactoryTests
│ │ │ │ │ └── TheCreateMethod.cs
│ │ │ │ └── MagickImageInfoFactoryTests
│ │ │ │ └── TheCreateMethod.cs
│ │ │ ├── MagickImageCollectionTests
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ ├── ThePingMethod.cs
│ │ │ │ ├── TheReadMethod.cs
│ │ │ │ └── TheWriteMethod.cs
│ │ │ ├── MagickImageInfoTests
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ ├── TheReadCollectionMethod.cs
│ │ │ │ └── TheReadMethod.cs
│ │ │ ├── MagickImageTests
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ ├── TheImportPixelsMethod.cs
│ │ │ │ ├── ThePingMethod.cs
│ │ │ │ ├── TheReadMethod.cs
│ │ │ │ ├── TheReadPixelsMethod.cs
│ │ │ │ └── TheWriteMethod.cs
│ │ │ └── Pixels
│ │ │ ├── SafePixelCollectionTests
│ │ │ │ ├── TheGetReadonlyAreaMethod.cs
│ │ │ │ ├── TheSetAreaMethod.cs
│ │ │ │ └── TheSetPixelsMethod.cs
│ │ │ └── UnsafePixelCollectionTests
│ │ │ ├── TheGetReadonlyAreaMethod.cs
│ │ │ ├── TheSetAreaMethod.cs
│ │ │ └── TheSetPixelsMethod.cs
│ │ ├── Optimizers
│ │ │ ├── GifOptimizerTests
│ │ │ │ ├── Init.cs
│ │ │ │ ├── TheCompressMethod.cs
│ │ │ │ ├── TheLosslessCompressMethod.cs
│ │ │ │ └── TheOptimalCompressionProperty.cs
│ │ │ ├── IcoOptimizerTests
│ │ │ │ ├── Init.cs
│ │ │ │ ├── TheCompressMethod.cs
│ │ │ │ ├── TheLosslessCompressMethod.cs
│ │ │ │ └── TheOptimalCompressionProperty.cs
│ │ │ ├── ImageOptimizerTestHelper.cs
│ │ │ ├── ImageOptimizerTestHelper{TOptimizer}.cs
│ │ │ ├── ImageOptimizerTests
│ │ │ │ ├── Init.cs
│ │ │ │ ├── TheCompressMethod.cs
│ │ │ │ ├── TheIsSupportedMethod.cs
│ │ │ │ └── TheLosslessCompressMethod.cs
│ │ │ ├── JpegOptimizerTests
│ │ │ │ ├── Init.cs
│ │ │ │ ├── TheCompressMethod.cs
│ │ │ │ ├── TheLosslessCompressMethod.cs
│ │ │ │ └── TheOptimalCompressionProperty.cs
│ │ │ └── PngOptimizerTests
│ │ │ ├── Init.cs
│ │ │ ├── TheCompressMethod.cs
│ │ │ ├── TheLosslessCompressMethod.cs
│ │ │ └── TheOptimalCompressionProperty.cs
│ │ ├── Pixels
│ │ │ ├── PixelTests
│ │ │ │ ├── TheEqualsMethod.cs
│ │ │ │ ├── TheGetChannelMethod.cs
│ │ │ │ ├── TheSetChannelMethod.cs
│ │ │ │ └── TheToColorMethod.cs
│ │ │ ├── SafePixelCollectionTests
│ │ │ │ ├── TheChannelsProperty.cs
│ │ │ │ ├── TheGetAreaMethod.cs
│ │ │ │ ├── TheGetEnumeratorMethod.cs
│ │ │ │ ├── TheGetIndexMethod.cs
│ │ │ │ ├── TheGetPixelMethod.cs
│ │ │ │ ├── TheGetValueMethod.cs
│ │ │ │ ├── TheGetValuesMethod.cs
│ │ │ │ ├── TheIndexer.cs
│ │ │ │ ├── TheSetAreaMethod.cs
│ │ │ │ ├── TheSetByteAreaMethod.cs
│ │ │ │ ├── TheSetBytePixelsMethod.cs
│ │ │ │ ├── TheSetDoubleAreaMethod.cs
│ │ │ │ ├── TheSetDoublePixelsMethod.cs
│ │ │ │ ├── TheSetIntAreaMethod.cs
│ │ │ │ ├── TheSetIntPixelsMethod.cs
│ │ │ │ ├── TheSetPixelMethod.cs
│ │ │ │ ├── TheSetPixelsMethod.cs
│ │ │ │ ├── TheToArrayMethod.cs
│ │ │ │ ├── TheToByteArrayMethod.cs
│ │ │ │ └── TheToShortArrayMethod.cs
│ │ │ └── UnsafePixelCollectionTests
│ │ │ ├── TheChannelsProperty.cs
│ │ │ ├── TheGetAreaMethod.cs
│ │ │ ├── TheGetAreaPointerMethod.cs
│ │ │ ├── TheGetEnumeratorMethod.cs
│ │ │ ├── TheGetIndexMethod.cs
│ │ │ ├── TheGetPixelMethod.cs
│ │ │ ├── TheGetValueMethod.cs
│ │ │ ├── TheGetValuesMethod.cs
│ │ │ ├── TheIndexer.cs
│ │ │ ├── TheSetAreaMethod.cs
│ │ │ ├── TheSetByteAreaMethod.cs
│ │ │ ├── TheSetBytePixelsMethod.cs
│ │ │ ├── TheSetDoubleAreaMethod.cs
│ │ │ ├── TheSetDoublePixelsMethod.cs
│ │ │ ├── TheSetIntAreaMethod.cs
│ │ │ ├── TheSetIntPixelsMethod.cs
│ │ │ ├── TheSetPixelMethod.cs
│ │ │ ├── TheSetPixelsMethod.cs
│ │ │ ├── TheToByteArrayMethod.cs
│ │ │ └── TheToShortArrayMethod.cs
│ │ ├── Profiles
│ │ │ ├── 8Bim
│ │ │ │ ├── EightBimProfileTests
│ │ │ │ │ ├── TheConstructor.cs
│ │ │ │ │ ├── TheGetExifProfileMethod.cs
│ │ │ │ │ ├── TheGetIptcProfileMethod.cs
│ │ │ │ │ ├── TheGetXmpProfileMethod.cs
│ │ │ │ │ ├── TheSetExifProfileMethod.cs
│ │ │ │ │ ├── TheSetIptcProfileMethod.cs
│ │ │ │ │ └── TheSetXmpProfileMethod.cs
│ │ │ │ └── EightBimValueTests
│ │ │ │ ├── TheEqualsMethod.cs
│ │ │ │ └── TheToByteArrayMethod.cs
│ │ │ ├── Exif
│ │ │ │ └── ExifProfileTests
│ │ │ │ ├── Init.cs
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ ├── TheGetValueMethod.cs
│ │ │ │ ├── ThePartsProperty.cs
│ │ │ │ ├── TheRemoveThumbnailMethod.cs
│ │ │ │ ├── TheRemoveValueMethod.cs
│ │ │ │ ├── TheRewriteMethod.cs
│ │ │ │ ├── TheSetValueMethod.cs
│ │ │ │ ├── TheToByteArrayMethod.cs
│ │ │ │ └── TheValuesMethod.cs
│ │ │ ├── ImageProfileTests
│ │ │ │ └── TheToByteArrayMethod.cs
│ │ │ ├── Iptc
│ │ │ │ ├── IptcProfileTests
│ │ │ │ │ ├── TheGetAllValuesMethod.cs
│ │ │ │ │ ├── TheGetValueMethod.cs
│ │ │ │ │ ├── TheRemoveValueMethod.cs
│ │ │ │ │ ├── TheSetValueMethod.cs
│ │ │ │ │ └── TheValuesProperty.cs
│ │ │ │ └── IptcValueTests
│ │ │ │ ├── TheEqualsMethod.cs
│ │ │ │ └── TheProperties.cs
│ │ │ └── Xmp
│ │ │ └── XmpProfileTests
│ │ │ ├── TheCreateReaderMethod.cs
│ │ │ ├── TheFromIXPathNavigableMethod.cs
│ │ │ ├── TheFromXDocumentMethod.cs
│ │ │ ├── TheToIXPathNavigableMethod.cs
│ │ │ └── TheToXDocumentMethod.cs
│ │ ├── Properties
│ │ │ └── launchSettings.json
│ │ ├── QuantumTests
│ │ │ ├── TheDepthProperty.cs
│ │ │ └── TheMaxProperty.cs
│ │ ├── ResourceLimitsTests
│ │ │ ├── TheAreaProperty.cs
│ │ │ ├── TheDiskProperty.cs
│ │ │ ├── TheHeightProperty.cs
│ │ │ ├── TheLimitMemoryMethod.cs
│ │ │ ├── TheListLengthProperty.cs
│ │ │ ├── TheMaxMemoryRequest.cs
│ │ │ ├── TheMemoryProperty.cs
│ │ │ ├── TheThreadProperty.cs
│ │ │ ├── TheThrottleProperty.cs
│ │ │ ├── TheTimeProperty.cs
│ │ │ └── TheWidthProperty.cs
│ │ ├── RunTestsSeparately.cs
│ │ ├── Settings
│ │ │ ├── MagickReadSettingsTests
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ ├── TheDensityProperty.cs
│ │ │ │ ├── TheExtractAreaProperty.cs
│ │ │ │ ├── TheFrameCountProperty.cs
│ │ │ │ ├── TheFrameIndexProperty.cs
│ │ │ │ ├── TheSyncImageWithExifProfileProperty.cs
│ │ │ │ ├── TheSyncImageWithTiffPropertiesProperty.cs
│ │ │ │ └── TheWidthAndHeightProperty.cs
│ │ │ ├── MagickSettingsTests
│ │ │ │ ├── TheAffineProperty.cs
│ │ │ │ ├── TheBorderColorProperty.cs
│ │ │ │ ├── TheColorSpaceProperty.cs
│ │ │ │ ├── TheColorTypeProperty.cs
│ │ │ │ ├── TheCompressionProperty.cs
│ │ │ │ ├── TheDebugProperty.cs
│ │ │ │ ├── TheDepthProperty.cs
│ │ │ │ ├── TheEndianProperty.cs
│ │ │ │ ├── TheFillColorProperty.cs
│ │ │ │ ├── TheFillPatternProperty.cs
│ │ │ │ ├── TheFillRuleProperty.cs
│ │ │ │ ├── TheFontFamilyProperty.cs
│ │ │ │ ├── TheFontPointSizeProperty.cs
│ │ │ │ ├── TheFontProperty.cs
│ │ │ │ ├── TheFontStyleProperty.cs
│ │ │ │ ├── TheFontWeightProperty.cs
│ │ │ │ ├── TheInterlaceProperty.cs
│ │ │ │ ├── ThePageProperty.cs
│ │ │ │ ├── TheRemoveDefineMethod.cs
│ │ │ │ ├── TheSetDefineMethod.cs
│ │ │ │ ├── TheStrokeAntiAliasProperty.cs
│ │ │ │ ├── TheStrokeColorProperty.cs
│ │ │ │ ├── TheStrokeDashArrayProperty.cs
│ │ │ │ ├── TheStrokeDashOffsetProperty.cs
│ │ │ │ ├── TheStrokeLineCapProperty.cs
│ │ │ │ ├── TheStrokeLineJoinProperty.cs
│ │ │ │ ├── TheStrokeMiterLimitProperty.cs
│ │ │ │ ├── TheStrokePatternProperty.cs
│ │ │ │ ├── TheStrokeWidthProperty.cs
│ │ │ │ ├── TheTextAntiAliasProperty.cs
│ │ │ │ ├── TheTextDirectionProperty.cs
│ │ │ │ ├── TheTextEncodingProperty.cs
│ │ │ │ ├── TheTextGravityProperty.cs
│ │ │ │ ├── TheTextInterlineSpacingProperty.cs
│ │ │ │ ├── TheTextInterwordSpacingProperty.cs
│ │ │ │ ├── TheTextKerningProperty.cs
│ │ │ │ ├── TheTextUnderColorProperty.cs
│ │ │ │ └── TheVerboseProperty.cs
│ │ │ ├── PixelReadSettingsTests
│ │ │ │ └── TheConstructor.cs
│ │ │ └── QuantizeSettingsTests
│ │ │ └── TheConstructor.cs
│ │ ├── Statistics
│ │ │ ├── ChannelMomentsTests
│ │ │ │ ├── TheEqualsMethod.cs
│ │ │ │ └── TheHuInvariantsMethod.cs
│ │ │ ├── ChannelPerceptualHashTests
│ │ │ │ └── TheHuPhashMethod.cs
│ │ │ ├── PerceptualHashTests
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ ├── TheSumSquaredDistanceMethod.cs
│ │ │ │ └── TheToStringMethod.cs
│ │ │ └── StatisticsTests
│ │ │ ├── TheChannelsProperty.cs
│ │ │ ├── TheCompositeMethod.cs
│ │ │ └── TheGetChannelMethod.cs
│ │ ├── TestCollectionOrderer.cs
│ │ ├── TestHelpers
│ │ │ ├── Assert
│ │ │ │ └── OpenCLValue.cs
│ │ │ ├── Cleanup.cs
│ │ │ ├── FileHelper.cs
│ │ │ ├── NonSeekableStream.cs
│ │ │ ├── PartialStream.cs
│ │ │ ├── ReadExceptionStream.cs
│ │ │ ├── SeekExceptionStream.cs
│ │ │ ├── TellExceptionStream.cs
│ │ │ ├── TemporaryDirectory.cs
│ │ │ ├── TemporaryFile.cs
│ │ │ ├── TestImageProfile.cs
│ │ │ ├── TestReadOnlySequence.cs
│ │ │ ├── TestRuntime.cs
│ │ │ ├── TestStream.cs
│ │ │ └── WriteExceptionStream.cs
│ │ ├── TestInitializer.cs
│ │ ├── TestIssue.cs
│ │ ├── Types
│ │ │ ├── BytesTests
│ │ │ │ ├── TheCreateMethod.cs
│ │ │ │ └── TheFromStreamMethod.cs
│ │ │ ├── MagickGeometryTests
│ │ │ │ ├── TheCompareToMethod.cs
│ │ │ │ ├── TheConstructor.cs
│ │ │ │ ├── TheEqualsMethod.cs
│ │ │ │ ├── TheFromPageSizeMethod.cs
│ │ │ │ ├── TheOperators.cs
│ │ │ │ └── TheToStringMethod.cs
│ │ │ └── SparseColorArgTests
│ │ │ └── TheConstructor.cs
│ │ └── Windows
│ │ ├── Coders
│ │ │ ├── TheCaptionCoder.cs
│ │ │ └── TheLabelCoder.cs
│ │ └── OpenCL
│ │ ├── OpenCLDeviceTests
│ │ │ ├── TheBenchmarkScoreProperty.cs
│ │ │ ├── TheDeviceTypeProperty.cs
│ │ │ ├── TheIsEnabledProperty.cs
│ │ │ ├── TheKernelProfileRecordsProperty.cs
│ │ │ ├── TheNameProperty.cs
│ │ │ └── TheVersionProperty.cs
│ │ └── OpenCLTests.cs
│ └── Shared
│ ├── ColorAssert.cs
│ └── Files.cs
└── tools
├── FileGenerators
│ ├── FileGenerator.Native.sln
│ ├── FileGenerator.props
│ ├── FileGenerator.ps1
│ ├── Native
│ │ ├── Base
│ │ │ └── NativeCodeGenerator.cs
│ │ ├── Data
│ │ │ ├── DynamicMode.cs
│ │ │ ├── MagickArgument.cs
│ │ │ ├── MagickClass.cs
│ │ │ ├── MagickCleanupMethod.cs
│ │ │ ├── MagickConstructor.cs
│ │ │ ├── MagickDelegate.cs
│ │ │ ├── MagickMethod.cs
│ │ │ ├── MagickProperty.cs
│ │ │ └── MagickType.cs
│ │ ├── FileGenerator.Native.csproj
│ │ ├── NativeClassGenerator.cs
│ │ ├── NativeGenerator.cs
│ │ ├── NativeInstanceGenerator.cs
│ │ └── Program.cs
│ └── Shared
│ ├── CodeGenerator.cs
│ ├── Extensions
│ │ └── IEnumerableExtensions.cs
│ ├── FileGenerator.Shared.csproj
│ └── PathHelper.cs
├── Generate.Native.cmd
└── windows
├── FileGenerator.Drawables.ps1
├── init.visualstudio.cmd
└── utils.ps1
325 directories, 1819 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论