@syncfusion/ej2-pdf
Version:
Feature-rich JavaScript PDF library with built-in support for loading and manipulating PDF document.
17 lines (16 loc) • 483 B
TypeScript
import { _PdfDecodeStream } from '../decode-stream';
/**
* Provides an LZW decoding stream that expands LZW compressed data from the underlying stream.
*
* @private
*/
export declare class _PdfLempelZivWelchStream extends _PdfDecodeStream {
stream: any;
private cachedData;
private bitsCached;
private lzwState;
private lastCode;
constructor(str: any, maybeLength?: number, earlyChange?: number);
readBits(n: number): number;
readBlock(): void;
}