Table of Contents

Enum PngCompressionFilter

Namespace
ImageMagick.Formats
Assembly
Magick.NET-Q8-AnyCPU.dll

Specifies the PNG compression filter.

public enum PngCompressionFilter

Fields

Average = 3

Average: Uses the average of the left and above pixels.

None = 0

0 - None: No filter.

Paeth = 4

Paeth: A predictive filter using the Paeth algorithm.

Sub = 1

Sub: Subtracts the value of the pixel to the left.

Up = 2

Up: Subtracts the value of the pixel above.