gpt4 book ai didi

pdf - 使用 iText 时某些 pdf 文件水印不显示

转载 作者:行者123 更新时间:2023-12-01 14:18:45 25 4
gpt4 key购买 nike

我们公司使用 iText 在某些 pdf 表单上标记一些水印文本(不是图像)。我注意到 95% 的表格正确显示了水印,大约 5% 的表格没有。我测试了,复制了2个原始pdf文件,一个被标记为ok,另一个不ok,然后通过一个小程序测试,结果相同:一个被标记,另一个没有。然后我尝试了最新版本的 iText jar 文件(版本 5.0.6),同样的事情。我检查了 pdf 文件属性、安全设置等,似乎没有任何提示。结果文件确实改变了大小,并在执行程序后标记为“由 iText 版本更改......”。

这里是示例水印代码(使用itext jar 2.1.7版本),注意传入的topText, mainText, bottonText参数,让3行水印在pdf中显示为水印。

感谢任何帮助!!

public class WatermarkGenerator {

private static int TEXT_TILT_ANGLE = 25;
private static Color MEDIUM_GRAY = new Color(160, 160, 160);
private static int SUPPORT_FONT_SIZE = 42;
private static int PRIMARY_FONT_SIZE = 54;

public static void addWaterMark(InputStream pdfInputStream,
OutputStream outputStream, String topText,
String mainText, String bottomText) throws Exception {
PdfReader reader = new PdfReader(pdfInputStream);
int numPages = reader.getNumberOfPages();

// Create a stamper that will copy the document to the output
// stream.
PdfStamper stamp = new PdfStamper(reader, outputStream);
int page=1;

BaseFont baseFont =
BaseFont.createFont(BaseFont.HELVETICA_BOLDOBLIQUE,
BaseFont.WINANSI, BaseFont.EMBEDDED);

float width;
float height;

while (page <= numPages) {
PdfContentByte cb = stamp.getOverContent(page);
height = reader.getPageSizeWithRotation(page).getHeight() / 2;
width = reader.getPageSizeWithRotation(page).getWidth() / 2;

cb = stamp.getUnderContent(page);
cb.saveState();
cb.setColorFill(MEDIUM_GRAY);

// Top Text
cb.beginText();
cb.setFontAndSize(baseFont, SUPPORT_FONT_SIZE);
cb.showTextAligned(Element.ALIGN_CENTER, topText, width,
height+PRIMARY_FONT_SIZE+16, TEXT_TILT_ANGLE);
cb.endText();

// Primary Text
cb.beginText();
cb.setFontAndSize(baseFont, PRIMARY_FONT_SIZE);
cb.showTextAligned(Element.ALIGN_CENTER, mainText, width,
height, TEXT_TILT_ANGLE);
cb.endText();

// Bottom Text
cb.beginText();
cb.setFontAndSize(baseFont, SUPPORT_FONT_SIZE);
cb.showTextAligned(Element.ALIGN_CENTER, bottomText, width,
height-PRIMARY_FONT_SIZE-6, TEXT_TILT_ANGLE);
cb.endText();
cb.restoreState();

page++;
}

stamp.close();
}
}

最佳答案

我们通过更改 Adob​​e LifecycleSave 文件选项解决了问题。 File->Save->properties->Save as,然后看Save as type,默认是Acrobat 7.0.5 Dynamic PDF Form File,我们改为使用7.0.5 Static PDF Form File(其实静态的都行)。静态保存的文件没有这个水印消失的问题。感谢 Mark 指出了正确的方向。

关于pdf - 使用 iText 时某些 pdf 文件水印不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5278280/

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