JavaFX字体大小从宽度

时间:2017-06-19 22:46:32

标签: java javafx fonts

我想根据宽度值计算字体大小。

//Custom Font
Font.loadFont(Fonts.class.getResourceAsStream("/font/bignood/bignoodletoo.ttf"), 10)
String text = "Hello World";
Double width = 100;

Similiar SO Question to Java AWT

Similar SO Question to Java AWT 2

编辑:用例

考虑一个包含文字"PLAY MONEY"¹的按钮。 现在我将文本翻译为PT_BR,现在调用"DINHEIRO FICTICIO"²。 如您所见,单词²大于单词¹,因此如果您设置相同的Font Size,那么您将在按钮内看到DINHEIRO FIC...

因此,此处的任务是获取width的{​​{1}}值,获取Button并应用text以适应{{1}内的全文每当我更改Font Size

1 个答案:

答案 0 :(得分:5)

下面是一个findFontSizeThatCanFit()方法(和演示),可用于此。

See it in action online

public class FxFontMetrics {
    public static void main(String[] args) {
        int maxWidth = 100;
        System.out.println("# Text -> Font size that can fit text under " + maxWidth + " pixels");
        Stream.of(
                "DINHEIRO FICTICIO",
                "Dinheiro ficticio",
                "PLAY MONEY",
                "Play money",
                "Devise factice qui compte pour du beurre")
                .forEach(text -> {
                    double size = findFontSizeThatCanFit(Font.font("dialog", 45), text, maxWidth);
                    System.out.println(text + " -> " + size);
                });
    }

    private static double findFontSizeThatCanFit(Font font, String s, int maxWidth) {
        double fontSize = font.getSize();
        double width = textWidth(font, s);
        if (width > maxWidth) {
            return fontSize * maxWidth / width;
        }
        return fontSize;
    }

    private static double textWidth(Font font, String s) {
        Text text = new Text(s);
        text.setFont(font);
        return text.getBoundsInLocal().getWidth();
    }
}

打印:

# Text -> Font size that can fit text under 100 pixels
DINHEIRO FICTICIO -> 10.475703324808185
Dinheiro ficticio -> 12.757739986295396
PLAY MONEY -> 15.587183195068118
Play money -> 17.152428810720266
Devise factice qui compte pour du beurre -> 4.795354500327807