iText Maximum Font Size

▼魔方 西西 提交于 2019-12-23 19:01:36

问题


I'm using a fixed cell height to create a table. If the font size is too large, the text is not visible in the table.

Is there a built-in function in iText that automatically reduces the font size to the maximum possible size, or do I have to implement this by myself?


回答1:


Automatic font size is only possible in the context of AcroForm text fields. When you define the font size of a text field as 0, then a font size is chosen that fits the rectangle. In the case of a fixed cell height in a table, you are responsible to make sure that the text fits.

If you're concerned about the height, please take a look at the FitTextInRectangle example:

BaseFont bf = BaseFont.createFont();
int textHeightInGlyphSpace = bf.getAscent(text) - bf.getDescent(text);
float fontSize = 1000f * fixedHeight / textHeightInGlyphSpace;

This example was written in answer to Correct text position center in rectangle iText

If you're concerned about the width, then you need to use the getWidthPoint() method as explained here: How to calculate the string width in iText?

BaseFont bf = BaseFont.createFont();
float width = bf.getWidthPoint("My text", myFontSize);

You'll need to make sure that width doesn't exceed the width of the cell. To achieve this, you'll need to adjust myFontSize.

See my answer to this question: How to choose the optimal size for a font?



来源:https://stackoverflow.com/questions/33609447/itext-maximum-font-size

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!