PredictorDecoder

PredictorDecoder

Overview

PredictorDecoder is a class in Aspose.Pdf FOSS for Java.

PNG and TIFF predictor support for Flate/LZW filters (§7.4.4.4, ISO 32000-1:2008).

Properties

NameTypeAccessDescription
PREDICTOR_NONEintReadNo prediction.
PREDICTOR_TIFFintReadTIFF Predictor 2: horizontal differencing.
PREDICTOR_PNG_NONEintReadPNG None predictor (per-row filter byte present, but filter is 0).
PREDICTOR_PNG_SUBintReadPNG Sub predictor.
PREDICTOR_PNG_UPintReadPNG Up predictor.
PREDICTOR_PNG_AVERAGEintReadPNG Average predictor.
PREDICTOR_PNG_PAETHintReadPNG Paeth predictor.
PREDICTOR_PNG_OPTIMUMintReadPNG Optimum — each row may use a different filter.

Methods

SignatureDescription
decode(data: byte[], predictor: int, columns: int, colors: int, bitsPerComponent: int)byte[]Decodes predictor-filtered data.
encode(data: byte[], predictor: int, columns: int, colors: int, bitsPerComponent: int)byte[]Encodes data with the specified predictor.
paethPredictor(a: int, b: int, c: int)intPaeth predictor function (PNG specification, RFC 2083).

See Also