使用Aspose Java PDF有没有人知道如何将PDF签名字段添加到现有模板?谢谢!
答案 0 :(得分:1)
@Shaun,为了添加签名字段,请尝试使用以下代码段。
//Open document
Document pdfDocument = new Document("Input.pdf");
//Create a field
SignatureField signatureField = new SignatureField(pdfDocument.getPages().get_Item(1), new com.aspose.pdf.Rectangle(100, 200, 300, 300));
signatureField.setPartialName("signature1");
//Add field to the document
pdfDocument.getForm().add(signatureField, 1);
//Save modified PDF
pdfDocument.save("Output.pdf");
但是,如果您需要在现有PDF文件中添加数字签名,请按照Add Digital Signature to PDF File
上指定的说明进行操作我的名字是Nayyer,我在Aspose担任开发人员传播者。