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)

14 lines 334 B
import { WinEncoder } from './win-encoder.js'; export class IcoEncoder extends WinEncoder { constructor() { super(...arguments); this._type = 1; } colorPlanesOrXHotSpot(_index) { return 0; } bitsPerPixelOrYHotSpot(_index) { return 32; } } //# sourceMappingURL=ico-encoder.js.map