Skip to main content

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?