从Google / Noto字体创建java.awt.Font

时间:2018-07-26 13:22:20

标签: java fonts awt chinese-locale

我的系统上安装了noto字体(https://www.google.com/get/noto/),但是当我尝试使用某些字体(繁体中文,简体中文)时,我只会得到一个空白:

Font notoCJKtcfont= new Font("Noto Sans CJK TC Black", Font.PLAIN, 14);
JFrame frame = new JFrame("Test font");
JLabel chineseLable = new JLabel("大家好。 你好嗎&23latinsymbolsδ");
chineseLable.setFont(notoCJKtcfont);
frame.add(chineseLable);
frame.pack();
frame.setVisible(true);

enter image description here

它与OTF格式和非拉丁符号有关吗?有什么方法可以使用这些字体-它们将正确显示吗?

2 个答案:

答案 0 :(得分:0)

我研究过“ Java似乎无法正确渲染许多CJK OpenType字体”。因此,这可能与https://bugs.openjdk.java.net/browse/JDK-7140863

有关

https://github.com/adobe-fonts/source-han-sans/issues/53

答案 1 :(得分:0)

我安装了这样的字体

    private void render(Graphics g)
    {
        try
        {
            Font font = Font.createFont(Font.TRUETYPE_FONT, new FileInputStream("font.ttf"));
            font = font.deriveFont(24F);
            g.setFont(font);
            g.setColor(Color.BLUE);
            g.drawString(String.valueOf(count), 50, 50);
        } catch (FileNotFoundException ex)
        {
            Logger.getLogger(TestFont.class.getName()).log(Level.SEVERE, null, ex);
        } catch (FontFormatException | IOException ex)
        {
            Logger.getLogger(TestFont.class.getName()).log(Level.SEVERE, null, ex);
        }
    }