From 55b11aad436109236d50d29891548579847608cf Mon Sep 17 00:00:00 2001 From: jeyalakshmit Date: Mon, 11 Dec 2023 10:45:54 +0530 Subject: [PATCH] updated the Watermarks and Bookmarks to a PDF video link in PDF UG documentation --- File-Formats/PDF/Working-with-Watermarks.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/File-Formats/PDF/Working-with-Watermarks.md b/File-Formats/PDF/Working-with-Watermarks.md index cf0cb8701..7d2717768 100644 --- a/File-Formats/PDF/Working-with-Watermarks.md +++ b/File-Formats/PDF/Working-with-Watermarks.md @@ -9,6 +9,9 @@ documentation: UG The Essential PDF provides support to add watermark or stamp with text and images in the PDF document. +To quickly get started, add Watermarks and Bookmarks to a PDF document in .NET using the PDF Library. Please, check this video: +{% youtube " https://www.youtube.com/watch?v=C6nYz8fn0To" %} + ## Adding text watermark in PDF document The below code illustrates how to draw the text watermark in new PDF document using [DrawString](https://help.syncfusion.com/cr/file-formats/Syncfusion.Pdf.Graphics.PdfGraphics.html#Syncfusion_Pdf_Graphics_PdfGraphics_DrawString_System_String_Syncfusion_Pdf_Graphics_PdfFont_Syncfusion_Pdf_Graphics_PdfPen_Syncfusion_Pdf_Graphics_PdfBrush_System_Drawing_PointF_) method of [PdfGraphics](https://help.syncfusion.com/cr/file-formats/Syncfusion.Pdf.Graphics.PdfGraphics.html) class. The transparency can be applied to the text or images using [SetTransparency](https://help.syncfusion.com/cr/file-formats/Syncfusion.Pdf.Graphics.PdfGraphics.html#Syncfusion_Pdf_Graphics_PdfGraphics_SetTransparency_System_Single_) method and rotation can be applied using [RotateTransform](https://help.syncfusion.com/cr/file-formats/Syncfusion.Pdf.Graphics.PdfGraphics.html#Syncfusion_Pdf_Graphics_PdfGraphics_RotateTransform_System_Single_) method.