Search in sources :

Example 1 with PDAppearanceCharacteristicsDictionary

use of org.apache.pdfbox.pdmodel.interactive.annotation.PDAppearanceCharacteristicsDictionary in project pdfbox by apache.

the class AddBorderToField method main.

public static void main(String[] args) throws IOException {
    // Load the PDF document created by SimpleForm.java
    try (PDDocument document = PDDocument.load(new File("target/SimpleForm.pdf"))) {
        PDAcroForm acroForm = document.getDocumentCatalog().getAcroForm();
        // Get the field and the widget associated to it.
        // Note: there might be multiple widgets
        PDField field = acroForm.getField("SampleField");
        PDAnnotationWidget widget = field.getWidgets().get(0);
        // Create the definition for a green border
        PDAppearanceCharacteristicsDictionary fieldAppearance = new PDAppearanceCharacteristicsDictionary(new COSDictionary());
        PDColor green = new PDColor(new float[] { 0, 1, 0 }, PDDeviceRGB.INSTANCE);
        fieldAppearance.setBorderColour(green);
        // Set the information to be used by the widget which is responsible
        // for the visual style of the form field.
        widget.setAppearanceCharacteristics(fieldAppearance);
        document.save("target/AddBorderToField.pdf");
    }
}
Also used : PDAppearanceCharacteristicsDictionary(org.apache.pdfbox.pdmodel.interactive.annotation.PDAppearanceCharacteristicsDictionary) PDField(org.apache.pdfbox.pdmodel.interactive.form.PDField) COSDictionary(org.apache.pdfbox.cos.COSDictionary) PDDocument(org.apache.pdfbox.pdmodel.PDDocument) PDAnnotationWidget(org.apache.pdfbox.pdmodel.interactive.annotation.PDAnnotationWidget) PDAcroForm(org.apache.pdfbox.pdmodel.interactive.form.PDAcroForm) File(java.io.File) PDColor(org.apache.pdfbox.pdmodel.graphics.color.PDColor)

Example 2 with PDAppearanceCharacteristicsDictionary

use of org.apache.pdfbox.pdmodel.interactive.annotation.PDAppearanceCharacteristicsDictionary in project pdfbox by apache.

the class CreateMultiWidgetsForm method main.

public static void main(String[] args) throws IOException {
    // Create a new document with 2 empty pages.
    try (PDDocument document = new PDDocument()) {
        PDPage page1 = new PDPage(PDRectangle.A4);
        document.addPage(page1);
        PDPage page2 = new PDPage(PDRectangle.A4);
        document.addPage(page2);
        // Adobe Acrobat uses Helvetica as a default font and
        // stores that under the name '/Helv' in the resources dictionary
        PDFont font = PDType1Font.HELVETICA;
        PDResources resources = new PDResources();
        resources.put(COSName.getPDFName("Helv"), font);
        // Add a new AcroForm and add that to the document
        PDAcroForm acroForm = new PDAcroForm(document);
        document.getDocumentCatalog().setAcroForm(acroForm);
        // Add and set the resources and default appearance at the form level
        acroForm.setDefaultResources(resources);
        // Acrobat sets the font size on the form level to be
        // auto sized as default. This is done by setting the font size to '0'
        String defaultAppearanceString = "/Helv 0 Tf 0 g";
        acroForm.setDefaultAppearance(defaultAppearanceString);
        // Add a form field to the form.
        PDTextField textBox = new PDTextField(acroForm);
        textBox.setPartialName("SampleField");
        // Acrobat sets the font size to 12 as default
        // This is done by setting the font size to '12' on the
        // field level.
        // The text color is set to blue in this example.
        // To use black, replace "0 0 1 rg" with "0 0 0 rg" or "0 g".
        defaultAppearanceString = "/Helv 12 Tf 0 0 1 rg";
        textBox.setDefaultAppearance(defaultAppearanceString);
        // add the field to the AcroForm
        acroForm.getFields().add(textBox);
        // Specify 1st annotation associated with the field
        PDAnnotationWidget widget1 = new PDAnnotationWidget();
        PDRectangle rect = new PDRectangle(50, 750, 250, 50);
        widget1.setRectangle(rect);
        widget1.setPage(page1);
        widget1.setParent(textBox);
        // Specify 2nd annotation associated with the field
        PDAnnotationWidget widget2 = new PDAnnotationWidget();
        PDRectangle rect2 = new PDRectangle(200, 650, 100, 50);
        widget2.setRectangle(rect2);
        widget2.setPage(page2);
        widget2.setParent(textBox);
        // set green border and yellow background for 1st widget
        // if you prefer defaults, just delete this code block
        PDAppearanceCharacteristicsDictionary fieldAppearance1 = new PDAppearanceCharacteristicsDictionary(new COSDictionary());
        fieldAppearance1.setBorderColour(new PDColor(new float[] { 0, 1, 0 }, PDDeviceRGB.INSTANCE));
        fieldAppearance1.setBackground(new PDColor(new float[] { 1, 1, 0 }, PDDeviceRGB.INSTANCE));
        widget1.setAppearanceCharacteristics(fieldAppearance1);
        // set red border and green background for 2nd widget
        // if you prefer defaults, just delete this code block
        PDAppearanceCharacteristicsDictionary fieldAppearance2 = new PDAppearanceCharacteristicsDictionary(new COSDictionary());
        fieldAppearance2.setBorderColour(new PDColor(new float[] { 1, 0, 0 }, PDDeviceRGB.INSTANCE));
        fieldAppearance2.setBackground(new PDColor(new float[] { 0, 1, 0 }, PDDeviceRGB.INSTANCE));
        widget2.setAppearanceCharacteristics(fieldAppearance2);
        List<PDAnnotationWidget> widgets = new ArrayList<>();
        widgets.add(widget1);
        widgets.add(widget2);
        textBox.setWidgets(widgets);
        // make sure the annotations are visible on screen and paper
        widget1.setPrinted(true);
        widget2.setPrinted(true);
        // Add the annotations to the pages
        page1.getAnnotations().add(widget1);
        page2.getAnnotations().add(widget2);
        // set the field value
        textBox.setValue("Sample field");
        document.save("MultiWidgetsForm.pdf");
    }
}
Also used : PDFont(org.apache.pdfbox.pdmodel.font.PDFont) PDAppearanceCharacteristicsDictionary(org.apache.pdfbox.pdmodel.interactive.annotation.PDAppearanceCharacteristicsDictionary) PDPage(org.apache.pdfbox.pdmodel.PDPage) COSDictionary(org.apache.pdfbox.cos.COSDictionary) ArrayList(java.util.ArrayList) PDResources(org.apache.pdfbox.pdmodel.PDResources) PDAcroForm(org.apache.pdfbox.pdmodel.interactive.form.PDAcroForm) PDColor(org.apache.pdfbox.pdmodel.graphics.color.PDColor) PDDocument(org.apache.pdfbox.pdmodel.PDDocument) PDTextField(org.apache.pdfbox.pdmodel.interactive.form.PDTextField) PDAnnotationWidget(org.apache.pdfbox.pdmodel.interactive.annotation.PDAnnotationWidget) PDRectangle(org.apache.pdfbox.pdmodel.common.PDRectangle)

Example 3 with PDAppearanceCharacteristicsDictionary

use of org.apache.pdfbox.pdmodel.interactive.annotation.PDAppearanceCharacteristicsDictionary in project pdfbox by apache.

the class CreateSimpleForm method main.

public static void main(String[] args) throws IOException {
    // Create a new document with an empty page.
    try (PDDocument document = new PDDocument()) {
        PDPage page = new PDPage(PDRectangle.A4);
        document.addPage(page);
        // Adobe Acrobat uses Helvetica as a default font and
        // stores that under the name '/Helv' in the resources dictionary
        PDFont font = PDType1Font.HELVETICA;
        PDResources resources = new PDResources();
        resources.put(COSName.getPDFName("Helv"), font);
        // Add a new AcroForm and add that to the document
        PDAcroForm acroForm = new PDAcroForm(document);
        document.getDocumentCatalog().setAcroForm(acroForm);
        // Add and set the resources and default appearance at the form level
        acroForm.setDefaultResources(resources);
        // Acrobat sets the font size on the form level to be
        // auto sized as default. This is done by setting the font size to '0'
        String defaultAppearanceString = "/Helv 0 Tf 0 g";
        acroForm.setDefaultAppearance(defaultAppearanceString);
        // Add a form field to the form.
        PDTextField textBox = new PDTextField(acroForm);
        textBox.setPartialName("SampleField");
        // Acrobat sets the font size to 12 as default
        // This is done by setting the font size to '12' on the
        // field level.
        // The text color is set to blue in this example.
        // To use black, replace "0 0 1 rg" with "0 0 0 rg" or "0 g".
        defaultAppearanceString = "/Helv 12 Tf 0 0 1 rg";
        textBox.setDefaultAppearance(defaultAppearanceString);
        // add the field to the acroform
        acroForm.getFields().add(textBox);
        // Specify the widget annotation associated with the field
        PDAnnotationWidget widget = textBox.getWidgets().get(0);
        PDRectangle rect = new PDRectangle(50, 750, 200, 50);
        widget.setRectangle(rect);
        widget.setPage(page);
        // set green border and yellow background
        // if you prefer defaults, just delete this code block
        PDAppearanceCharacteristicsDictionary fieldAppearance = new PDAppearanceCharacteristicsDictionary(new COSDictionary());
        fieldAppearance.setBorderColour(new PDColor(new float[] { 0, 1, 0 }, PDDeviceRGB.INSTANCE));
        fieldAppearance.setBackground(new PDColor(new float[] { 1, 1, 0 }, PDDeviceRGB.INSTANCE));
        widget.setAppearanceCharacteristics(fieldAppearance);
        // make sure the widget annotation is visible on screen and paper
        widget.setPrinted(true);
        // Add the widget annotation to the page
        page.getAnnotations().add(widget);
        // set the field value
        textBox.setValue("Sample field");
        document.save("target/SimpleForm.pdf");
    }
}
Also used : PDFont(org.apache.pdfbox.pdmodel.font.PDFont) PDAppearanceCharacteristicsDictionary(org.apache.pdfbox.pdmodel.interactive.annotation.PDAppearanceCharacteristicsDictionary) PDPage(org.apache.pdfbox.pdmodel.PDPage) COSDictionary(org.apache.pdfbox.cos.COSDictionary) PDDocument(org.apache.pdfbox.pdmodel.PDDocument) PDTextField(org.apache.pdfbox.pdmodel.interactive.form.PDTextField) PDResources(org.apache.pdfbox.pdmodel.PDResources) PDAnnotationWidget(org.apache.pdfbox.pdmodel.interactive.annotation.PDAnnotationWidget) PDRectangle(org.apache.pdfbox.pdmodel.common.PDRectangle) PDAcroForm(org.apache.pdfbox.pdmodel.interactive.form.PDAcroForm) PDColor(org.apache.pdfbox.pdmodel.graphics.color.PDColor)

Example 4 with PDAppearanceCharacteristicsDictionary

use of org.apache.pdfbox.pdmodel.interactive.annotation.PDAppearanceCharacteristicsDictionary in project pdfbox by apache.

the class AppearanceGeneratorHelper method initializeAppearanceContent.

/**
 * Initialize the content of the appearance stream.
 *
 * Get settings like border style, border width and colors to be used to draw a rectangle and background color
 * around the widget
 *
 * @param widget the field widget
 * @param appearanceStream the appearance stream to be used
 * @throws IOException in case we can't write to the appearance stream
 */
private void initializeAppearanceContent(PDAnnotationWidget widget, PDAppearanceStream appearanceStream) throws IOException {
    try (ByteArrayOutputStream output = new ByteArrayOutputStream();
        PDAppearanceContentStream contents = new PDAppearanceContentStream(appearanceStream, output)) {
        PDAppearanceCharacteristicsDictionary appearanceCharacteristics = widget.getAppearanceCharacteristics();
        // TODO: support more entries like patterns, etc.
        if (appearanceCharacteristics != null) {
            PDColor backgroundColour = appearanceCharacteristics.getBackground();
            if (backgroundColour != null) {
                contents.setNonStrokingColor(backgroundColour);
                PDRectangle bbox = resolveBoundingBox(widget, appearanceStream);
                contents.addRect(bbox.getLowerLeftX(), bbox.getLowerLeftY(), bbox.getWidth(), bbox.getHeight());
                contents.fill();
            }
            float lineWidth = 0f;
            PDColor borderColour = appearanceCharacteristics.getBorderColour();
            if (borderColour != null) {
                contents.setStrokingColor(borderColour);
                lineWidth = 1f;
            }
            PDBorderStyleDictionary borderStyle = widget.getBorderStyle();
            if (borderStyle != null && borderStyle.getWidth() > 0) {
                lineWidth = borderStyle.getWidth();
            }
            if (lineWidth > 0 && borderColour != null) {
                if (Float.compare(lineWidth, 1) != 0) {
                    contents.setLineWidth(lineWidth);
                }
                PDRectangle bbox = resolveBoundingBox(widget, appearanceStream);
                PDRectangle clipRect = applyPadding(bbox, Math.max(DEFAULT_PADDING, lineWidth / 2));
                contents.addRect(clipRect.getLowerLeftX(), clipRect.getLowerLeftY(), clipRect.getWidth(), clipRect.getHeight());
                contents.closeAndStroke();
            }
        }
        writeToStream(output.toByteArray(), appearanceStream);
    }
}
Also used : PDAppearanceCharacteristicsDictionary(org.apache.pdfbox.pdmodel.interactive.annotation.PDAppearanceCharacteristicsDictionary) PDAppearanceContentStream(org.apache.pdfbox.pdmodel.interactive.annotation.PDAppearanceContentStream) PDRectangle(org.apache.pdfbox.pdmodel.common.PDRectangle) ByteArrayOutputStream(java.io.ByteArrayOutputStream) PDBorderStyleDictionary(org.apache.pdfbox.pdmodel.interactive.annotation.PDBorderStyleDictionary) PDColor(org.apache.pdfbox.pdmodel.graphics.color.PDColor)

Aggregations

PDColor (org.apache.pdfbox.pdmodel.graphics.color.PDColor)4 PDAppearanceCharacteristicsDictionary (org.apache.pdfbox.pdmodel.interactive.annotation.PDAppearanceCharacteristicsDictionary)4 COSDictionary (org.apache.pdfbox.cos.COSDictionary)3 PDDocument (org.apache.pdfbox.pdmodel.PDDocument)3 PDRectangle (org.apache.pdfbox.pdmodel.common.PDRectangle)3 PDAnnotationWidget (org.apache.pdfbox.pdmodel.interactive.annotation.PDAnnotationWidget)3 PDAcroForm (org.apache.pdfbox.pdmodel.interactive.form.PDAcroForm)3 PDPage (org.apache.pdfbox.pdmodel.PDPage)2 PDResources (org.apache.pdfbox.pdmodel.PDResources)2 PDFont (org.apache.pdfbox.pdmodel.font.PDFont)2 PDTextField (org.apache.pdfbox.pdmodel.interactive.form.PDTextField)2 ByteArrayOutputStream (java.io.ByteArrayOutputStream)1 File (java.io.File)1 ArrayList (java.util.ArrayList)1 PDAppearanceContentStream (org.apache.pdfbox.pdmodel.interactive.annotation.PDAppearanceContentStream)1 PDBorderStyleDictionary (org.apache.pdfbox.pdmodel.interactive.annotation.PDBorderStyleDictionary)1 PDField (org.apache.pdfbox.pdmodel.interactive.form.PDField)1