将新的AcroForm字段添加到PDF

时间:2014-11-29 19:45:33

标签: pdf coldfusion itext

我使用iText将数据填充到PDF中的现有AcroForm字段中。

我现在正在寻找将新的AcroForm字段添加到PDF的解决方案。 iText可以实现吗?如果是这样,我该怎么做?

1 个答案:

答案 0 :(得分:2)

official documentation中记录了这一点,更具体地说,在SubmitForm示例中。使用iText等工具时,应首先阅读官方文档; - )

无论如何,我已经给你写了一个名为AddField的简单例子。它在new Rectangle(36, 700, 72, 730)定义的特定位置添加了一个按钮字段。

public void manipulatePdf(String src, String dest) throws DocumentException, IOException {
    PdfReader reader = new PdfReader(src);
    PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(dest));
    PushbuttonField button = new PushbuttonField(
        stamper.getWriter(), new Rectangle(36, 700, 72, 730), "post");
    button.setText("POST");
    button.setBackgroundColor(new GrayColor(0.7f));
    button.setVisibility(PushbuttonField.VISIBLE_BUT_DOES_NOT_PRINT);
    PdfFormField submit = button.getField();
    submit.setAction(PdfAction.createSubmitForm(
        "http://itextpdf.com:8180/book/request", null,
        PdfAction.SUBMIT_HTML_FORMAT | PdfAction.SUBMIT_COORDINATES));
    stamper.addAnnotation(submit, 1);
    stamper.close();
}

}

如您所见,您需要创建一个PdfFormField对象(使用辅助类,例如PushbuttonFieldTextField,...),然后使用PdfStamper& #39; s addAnnotation()方法将字段添加到特定页面。