Expand description
Basic stream filters — ASCII85, ASCIIHex, RunLength.
All three filters are consolidated here, mirroring PDFium’s single
core/fxcodec/basic/basicmodule.h/cpp source file.
PDFium BasicModule | rpdfium |
|---|---|
A85Encode() | ascii85::encode |
| (decode via codec pipeline) | ascii85::decode |
| (decode via codec pipeline) | ascii_hex::decode |
RunLengthEncode() | run_length::encode |
| (decode via codec pipeline) | run_length::decode |
CreateRunLengthDecoder() | run_length::create_decoder |
Modules§
- ascii85
- ASCII85Decode / ASCII85Encode filter.
- ascii_
hex - ASCIIHexDecode filter.
- run_
length - RunLengthDecode / RunLengthEncode filter and scanline decoder.