gpt4 book ai didi

java - 如何在 Apache PDFBox 中呈现彩色文本

转载 作者:行者123 更新时间:2023-12-04 08:07:24 26 4
gpt4 key购买 nike

是的,这似乎是个奇怪的问题,但我无法在 PDFBox 中呈现彩色文本。

通常生成文本的代码如下所示:

//create some document and page...
PDDocument document = new PDDocument();
PDPage page = new PDPage(PDRectangle.A4);

//defined some font
PDFont helveticaRegular = PDType1Font.HELVETICA;

//content stream for writing the text
PDPageContentStream contentStream = new PDPageContentStream(document, page);

contentStream.beginText();
contentStream.setFont(helveticaRegular, 16);
contentStream.setStrokingColor(1f,0.5f,0.2f);
contentStream.newLineAtOffset(64, page.getMediaBox().getUpperRightY() - 64);
contentStream.showText("The hopefully colored text");
contentStream.endText();

//closing the stream
contentStream.close();

[...] //code for saving and closing the document. Nothing special

有趣的是,setStrokingColor 是唯一接受流中颜色的方法。所以我认为这是在 PDFBox 中给某些东西上色的方法。

但是:我没有为文本添加任何颜色。所以我想这是一种用于其他类型内容的方法。

有人知道如何在 PDFBox 中实现彩色文本吗?

最佳答案

你用

contentStream.setStrokingColor(1f,0.5f,0.2f);

但在 PDF 中,默认情况下文本不是通过描边路径绘制的,而是通过填充路径绘制的。因此,你应该尝试

contentStream.setNonStrokingColor(1f,0.5f,0.2f);

相反。

关于java - 如何在 Apache PDFBox 中呈现彩色文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66157259/

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