gpt4 book ai didi

java - PDFBox - 打开并保存签名的 pdf 会使我的签名无效

转载 作者:行者123 更新时间:2023-11-30 07:57:18 25 4
gpt4 key购买 nike

我正在尝试学习使用 Apache 的 pdfBox 来处理工作中的数字签名文档。在测试期间,我创建了一个完全空的 pdf 文档。

然后我使用带证书的签名功能通过 Adob​​e 阅读器签署了文档。

我尝试在不做任何修改的情况下使用 pdfBox 打开、保存和关闭签名文件。但是,一旦我在 Adob​​e 中打开文件,文件就不再有效。

Adobe 告诉我:“此签名中包含的格式或信息存在错误(支持信息:SigDict/Contents 非法数据)”

因为我没有修改文件的内容,凭直觉应该没有任何问题,签名应该仍然有效,但事实并非如此,我不知道解决方案是什么(谷歌搜索没有结果)。

我如何创建文档:

@Test
public void createEmptyPDF() throws IOException {
String path = "path to file";
PDDocument document = new PDDocument();
PDPage page = new PDPage();
document.addPage(page);
document.save(path);
document.close();
}

然后我用 adobe 签名并通过它传递:

 @Test
public void copySignedDocument() throws IOException {
String path = "path to file";
File file = new File(path);
PDDocument document = PDDocument.load(file);
document.save(file);
document.close();

//just opening and saving the file invalidates the signatures
}

我真的不知道为什么这不起作用。任何帮助都会很棒!

编辑:

所以我做了一些挖掘,似乎更新现有的签名文档(添加注释或填写表格)尚未在 PDFBox 2.0.1 中实现,并且计划在 2.1 版中实现(但是尚未发布发布日期)指定的)。更多信息 herehere .

然而,似乎可以使用 IText 在签名文档上添加注释而不使用 PDFStamper 使签名无效,from this question

编辑 2:将图章添加到文档并增量保存的代码:

 @Test
public void stampSignedDocument() throws IOException {
File file = new File("path to file");
PDDocument document = PDDocument.load(file);
File image = new File("path to image to be added to annotation");
PDPage page = document.getPage(0);
List<PDAnnotation> annotations = page.getAnnotations();
PDImageXObject ximage = PDImageXObject.createFromFileByContent(image, document);

//stamp
PDAnnotationRubberStamp stamp = new PDAnnotationRubberStamp();
stamp.setName("testing rubber stamp");
stamp.setContents("this is a test");
stamp.setLocked(true);
stamp.setReadOnly(true);
stamp.setPrinted(true);

PDRectangle rectangle = createRectangle(100, 100, 100, 100, 100, 100);
PDFormXObject form = new PDFormXObject(document);
form.setResources(new PDResources());
form.setBBox(rectangle);
form.setFormType(1);

form.getResources().add(ximage);
PDAppearanceStream appearanceStream = new PDAppearanceStream(form.getCOSObject());
PDAppearanceDictionary appearance = new PDAppearanceDictionary(new COSDictionary());
appearance.setNormalAppearance(appearanceStream);
stamp.setAppearance(appearance);
stamp.setRectangle(rectangle);
PDPageContentStream stream = new PDPageContentStream(document, appearanceStream);
Matrix matrix = new Matrix(100, 0, 0, 100, 100, 100);
stream.drawImage(ximage, matrix);
stream.close();
//close and save
annotations.add(stamp);
page.getCOSObject().setNeedToBeUpdated(true);
OutputStream os = new FileOutputStream(file);
document.saveIncremental(os);
document.close();
os.close();
}

上面的代码并没有使我的签名无效,但没有保存我添加的注释。

按照建议,我已将添加的注释、页面和注释列表的 NeedToBeUpdated 标志设置为 true(我希望我做的最后一个正确):

    stamp.getCOSObject().setNeedToBeUpdated(true);
COSArrayList<PDAnnotation> list = (COSArrayList<PDAnnotation>) annotations;
COSArrayList.converterToCOSArray(list).setNeedToBeUpdated(true);
page.getCOSObject().setNeedToBeUpdated(true);
document.getDocumentCatalog().getCOSObject().setNeedToBeUpdated(true);

注释仍然没有保存,所以我显然遗漏了一些东西。

编辑 3:

这是我目前添加注解的方法:

    @Test
public void stampSignedDocument() throws IOException {
File file = new File(
"E:/projects/eSign/g2digitalsignature/G2DigitalSignatureParent/G2DigitalSignatureTest/src/test/resources/pdfBoxTest/empty.pdf");
PDDocument document = PDDocument.load(file);
File image = new File(
"E:/projects/eSign/g2digitalsignature/G2DigitalSignatureParent/G2DigitalSignatureTest/src/test/resources/pdfBoxTest/digitalSign.png");
PDPage page = document.getPage(0);
List<PDAnnotation> annotations = page.getAnnotations();
PDImageXObject ximage = PDImageXObject.createFromFileByContent(image, document);

//stamp
PDAnnotationRubberStamp stamp = new PDAnnotationRubberStamp();
stamp.setName("testing rubber stamp");
stamp.setContents("this is a test");
stamp.setLocked(true);
stamp.setReadOnly(true);
stamp.setPrinted(true);

PDRectangle rectangle = createRectangle(100, 100, 100, 100, 100, 100);
PDFormXObject form = new PDFormXObject(document);
form.setResources(new PDResources());
form.setBBox(rectangle);
form.setFormType(1);

form.getResources().getCOSObject().setNeedToBeUpdated(true);
form.getResources().add(ximage);
PDAppearanceStream appearanceStream = new PDAppearanceStream(form.getCOSObject());
PDAppearanceDictionary appearance = new PDAppearanceDictionary(new COSDictionary());
appearance.setNormalAppearance(appearanceStream);
stamp.setAppearance(appearance);
stamp.setRectangle(rectangle);
PDPageContentStream stream = new PDPageContentStream(document, appearanceStream);
Matrix matrix = new Matrix(100, 0, 0, 100, 100, 100);
stream.drawImage(ximage, matrix);
stream.close();
//close and save
annotations.add(stamp);

appearanceStream.getCOSObject().setNeedToBeUpdated(true);
appearance.getCOSObject().setNeedToBeUpdated(true);
rectangle.getCOSArray().setNeedToBeUpdated(true);
stamp.getCOSObject().setNeedToBeUpdated(true);
form.getCOSObject().setNeedToBeUpdated(true);
COSArrayList<PDAnnotation> list = (COSArrayList<PDAnnotation>) annotations;
COSArrayList.converterToCOSArray(list).setNeedToBeUpdated(true);
document.getPages().getCOSObject().setNeedToBeUpdated(true);
page.getCOSObject().setNeedToBeUpdated(true);
document.getDocumentCatalog().getCOSObject().setNeedToBeUpdated(true);

OutputStream os = new FileOutputStream(file);
document.saveIncremental(os);
document.close();
os.close();

}

当我在未签名的文档上使用它添加注释时,注释被添加并可见。但是,在签名文档上使用它时,注释不会出现。

我已经在 notepad++ 中打开了 pdf 文件,发现似乎已经添加了注释,因为我发现了这个以及与注释有关的其余代码:

<<
/Type /Annot
/Subtype /Stamp
/Name /testing#20rubber#20stamp
/Contents (this is a test)
/F 196
/AP 29 0 R
/Rect [100.0 100.0 200.0 200.0]
>>

但是当我在 adobe reader 中打开文档时它没有出现。也许这与外观流有关而不是注释本身?

最佳答案

问题是使用 PDDocument.save() 会创建一个新文档,从而使签名无效。

使用 PDDocument.saveIncremental(...) 不会使签名无效,但是它不会更新对文档的任何更改(例如注释或表单填写),它仅用于保存签名。

使用 PDFBox 2.0 还不能更新带有注释或表单填写的签名 PDF 文档,但一旦 PDFBox 2.1 推出就应该可以实现。

问题信息:herehere

然而,使用 IText 的 PDFStamper 解决了向签名文档添加注释而不会使签名无效的问题,如回答 here .

关于java - PDFBox - 打开并保存签名的 pdf 会使我的签名无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41467415/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com