Example written in answer to the question How to change the color of a circle annotation?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
This file is part of the iText (R) project.
Copyright (c) 1998-2019 iText Group NV
Authors: iText Software.
For more information, please contact iText Software at this address:
sales@itextpdf.com
*/
/**
* This example was written by Bruno Lowagie in answer to the following question:
* http://stackoverflow.com/questions/29275194/change-pdf-fillcolor-annotation-property-using-itextsharp-c-sharp
*/
package com.itextpdf.samples.sandbox.annotations;
import com.itextpdf.kernel.colors.ColorConstants;
import com.itextpdf.kernel.geom.Rectangle;
import com.itextpdf.kernel.pdf.*;
import com.itextpdf.kernel.pdf.annot.PdfAnnotation;
import com.itextpdf.kernel.pdf.annot.PdfCircleAnnotation;
import com.itextpdf.samples.GenericTest;
import com.itextpdf.test.annotations.type.SampleTest;
import org.junit.experimental.categories.Category;
import java.io.File;
@Category(SampleTest.class)
public class CircleAnnotation extends GenericTest {
public static final String DEST = "./target/test/resources/sandbox/annotations/circle_annotation.pdf";
public static final String SRC = "./src/test/resources/pdfs/hello.pdf";
public static void main(String[] args) throws Exception {
File file = new File(DEST);
file.getParentFile().mkdirs();
new CircleAnnotation().manipulatePdf(DEST);
}
@Override
protected void manipulatePdf(String dest) throws Exception {
PdfDocument pdfDoc = new PdfDocument(new PdfReader(SRC), new PdfWriter(DEST));
Rectangle rect = new Rectangle(150, 770, 50, 50);
PdfAnnotation annotation = new PdfCircleAnnotation(rect)
.setBorderStyle(PdfAnnotation.STYLE_DASHED)
.setDashPattern(new PdfArray(new int[]{3, 2}))
.setContents("Circle")
.setTitle(new PdfString("Circle"))
.setColor(ColorConstants.BLUE)
.setFlags(PdfAnnotation.PRINT)
.setBorder(new PdfArray(new float[]{0, 0, 2}))
.put(PdfName.IC, new PdfArray(new int[]{1, 0, 0}));
pdfDoc.getFirstPage().addAnnotation(annotation);
pdfDoc.close();
}
}