2

在我的一个要求中,我想在我的文本元素呈现在页面上之前获得它的宽度。

在 iText 版本 5 中,应用的方式是 (new Chunk("Test Text", SomeFont)).GetWidthPoint()

但在第 7 版中,我找不到与此匹配的任何内容。我试过了:

(new Paragraph("Some Text")).GetWidth(),但这会返回 null

对此的任何帮助都将是非常可观的。

提前致谢!!

4

1 回答 1

0

一种选择是像这样查询有问题的字体:

String text = ...;
float fontSize = ...;
PdfFont font = ...;
GlyphLine glyphLine = font.createGlyphLine(text);

int width = 0;
for (int i = 0; i < glyphLine.size(); i++)
{
    Glyph glyph = glyphLine.get(i);
    width += glyph.getWidth();
}

float userSpaceWidth = width * fontSize / 1000.0f;

System.out.printf("The width of '%s' is %s text space units.\n", text, width);
System.out.printf("For a font size %s, therefore, this is %s unscaled user space units.\n", fontSize, userSpaceWidth);

确定TextWidth.java

于 2016-09-20T21:35:03.933 回答