ImageWatermarkOptions.IsWashout

ImageWatermarkOptions IsWashout property. Gets or sets a boolean value which is responsible for washout effect of the watermark. The default value is true.

ImageWatermarkOptions.IsWashout property

Gets or sets a boolean value which is responsible for washout effect of the watermark. The default value is true.

public bool IsWashout { get; set; }

Examples

Shows how to add image watermark into the document with custom watermark options.

ImageWatermarkOptions imageWatermarkOptions = new ImageWatermarkOptions();
imageWatermarkOptions.Scale = 0.1;
imageWatermarkOptions.IsWashout = true;
Watermarker.SetImage(MyDir + "Simple.docx", ArtifactsDir + "Watermarker.SetImage.doc", MyDir + @"Images\logo.png", imageWatermarkOptions);

See Also