iText Maximum Font Size

前端 未结 1 577
猫巷女王i
猫巷女王i 2021-01-21 06:28

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 automat

相关标签:
1条回答
  • 2021-01-21 06:56

    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?

    0 讨论(0)
提交回复
热议问题