我希望在生成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
谢谢。
答案 0 :(得分:1)
由newLine()
创建的运算符会从当前行的开头开始一个新行,并从 y 坐标中减去行距,您可以使用一个值使用setLeading
设置。