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)
35 lines • 856 B
JavaScript
import { PsdEffect } from './psd-effect.js';
export class PsdInnerGlowEffect 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 invert() {
return this._invert;
}
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._invert = opt.invert;
this._nativeColor = opt.nativeColor;
}
}
//# sourceMappingURL=psd-inner-glow-effect.js.map