Hi All,
I need to add Watermark to an existing PDF file.I am using ASPOSE dll with c#.
If any have worked,please help me.
Thanks & Regards,
pbsam09
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Lisa WhitePosted Dec 30, 2015, 8:33 PM
alva christeenPosted Dec 30, 2015, 5:33 AM
Hello,
I would like to recommend PDF watermark for Mac that help you to add text or image watermark to every page of PDF file like company name, company logo, or add signature. You can even add text watermark.
Florentin BadeaPosted Nov 14, 2014, 10:25 AM
Here is how you can add an watermark to an existing pdf document with ExpertPdf:
using ExpertPdf.HtmlToPdf.PdfDocument;
Document document = new Document(fileName);
Template watermarkTemplate = document.AddTemplate(boundings);
PdfFont watermarkTextFont = document.AddFont(StdFontBaseFamily.HelveticaBold);
watermarkTextFont.Size = 10;
TextElement watermarkTextElement = new TextElement(3, 0, "This is Watermark Text", watermarkTextFont);
watermarkTextElement.Transparency = 100;
watermarkTemplate.AddElement(watermarkTextElement);
document.Save(fileName2);