tiff
Version:
TIFF image decoder written entirely in JavaScript
7 lines • 353 B
JavaScript
import { decompressSync } from 'fflate';
export function decompressZlib(stripData) {
const stripUint8 = new Uint8Array(stripData.buffer, stripData.byteOffset, stripData.byteLength);
const inflated = decompressSync(stripUint8);
return new DataView(inflated.buffer, inflated.byteOffset, inflated.byteLength);
}
//# sourceMappingURL=zlib.js.map