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)
23 lines • 585 B
JavaScript
import { PsdEffect } from './psd-effect.js';
export class PsdSolidFillEffect extends PsdEffect {
get blendMode() {
return this._blendMode;
}
get color() {
return this._color;
}
get opacity() {
return this._opacity;
}
get nativeColor() {
return this._nativeColor;
}
constructor(opt) {
super(opt);
this._blendMode = opt.blendMode;
this._color = opt.color;
this._opacity = opt.opacity;
this._nativeColor = opt.nativeColor;
}
}
//# sourceMappingURL=psd-solid-fill-effect.js.map