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)

31 lines 767 B
import { PsdEffect } from './psd-effect.js'; export class PsdOuterGlowEffect extends PsdEffect { get blur() { return this._blur; } get intensity() { return this._intensity; } get color() { return this._color; } get blendMode() { return this._blendMode; } get opacity() { return this._opacity; } get nativeColor() { return this._nativeColor; } constructor(opt) { super(opt); this._blur = opt.blur; this._intensity = opt.intensity; this._color = opt.color; this._blendMode = opt.blendMode; this._opacity = opt.opacity; this._nativeColor = opt.nativeColor; } } //# sourceMappingURL=psd-outer-glow-effect.js.map