java字体无法正常显示

时间:2015-01-06 23:56:58

标签: java fonts

当我从文件导入字体时,它显示非常奇怪。它应该说" TEST",但它只是说" _"。

这是我的代码:

public void paint(Graphics g2){
Graphics2D g = (Graphics2D)g2;
//<editor-fold defaultstate="collapsed" desc="FontGetter">

Font f = null;
try {
    GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
    ge.registerFont((f = Font.createFont(Font.TRUETYPE_FONT, getClass().getResourceAsStream("Triforce.ttf"))));
} catch (IOException e) {
    e.printStackTrace();
}
catch(FontFormatException e)
{
    e.printStackTrace();
}
//</editor-fold>
g.setFont(f.deriveFont(2));
g.drawString("sdfsdfetf", 100, 100);
}

1 个答案:

答案 0 :(得分:1)

Font#createFont Java Docs

指定
  

...使用磅值创建新字体,样式为PLAIN ......

(我强调)

这意味着您需要从此Font派生具有所需属性的新Font实例,例如

try {
    GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
    Font f = Font.createFont(Font.TRUETYPE_FONT, getClass().getResourceAsStream("/Triforce.ttf"));
    if (!ge.registerFont(f)) {
        System.out.println("Unable to register font");
    }
    f = f.deriveFont(Font.PLAIN, 24);
    setFont(f);
} catch (IOException e) {
    e.printStackTrace();
} catch (FontFormatException e) {
    e.printStackTrace();
}

Font

您应该在paint方法的上下文之外预加载字体(并应用它的属性)。绘画应尽可能快地运行,并且会多次调用,有时会连续快速调用。在任何绘制方法中加载资源会浪费时间和资源......

作为一个例子......

import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Font;
import java.awt.FontFormatException;
import java.awt.FontMetrics;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.GraphicsEnvironment;
import java.io.IOException;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class Test1 {

    public static void main(String[] args) {
        new Test1();
    }

    public Test1() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                    ex.printStackTrace();
                }

                JFrame frame = new JFrame("Testing");
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.add(new TestPane());
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }
        });
    }

    public class TestPane extends JPanel {

        public TestPane() {
            try {
                GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
                Font f = Font.createFont(Font.TRUETYPE_FONT, getClass().getResourceAsStream("/Triforce.ttf"));
                if (!ge.registerFont(f)) {
                    System.out.println("Unable to register font");
                }
                f = f.deriveFont(Font.PLAIN, 24);
                setFont(f);
            } catch (IOException e) {
                e.printStackTrace();
            } catch (FontFormatException e) {
                e.printStackTrace();
            }
        }

        @Override
        public Dimension getPreferredSize() {
            return new Dimension(200, 200);
        }

        @Override
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2d = (Graphics2D) g.create();
            FontMetrics fm = g2d.getFontMetrics();
            String text = "Hello world";
            int x = (getWidth() - fm.stringWidth(text)) / 2;
            int y = ((getHeight() - fm.getHeight()) + fm.getAscent()) / 2;
            g2d.drawString(text, x, y);
            g2d.dispose();
        }

    }

}