UNPKG

@pdfme/pdf-lib

Version:

Create and modify PDF files with JavaScript

13 lines (12 loc) 393 B
import DecodeStream from './DecodeStream'; import { StreamType } from './Stream'; declare class LZWStream extends DecodeStream { private stream; private cachedData; private bitsCached; private lzwState?; constructor(stream: StreamType, maybeLength: number | undefined, earlyChange: 0 | 1); protected readBlock(): void; private readBits; } export default LZWStream;