取得有關字型的資訊
在 Java 中,您可以透過 GraphicsEnvironment 類別存取系統字型。若要取得所有可用字體系列名稱的數組,請使用以下程式碼:
<code class="java">GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment(); String[] fonts = ge.getAvailableFontFamilyNames();</code>
可以在運行時動態設定字體大小和樣式。考慮以下示例,該示例顯示一個字體選擇器以及每種字體的預覽:
<code class="java">import java.awt.*; import javax.swing.*; public class ShowFonts { public static void main(String[] args) { SwingUtilities.invokeLater(() -> { GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment(); String[] fonts = ge.getAvailableFontFamilyNames(); JComboBox fontChooser = new JComboBox(fonts); fontChooser.setRenderer(new FontCellRenderer()); JOptionPane.showMessageDialog(null, fontChooser); }); } } class FontCellRenderer extends DefaultListCellRenderer { @Override public Component getListCellRendererComponent( JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) { JLabel label = (JLabel) super.getListCellRendererComponent( list, value, index, isSelected, cellHasFocus); Font font = new Font(value.toString(), Font.PLAIN, 20); label.setFont(font); return label; } }</code>
其他資源
以上是如何以程式設計方式列出和預覽 Java 應用程式中的可用字體?的詳細內容。更多資訊請關注PHP中文網其他相關文章!