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 320 B
export class PsdFlag { get value() { return this._value; } constructor(value) { this._value = value; } } PsdFlag.transparencyProtected = 1; PsdFlag.hidden = 2; PsdFlag.obsolete = 4; PsdFlag.photoshop5 = 8; PsdFlag.pixelDataIrrelevantToAppearance = 16; //# sourceMappingURL=psd-flag.js.map