最近在研究电子签章,想实现如下功能
A先再PDF里设置好空白域,发送给B,然后B拿到PDF后,在空白域签章。
但是不知道如何使用itext对PDF设置空白域,文档都是英文的也看不太明白,有没有大神了解的,给指点指点
最近在研究电子签章,想实现如下功能
A先再PDF里设置好空白域,发送给B,然后B拿到PDF后,在空白域签章。
但是不知道如何使用itext对PDF设置空白域,文档都是英文的也看不太明白,有没有大神了解的,给指点指点
使用免费版的Spire.PDF for Java (http://www.e-iceblue.cn/Introduce/Free-Spire-PDF-JAVA.html), 代码如下:
import java.awt.*;
import com.spire.pdf.fields.*;
public class AddFormFieldsToPdf {
public static void main(String[] args) throws Exception {
//创建PdfDocument对象
PdfDocument doc = new PdfDocument();
//添加页面
PdfPageBase page = doc.getPages().add();
//添加签名域
PdfSignatureField sgnField= new PdfSignatureField(page,"sgnField");
Rectangle2D.Float sgnBounds = new Rectangle2D.Float(0, 0, 150, 80);
sgnField.setBounds(sgnBounds);
doc.getForm().getFields().add(sgnField);
//保存文档
doc.saveToFile("AddFormField-1.pdf", FileFormat.PDF);
}
}