SetaPDF_Core_Filter_Flate Class for handling zlib/deflate compression
File: /SetaPDF v2/Core/Filter/Flate.php
Class hierarchy
Implements
Summary
Properties
$alwaysWritePredictorByte
Whether or not to only write algorithm byte if predictor value is 15.
If set to true, the algorithm byte is written at the beginning of every line for all PNG predictors.
If set to false, this byte is only written for optimum png compression, which can vary the compression algorithm for each row.
Methods
__construct()
public SetaPDF_Core_Filter_Predictor::__construct (
[ integer $predictor = null [, integer $colors = null [, integer $bitsPerComponent = null [, integer $columns = null ]]]]
)The constructor.
Parameters
- $predictor : integer
- $colors : integer
- $bitsPerComponent : integer
- $columns : integer
_paethPredictor()
protected SetaPDF_Core_Filter_Predictor::_paethPredictor (
int|float $left, int|float $above, int|float $upperLeft
): int|floatValue prediction using the Alan W. Paeth algorithm.
Parameters
- $left : int|float
The value to the left of the processed data entry.
- $above : int|float
The value above the processed data entry.
- $upperLeft : int|float
The value to the upper left of the processed data entry.
Return Values
Returns the prediction value according to the Peath algorithm
decode()
Decodes a flate compressed string.
Parameters
- $data : string
The input string
Exceptions
encode()
Encodes a string with flate compression.
Parameters
- $data : string
The input string