Creating Annotations within pdf files using Aspose

Hi,

Just wanted to see whether there’s any update on this issue? Any info you can provide on fix likelihood and/or timescale would be useful as we’re doing some release planning for our product at the moment.

Many thanks,

George

Hi George,

Thank you for being patient.

I have requested the development team to share an ETA regarding the resolution of your reported issue. As soon as I get feedback from them, I will update you via this forum thread.

Sorry for the inconvenience.

Hi,

We’re still really keen for an update on this issue - any news?

Best regards,

George

Hi George,

Thanks for your inquiry. I have verified the status of this issue and regret relay that issue remains unresolved due to some other priority tasks. The development team has completed the analysis phase and it is pending in the queue for development. I have requested the team for an ETA, and as soon as I get feedback, I will update you via this forum thread.

Sorry for the inconvenience faced.

Best Regards,

The issues you have found earlier (filed as PDFNEWNET-34415) have been fixed in Aspose.Pdf for .NET 9.4.0.


This message was posted using Notification2Forum from Downloads module by Aspose Notifier.

Hi George,

Thanks for your patience. Your above reported issue (PDFNEWNET-34415) has been fixed in Aspose.Pdf for .NET 9.4.0. Please check the following code snippet to draw a rectangle on the specified area. Hopefully, it will help you to accomplish the task.

Document pdf = new Document();
pdf.Pages.Add();

SquareAnnotation sa = new SquareAnnotation(
    pdf.Pages[1],
    new Aspose.Pdf.Rectangle(0, 0, 400, 400)
    { InteriorColor = Aspose.Pdf.Color.Blue }
);

pdf.Pages[1].Annotations.Add(sa);

//pdf.Pages[1].Flatten();

TiffDevice tiffDevice = new TiffDevice();
tiffDevice.Process(pdf, @"out.tif");

pdf.Save(@"out.pdf");

Please feel free to contact us for any further assistance.

Best Regards,