Edit annotation style properties on Server/Desktop

To set an annotation style property such as color, interior color, border style, padding, etc to an annotation.

1PDFDoc doc = new PDFDoc(filename);
2Page page = doc.getPage(1);
3
4Circle circle = Circle.create(doc, new Rect(100, 100, 200, 200));
5circle.setColor(new ColorPt(0, 1, 0), 3);
6circle.setInteriorColor(new ColorPt(0, 0, 1), 3);
7double[] dash = {2, 4};
8circle.setBorderStyle(new Annot.BorderStyle(Annot.BorderStyle.e_dashed, 3, 0, 0, dash));
9circle.setPadding(2);
10circle.refreshAppearance();
11page.annotPushBack(circle);

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, highlight, squiggly, caret, and ink).

Did you find this helpful?

Trial setup questions?

Ask experts on Discord

Need other help?

Contact Support

Pricing or product questions?

Contact Sales