Spire.PDF is a professional PDF library applied to creating, writing, editing, handling and reading PDF files without any external dependencies. Get free and professional technical support for Spire.PDF for .NET, Java, Android, C++, Python.

Fri Aug 18, 2017 8:37 am

Hello,

I am trying to add annotation on first page to the existing PDF using below code.

PdfPageBase page = (PdfPageBase)ExistingImagePDF.Pages[0];
PdfFont font = new PdfFont(PdfFontFamily.Helvetica, 13);
string text = "HelloWorld";
PointF point = new PointF(200, 100);
page.Canvas.DrawString(text, font, PdfBrushes.CadetBlue, point);

PdfTextMarkupAnnotation annotation1 = new PdfTextMarkupAnnotation("Administrator", "Some Default Text", text, new PointF(0, 0), font);
annotation1.Border = new PdfAnnotationBorder(0.75f);
annotation1.TextMarkupColor = Color.Green;

annotation1.Location = new PointF(point.X + ExistingImagePDF.PageSettings.Margins.Left, point.Y + ExistingImagePDF.PageSettings.Margins.Left);
(page as PdfNewPage).Annotations.Add(annotation1);

but I am getting object reference error on the last line because (page as PdfNewPage) is giving as NULL.

Can anyone suggest how to get first page object ?

devang.patel@altegrahealth.com
 
Posts: 8
Joined: Mon May 30, 2016 11:20 am

Fri Aug 18, 2017 9:42 am

Hello,

Thanks for your inquiry. For an existing PDF, you need to use page.AnnotationsWidget.Add method.
Code: Select all
 page.AnnotationsWidget.Add(annotation1);

Sincerely,
Gary
E-iceblue support team
User avatar

Gary.zhang
 
Posts: 1380
Joined: Thu Apr 04, 2013 1:30 am

Fri Aug 18, 2017 9:52 am

Thank you for your reply.

I have already tried the same thing but it is not showing in the PDF.

devang.patel@altegrahealth.com
 
Posts: 8
Joined: Mon May 30, 2016 11:20 am

Fri Aug 18, 2017 10:12 am

Hello,

Thanks for your prompt response. Could you please provide us the document you were trying and point out where the place the annotation needs to be added? And we will provide you the solution accordingly.

Thanks,
Gary
E-iceblue support team
User avatar

Gary.zhang
 
Posts: 1380
Joined: Thu Apr 04, 2013 1:30 am

Return to Spire.PDF