gpt4 book ai didi

java - newLine() 在 apache pdfBox 中占据多少高度?

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

我想在生成 pdf 时跟踪 y 坐标。这就是我目前的做法。

    PDRectangle mediabox = page.findMediaBox();
float margin = 15;
float y = mediabox.getUpperRightY() - margin;
float fontSize = 10f;
PDType1Font font = PDType1Font.HELVETICA;

contentStream.showText("Hello");
y = y - fontSize; //decrease y-coordinate
contentStream.newLine(); //go to new line
contentStream.showText("World!");
y = y - fontSize; //decrease y-coordinate

新行的高度是多少,以便我可以精确地跟踪 y 坐标?

我需要这样的东西。

    contentStream.showText("Hello");
y = y - fontSize; //decrease y-coordinate
contentStream.newLine(); //go to new line
y = y - newLineSize; <---- require the height of new line.
contentStream.showText("World!");
y = y - fontSize; //decrease y-coordinate

谢谢。

最佳答案

newLine() 创建的运算符开始一个新行,从当前行开始并从 y 坐标中减去 leading ,您可以使用 setLeading 设置的值。

关于java - newLine() 在 apache pdfBox 中占据多少高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47822226/

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