Enum PngChunkFilter
- Namespace
- SixLabors.ImageSharp.Formats.Png
- Assembly
- SixLabors.ImageSharp.dll
Provides enumeration of available PNG optimization methods.
[Flags]
public enum PngChunkFilter
Fields
ExcludeAll = -1All ancillary chunks will be excluded.
ExcludeExifChunk = 4Excludes the eXIf chunk from encoding.
ExcludeGammaChunk = 2Excludes the gamma information chunk from encoding.
ExcludePhysicalChunk = 1Excludes the physical dimension information chunk from encoding.
ExcludeTextChunks = 8Excludes the tTXt, iTXt or zTXt chunk from encoding.
None = 0With the None filter, all chunks will be written.