Skip to main content
⚠️ Archived Version

You are viewing documentation for Design Editor version 7.2, which is no longer actively maintained. For the latest features and updates, please refer to the current version (7.3).

Interface: IWatermarkVisibilityConfig

A configuration of watermark visibility.

Remarks

IWatermarkConfig uses this interface.

Example

configuration = {
watermark: {
image: {
name: "watermark.png",
repeat: true,
opacity: 0.1,
},
visibility: {
proof: true,
canvas: true,
},
},
};

Properties

canvas?

optional canvas?: boolean

Enables the watermark on the canvas. The default value is false.


proof?

optional proof?: boolean

Enables the watermark on the proof images. The default value is false.

Was this page helpful?