Example usage for org.apache.pdfbox.cos COSName DR

List of usage examples for org.apache.pdfbox.cos COSName DR

Introduction

In this page you can find the example usage for org.apache.pdfbox.cos COSName DR.

Prototype

COSName DR

To view the source code for org.apache.pdfbox.cos COSName DR.

Click Source Link

Usage

From source file:at.gv.egiz.pdfas.lib.impl.stamping.pdfbox.PDFAsVisualSignatureBuilder.java

License:EUPL

public void createWidgetDictionary(PDSignatureField signatureField, PDResources holderFormResources)
        throws IOException {

    COSDictionary widgetDict = signatureField.getWidget().getDictionary();
    widgetDict.setNeedToBeUpdate(true);/*from w w w .jav  a  2s. c  om*/
    widgetDict.setItem(COSName.DR, holderFormResources.getCOSObject());

    getStructure().setWidgetDictionary(widgetDict);
    logger.debug("WidgetDictionary has been created");
}

From source file:at.gv.egiz.pdfas.lib.impl.stamping.pdfbox2.PDFAsVisualSignatureBuilder.java

License:EUPL

public void createWidgetDictionary(PDSignatureField signatureField, PDResources holderFormResources)
        throws IOException {

    COSDictionary widgetDict = signatureField.getWidgets().get(0).getCOSObject();//TODO: pdfbox2 - is this right was getWidget before?
    widgetDict.setNeedToBeUpdated(true);
    widgetDict.setItem(COSName.DR, holderFormResources.getCOSObject());

    getStructure().setWidgetDictionary(widgetDict);
    logger.debug("WidgetDictionary has been crated");
}