Interface IWatermarkVisibilityConfig
A configuration of watermark visibility.
Package: @aurigma/design-editor-iframe
Remarks
IWatermarkConfig uses this interface.
Examples
configuration = {
watermark: {
image: {
name: "watermark.png",
repeat: true,
opacity: 0.1
},
visibility: {
proof: true,
canvas: true
}
}
};
Properties
canvas
Enables the watermark on the canvas. The default value is false.
Declaration
canvas?: boolean;
Property Value
| Type | Description |
|---|---|
| boolean | Enables the watermark on the canvas. The default value is |
proof
Enables the watermark on the proof images. The default value is false.
Declaration
proof?: boolean;
Property Value
| Type | Description |
|---|---|
| boolean | Enables the watermark on the proof images. The default value is |