概要

文字に長体をかけたフォントを生成し、これをJTextAreaなどのコンポーネントで使用します。

サンプルコード

AffineTransform at = AffineTransform.getScaleInstance(.9, 1d);
Font font = new Font(Font.MONOSPACED, Font.PLAIN, 18).deriveFont(at);
textArea.setFont(font);
View in GitHub: Java, Kotlin

解説

  • 上: JTextArea(condensed: 0.9)
    • 水平比率90%の変形をかけた長体フォントを作成してJTextAreaに設定
  • 中: GlyphVector(condensed: 0.9)
    • 水平比率90%の変形をかけた長体フォントを作成し、そのFontからFontMetricsGlyphVectorを生成して文字列を描画
    • 一文字ごとに変形する場合はGlyphVector#setGlyphTransform(idx, affineTransform)を使用する方法もある
  • 下: LineBreakMeasurer(condensed: 0.9)
    • 水平比率90%の変形をかけた長体フォントを作成してAttributedString#addAttribute(TextAttribute.FONT, font)メソッドで属性付き文字列に設定
    • LineBreakMeasurerTextLayoutで属性付き文字列を描画

参考リンク

コメント