• category: swing folder: CreateFont title: Fontをファイルから取得 tags: [Font, JTextArea] author: aterai pubdate: 2005-03-07T02:07:13+09:00 description: TrueTypeフォントをファイルから読み込み、ASCII artを表示します。 image: https://lh6.googleusercontent.com/_9Z4BYR88imo/TQTKOUJYB7I/AAAAAAAAAVo/K2rl3dXD4ic/s800/CreateFont.png

概要

TrueTypeフォントをファイルから読み込み、ASCII artを表示します。

サンプルコード

Font makeFont(URL url) {
    Font font = null;
    try (InputStream is = url.openStream()) {
        font = Font.createFont(Font.TRUETYPE_FONT, is).deriveFont(12f);
    } catch (IOException | FontFormatException ex) {
        ex.printStackTrace();
    }
    return font;
}
// Font makeFont(URL url) {
//   Font font = null;
//   InputStream is = null;
//   try {
//     is = url.openStream();
//     font = (Font.createFont(Font.TRUETYPE_FONT, is)).deriveFont(12f);
//     is.close();
//   } catch (IOException ioe) {
//     ioe.printStackTrace();
//   } catch (FontFormatException ffe) {
//     ffe.printStackTrace();
//   } finally {
//     if (is != null) {
//       try {
//         is.close();
//       } catch (IOException ioex) {
//         ioex.printStackTrace();
//       }
//     }
//   }
//   return font;
// }
View in GitHub: Java, Kotlin

解説

上記のサンプルでは、Font.createFont(...)メソッドで.ttfファイルからフォントを作成しています。

参考リンク

コメント