Click or drag to resize

PdfPredictorFunction Enumeration

Represents a predictor function that can be applied to PdfLZWDecodeFilter or PdfFlateDecodeFilter data to make the encoded data more compact.

Namespace: SautinSoft.Pdf.Filters
Assembly: SautinSoft.Pdf (in SautinSoft.Pdf.dll) Version: 2024.11.26
Syntax
public enum PdfPredictorFunction
Members
Member nameValueDescription
None0 No prediction (the default value).
PNGAverageOnAllRows1 PNG prediction (on encoding, PNG Average on all rows).
PNGNoneOnAllRows2 PNG prediction (on encoding, PNG None on all rows).
PNGOptimum3 PNG prediction (on encoding, PNG optimum).
PNGPaethOnAllRows4 PNG prediction (on encoding, PNG Paeth on all rows).
PNGSubOnAllRows5 PNG prediction (on encoding, PNG Sub on all rows).
PNGUpOnAllRows6 PNG prediction (on encoding, PNG Up on all rows).
TIFF27 TIFF Predictor 2.
Unknown8 Prediction algorithm is unknown.
See Also