gpt4 book ai didi

java - 如何使用 iText 在 pdf 上附加签名?

转载 作者:行者123 更新时间:2023-12-02 09:46:04 27 4
gpt4 key购买 nike

我的实现适用于简单的情况,但不适用于复杂的情况。原始的pdf显示在中央 Pane 中。我有一个侧 Pane ,其中有一些矩形,例如“名称”,“签名”,“时间戳”,可以在pdf上拖动。使用 jQuery 可拖动和可放置,我能够捕获放置点的坐标并将其存储在数据库中。使用 iText 的 PdfStamper 我得到 PdfContentByte 并将签名图像添加到其中。如果 pdf 文档是同质的,即所有页面均为 Letter 尺寸,则该方法有效。但在页面是横向和纵向混合的情况下会失败。签名嵌入在横向页面的正确位置,但未嵌入纵向页面的正确位置。如果所有页面都是横向的那就没有问题。同样,如果所有页面都是纵向的,那么也没有问题。

I understand that images are measured in pixels whereas pdf dimensions are in points. So I have converted image co-ordinates in pixel to point (0.75). Also taken in account that for images origin is at top left
corner, whereas in pdf origin is at bottom left corner, for image y axis is south-wards, but for pdf y axis is north-wards.

如何去做?

编辑:

Here is the code: DocumentField is a POJO which has properties for signature coordinates

public void writeDocumentFields(List<DocumentField> documentField,File file, File outputFile) throws IOException    {
try {
PdfReader pdfReader = new PdfReader(file.getAbsolutePath());
PdfReader.unethicalreading=true;
PdfStamper pdfStamper = new PdfStamper(pdfReader,new FileOutputStream(outputFile));
for(DocumentField df:documentField){
int pageNumber = df.getPageNumber()+1;
PdfContentByte content = pdfStamper.getOverContent(pageNumber);
Rectangle cropBox = pdfReader.getCropBox(pageNumber);
if(pdfReader.getPageRotation(pageNumber) > 0) {
float width = cropBox.getRight();
cropBox.setRight(cropBox.getHeight());
cropBox.setTop(width);
}

if(df.getFieldType().equals("image")){
df.setxPosition(
Float.parseFloat(df.getLeft())*
CONVERSION_FACTOR_FROM_PIXEL_TO_POINT);
df.setyPosition(Float.parseFloat(df.getTop())*CONVERSION_FACTOR_FROM_PIXEL_TO_POINT);
float x = cropBox.getLeft() + df.getxPosition();
float y = cropBox.getTop() - df.getyPosition();
Image image = Image.getInstance(df.getFieldValue());
image.scaleToFit(150*CONVERSION_FACTOR_FROM_PIXEL_TO_POINT, 50*CONVERSION_FACTOR_FROM_PIXEL_TO_POINT);
image.setAbsolutePosition(x, y - 36f);
content.addImage(image);
}else if(df.getFieldType().equals("checkbox")){
//...
}else{
//...
}
}
pdfStamper.close();
} catch (IOException e) {
e.printStackTrace();
} catch (DocumentException e) {
e.printStackTrace();
}
}

PDF with both Landscape & Portrait, I am always signing at same place

Another Example mixed pdf

第二次编辑

这个第二个示例 pdf 有 3 页,尺寸为第一页 682.04 x 297.12,第二页 610.52 x 788.6,第三页几乎与第二页 611 X 789.08 相同。首先我尝试将签名放在每页的左上角。这成功了。然后我尝试将签名放在每个页面的左下角。这没有成功。我存储拖动到数据库的图像的坐标,值是 (0, 350.484)、(0,352.328) 和 (7, 301.688)。第三个值的x坐标应该是0,我们可以忽略这个小偏差。现在,对于第一页,签名已嵌入到正确的位置。但对于第二页和第三页,它们几乎在 y 方向的页面中间,x 可以,即 0。第 1 页的图像坐标为 (0.0,226.21698),第 2 页的图像坐标为 (89.04) ,524.354),第3页的图像坐标为(94.29,562.814)。

第三次编辑捕获可放置签名小部件的放置点坐标的 jQuery 代码如下:

 $(".drop").droppable({
accept: '.dragSigners',
activeClass: "drop-area",

drop: function(e, ui) {
var off = $(this).offset();
leftPosition = ui.offset.left - off.left;
topPosition = ui.offset.top - off.top;
}
});

最佳答案

在第一个示例文件上绘制图像

我尝试像这样重现该问题:

float CONVERSION_FACTOR_FROM_PIXEL_TO_POINT = 0.75f;
List<DocumentField> documentField = new ArrayList<>();

try ( InputStream resource = getClass().getResourceAsStream("Mix PDF.pdf");
InputStream imageResource = getClass().getResourceAsStream("Signature.png") ) {
byte[] imageBytes = StreamUtil.inputStreamToArray(imageResource);
documentField.add(new DocumentField(0, "70", "600", "image", imageBytes));
documentField.add(new DocumentField(1, "70", "600", "image", imageBytes));
documentField.add(new DocumentField(2, "70", "600", "image", imageBytes));
documentField.add(new DocumentField(3, "70", "600", "image", imageBytes));
documentField.add(new DocumentField(4, "70", "600", "image", imageBytes));

PdfReader pdfReader = new PdfReader(resource);
PdfReader.unethicalreading=true;
PdfStamper pdfStamper = new PdfStamper(pdfReader, new FileOutputStream(new File(RESULT_FOLDER, "StampImagesLikeSubhenduMahanta.pdf")));
for(DocumentField df:documentField){
int pageNumber = df.getPageNumber()+1;
PdfContentByte content = pdfStamper.getOverContent(pageNumber);
Rectangle cropBox = pdfReader.getCropBox(pageNumber);
if(pdfReader.getPageRotation(pageNumber) > 0) {
float width = cropBox.getRight();
cropBox.setRight(cropBox.getHeight());
cropBox.setTop(width);
}

if(df.getFieldType().equals("image")){
df.setxPosition(
Float.parseFloat(df.getLeft())*
CONVERSION_FACTOR_FROM_PIXEL_TO_POINT);
df.setyPosition(Float.parseFloat(df.getTop())*CONVERSION_FACTOR_FROM_PIXEL_TO_POINT);
float x = cropBox.getLeft() + df.getxPosition();
float y = cropBox.getTop() - df.getyPosition();
Image image = Image.getInstance(df.getFieldValue());
image.scaleToFit(150*CONVERSION_FACTOR_FROM_PIXEL_TO_POINT, 50*CONVERSION_FACTOR_FROM_PIXEL_TO_POINT);
image.setAbsolutePosition(x, y - 36f);
content.addImage(image);
}else if(df.getFieldType().equals("checkbox")){
//...
}else{
//...
}
}
pdfStamper.close();
}

( StampImages 测试 testStampImagesLikeSubhenduMahanta )

使用这个 POJO 类

class DocumentField {
DocumentField(int pageNumber, String left, String top, String fieldType, byte[] fieldValue) {
this.pageNumber = pageNumber;
this.left = left;
this.top = top;
this.fieldType = fieldType;
this.fieldValue = fieldValue;
}

int getPageNumber() { return pageNumber; }
final int pageNumber;
String getLeft() { return left; }
final String left;
String getTop() { return top; }
final String top;
String getFieldType() { return fieldType; }
final String fieldType;
byte[] getFieldValue() { return fieldValue; }
final byte[] fieldValue;
float getxPosition() { return xPosition; }
void setxPosition(float xPosition) { this.xPosition = xPosition; }
float xPosition = 0;
float getyPosition() { return yPosition; }
void setyPosition(float yPosition) { this.yPosition = yPosition; }
float yPosition = 0;
}

(StampImages辅助类)

您在评论中说:

I am signing at same place in all 5 pages.

因此,我使用了70最高600对于所有人DocumentField实例

documentField.add(new DocumentField(0, "70", "600", "image", imageBytes));
documentField.add(new DocumentField(1, "70", "600", "image", imageBytes));
documentField.add(new DocumentField(2, "70", "600", "image", imageBytes));
documentField.add(new DocumentField(3, "70", "600", "image", imageBytes));
documentField.add(new DocumentField(4, "70", "600", "image", imageBytes));

但结果看起来像这样:

screenshot

如您所见,签名图像位于人们期望的位置。

因此,我无法重现您的问题。

您应该检查所有 DocumentField 的值实例并检查其正确性。

分析第二个示例文件的数据库值

This 2nd example pdf has 3 pages, dimensions are for 1st page 682.04 x 297.12, 2nd page 610.52 x 788.6, 3rd page is almost same as 2nd page 611 X 789.08. [...]

Then I tried to place the signature at the bottom left corner of each page.This did not succeed.I am storing the co-ordinates of image dragged to database & the values are (0, 350.484),(0,352.328) and (7, 301.688). [...]

Now for 1st page the signature gets embedded at right place. But for 2nd & 3rd page they are almost the middle of the page in y direction

考虑到第二页和第三页的高度是第一页的两倍以上,在所有页面(第 1 页:ca. 350,第 2 页:约 350,第 3 页:约 300)可能具有完全不同的视觉效果:这些数据库值显然会将签名放在第二页和第三页的中间高度。

所以数据库中的值根本没有意义。请检查生成和存储这些坐标的进程。

关于java - 如何使用 iText 在 pdf 上附加签名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56650679/

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