Some test text!
Android / Guides
A variety of annotations can be created such as sticky note (text annotations), link annotations, stamp annotations, and more.
To add a free text annotation to a PDF Document page.
PDFDoc doc = new PDFDoc(filename);
Page page = doc.getPage(1);
// Create a free text
FreeText txtannot = FreeText.create(doc, new Rect(100, 100, 350, 500));
txtannot.setContentRect(new Rect(200, 200, 350, 500));
txtannot.setContents("\n\nSome swift brown fox snatched a gray hare out of the air by freezing it with an angry glare." +
"\n\nAha!\n\nAnd there was much rejoicing!");
txtannot.setCalloutLinePoints(new Point(200, 300), new Point(150, 290), new Point(110, 110));
txtannot.setBorderStyle(new Annot.BorderStyle(Annot.BorderStyle.e_solid, 1, 10, 20));
txtannot.setEndingStyle(Line.e_ClosedArrow);
txtannot.setColor(new ColorPt(0, 1, 0));
txtannot.setQuaddingFormat(1);
page.annotPushBack(txtannot);
txtannot.refreshAppearance();
Add or edit PDF annotations sample
Full code sample which shows how to add or edit PDF annotations (e.g. hyperlink, intra-document link, stamp, rubber stamp, file attachment, sound, text, free-text, line, circle, square, polygon, polyline, free text, squiggly, caret, and ink).
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales