Accusoft.ImagXpressSdk Namespace : PngFilter Enumeration |
'Declaration Public Enum PngFilter Inherits System.Enum
'Usage Dim instance As PngFilter
public enum PngFilter : System.Enum
__value public enum PngFilter : public System.Enum
public enum class PngFilter : public System.Enum
Member | Value | Description |
---|---|---|
Average | 3 | The Average filter uses the average of the two neighboring pixels (left and above) to predict the value of a pixel. |
None | 0 | Fastest, no filter is used. |
Optimal | 5 | Optimal compressed file size, at the expense of speed. |
Paeth | 4 | The Paeth filter computes a simple linear function of the three neighboring pixels (left, above, upper left), then chooses as predictor the neighboring pixel closest to the computed value. This technique is due to Alan W. Paeth. |
Sub | 1 | The Sub filter transmits the difference between each byte and the value of the corresponding byte of the prior pixel. |
Up | 2 | The Up filter is just like the Sub filter except that the pixel immediately above the current pixel, rather than just to its left, is used as the predictor. |
System.Object
System.ValueType
System.Enum
Accusoft.ImagXpressSdk.PngFilter