gpt4 book ai didi

java - PDFBox 的文本渲染模式

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

我正在尝试使用 PDFBox 应用“文本渲染模式不可见”。我编写了这段代码,但我不知道如何继续,甚至不知道如何调用处理函数以将文本设置在文档中不可见。任何答复表示赞赏。

    public class Test1 extends OperatorProcessor{
private static final String src="...";
private static PDFStreamEngine pp;
private static PDPageContentStream content;
private static PDType1Font font;
public static void CreatePdf(String src) throws IOException, COSVisitorException{
PDRectangle rec= new PDRectangle(400,400);
PDDocument document= null;
document = new PDDocument();
PDPage page = new PDPage(rec);
document.addPage(page);
PDDocumentInformation info=document.getDocumentInformation();
info.setAuthor("PdfBox");
info.setCreator("Pdf");
info.setSubject("Stéganographie");
info.setTitle("Stéganographie dans les documents PDF");
info.setKeywords("Stéganographie, pdf");
content= new PDPageContentStream(document, page);
pp=new PDFStreamEngine();
font= PDType1Font.HELVETICA;
String texte="hello";
content.beginText();
content.setFont(font, 12);
content.moveTextPositionByAmount(15, 385);
content.drawString(texte);
content.endText();
content.close();
document.save("doc.pdf");
document.close();
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) throws IOException, COSVisitorException {
// TODO code application logic here
Test1 tes= new Test1();
tes.CreatePdf(src);
}
@Override
public void process(PDFOperator pdfo, List<COSBase> list) throws IOException {
COSNumber mode = (COSNumber)list.get(0);
pp.getGraphicsState().getTextState().setRenderingMode(mode.intValue());
}
}

最诚挚的问候,李斯特。

最佳答案

查看 http://pdfbox.apache.org/apidocs/ 处的 PDPageContentStream 文档时,我感觉没有明确的方法(我可能是错的,因为我不熟悉这个产品)。

有一个appendRawCommands通过,这似乎是一个很好的逃避。我希望你会做这样的事情(未经测试):

content.beginText();
content.setFont(font, 12);
content.moveTextPositionByAmount(15, 385);
content.appendRawCommands("3 Tr ");
content.drawString(texte);
content.endText();

关于java - PDFBox 的文本渲染模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17788455/

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