fast-lzw

1.0.0-beta.3 • Public • Published

fast-lzw

Extremely fast LZW decompression for JavaScript using WASM extracted from FFmpeg. Can decompress upwards of ~100MB/s.

import { LZW } from 'fast-lzw'
const WORKER_POOL_SIZE = 4
 
async function decompress(blob) {
  const lzw = new LZW(WORKER_POOL_SIZE)
  const arrayBuffer = await blob.arrayBuffer()
  
  // FastLZW can also take TypedArrays as input, it just
  // gets their ArrayBuffers
  const uint8Arrays = await lzw.decompress([ arrayBuffer ])
  
  return uint8Arrays.map(_ => _.buffer)
}
 

TIP: For fastest performance, if you have multiple blocks (e.g. from a TIFF), pass them all to LZW.decompress in a single call. Ideally they'd be backed by SharedArrayBuffer(s). FastLZW will not use web workers if instatiated without a WORKER_POOL_SIZE argument.

Package Sidebar

Install

npm i fast-lzw

Weekly Downloads

5

Version

1.0.0-beta.3

License

LGPL-2.1-only

Unpacked Size

261 kB

Total Files

6

Last publish

Collaborators

  • snickell