UNPKG

image-in-browser

Version:

Package for encoding / decoding images, transforming images, applying filters, drawing primitives on images on the client side (no need for server Node.js)

12 lines 376 B
import { VP8 } from './vp8.js'; export class VP8FilterHeader { constructor() { this.simple = false; this.level = 0; this.sharpness = 0; this.useLfDelta = false; this.refLfDelta = new Int32Array(VP8.numRefLfDeltas); this.modeLfDelta = new Int32Array(VP8.numModeLfDeltas); } } //# sourceMappingURL=vp8-filter-header.js.map