PositionOptions for text watermark and image watermark. When position is set, X and Y are treated as offsets from that anchor.
Example
positionOptions: { X: 10, Y: 10, } // or positionOptions: { position: Position.topLeft, } // or positionOptions: { position: Position.topRight, X: 60, // 60px from the right edge Y: 60, // 60px from the top edge } // or positionOptions: { X: '10%', // relative to the width of the background image Y: '10%', // relative to the width of the background image }
PositionOptions for text watermark and image watermark. When
positionis set,XandYare treated as offsets from that anchor.Example