We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 102554e commit a8e015eCopy full SHA for a8e015e
README.md
@@ -24,7 +24,7 @@ PdfWatermarkAnnotation watermark = new PdfWatermarkAnnotation(new RectangleF(100
24
//Sets properties to the annotation
25
watermark.Opacity = 0.5f;
26
//Create the appearance of watermark
27
-watermark.Appearance.Normal.Graphics.DrawString("Imported using Essential® PDF", new PdfStandardFont(PdfFontFamily.Helvetica, 20), PdfBrushes.Red, new RectangleF(50, 50, 250, 50), new PdfStringFormat(PdfTextAlignment.Center, PdfVerticalAlignment.Middle));
+watermark.Appearance.Normal.Graphics.DrawString("Imported using Essential PDF", new PdfStandardFont(PdfFontFamily.Helvetica, 20), PdfBrushes.Red, new RectangleF(50, 50, 250, 50), new PdfStringFormat(PdfTextAlignment.Center, PdfVerticalAlignment.Middle));
28
//Adds the annotation to page
29
lpage.Annotations.Add(watermark);
30
0 commit comments