gpt4 book ai didi

java - iText5 PDF 内容在页脚上被覆盖

转载 作者:行者123 更新时间:2023-12-02 03:23:42 26 4
gpt4 key购买 nike

我正在使用 iText5 和 Java 来创建 pdf 并将文档创建为

document = new Document(new Rectangle(1150f, 1150f));

我的 pdf 内容在页脚(这是一个图像)上被覆盖。

页脚代码:

public void onEndPage(PdfWriter writer, Document document) {    
document.newPage();
try {
ColumnText.showTextAligned(writer.getDirectContent(), Element.ALIGN_CENTER, new Phrase(String.format("Page %d", writer.getPageNumber())), (document.left() + document.right())/2,document.bottom()-18,0);
Image image = Image.getInstance(PdfHeaderFooter.class.getResource("/static/images/SampleFooter.png"));
image.scaleAbsolute(1100f, 75f);// image width,height
image.setAbsolutePosition(30, 40);
document.add(image);
}
catch(DocumentException de) {
throw new ExceptionConverter(de);
} catch (MalformedURLException e) {
logger.error(ExceptionUtils.getStackTrace(e));
} catch (IOException e) {
logger.error(ExceptionUtils.getStackTrace(e));
}
}

此外,建议进行一些搜索 margin solution 。设置边距,但我无法找到设置边距的确切位置或任何其他解决方案。

请帮忙,当内容超出 pdf 区域且未重叠在页脚图像上时,我应该如何创建新页面。

最佳答案

您的代码中存在多个问题。

newPage()onEndPage()

期间

事件回调onEndPage()在页面更改期间被调用;因此,在该方法中调用 document.newPage() 可能是危险的,至少是毫无意义的。

document.addonEndPage()

期间

正如 iText 的文档以及 stackoverflow 上的答案和评论中经常提到的那样,您不应在 onEndPage() 期间使用 document.add

您可以绘制直接内容 (PdfWriter.getDirectContent()) 或背景内容 (PdfWriter.getDirectContentUnder())。

坐标

您使用以下方法创建文档:

document = new Document(new Rectangle(1150f, 1150f));

此构造函数应用 36 个单位的默认边距:

public Document(Rectangle pageSize) {
this(pageSize, 36, 36, 36, 36);
}

因此,您的内容将被写入 36 < x < 1114 和 36 < y < 1114 的矩形中。

现在您可以像这样添加图像

image.scaleAbsolute(1100f, 75f);// image width,height
image.setAbsolutePosition(30, 40);

图像位置是图像的左下角。因此,您打算在 30 < x < 1130 和 40 < y < 115 的矩形中绘制图像。

因此,图像显然会与部分内容重叠。要么向下移动图像,要么使用具有足够大底部边距的显式边距。

关于java - iText5 PDF 内容在页脚上被覆盖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39275342/

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