Swing/TransformedShape のバックアップ(No.3)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/TransformedShape へ行く。
- 1 (2006-10-30 (月) 12:57:51)
- 2 (2007-03-20 (火) 15:52:53)
- 3 (2007-10-10 (水) 18:51:55)
- 4 (2007-12-04 (火) 19:19:21)
- 5 (2010-01-21 (木) 19:37:47)
- 6 (2011-04-29 (金) 15:29:56)
- 7 (2013-02-22 (金) 18:54:59)
- 8 (2013-05-24 (金) 17:30:21)
- 9 (2014-11-22 (土) 03:59:58)
- 10 (2015-02-02 (月) 17:47:19)
- 11 (2016-01-16 (土) 01:50:39)
- 12 (2016-02-03 (水) 18:23:39)
- 13 (2016-05-24 (火) 19:22:42)
- 14 (2017-08-30 (水) 17:45:52)
- 15 (2018-09-11 (火) 14:29:03)
- 16 (2019-05-28 (火) 15:16:51)
- 17 (2019-07-30 (火) 22:06:48)
- 18 (2020-08-03 (月) 14:32:46)
- 19 (2021-05-10 (月) 02:54:05)
TITLE:Fontを回転する
Fontを回転する
編集者:Terai Atsuhiro
作成日:2006-10-30
更新日:2021-05-10 (月) 02:54:05
概要
文字のアウトラインを取得して、これを回転してみます。
#screenshot
サンプルコード
class FontAnime extends JComponent implements ActionListener {
private int rotate;
private final Shape shape;
public FontAnime() {
super();
Font font = new Font("serif", Font.PLAIN, 200);
FontRenderContext frc = new FontRenderContext(null,true,true);
shape = new TextLayout("あ", font, frc).getOutline(null);
}
public void paintComponent(Graphics g) {
Graphics2D g2 = (Graphics2D)g;
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
RenderingHints.VALUE_ANTIALIAS_ON);
g2.setPaint(Color.BLACK);
Rectangle2D b = shape.getBounds();
AffineTransform at = AffineTransform.getRotateInstance(
Math.toRadians(rotate),
b.getX() + b.getWidth()/2,
b.getY() + b.getHeight()/2);
AffineTransform toCenterAT = AffineTransform.getTranslateInstance(
getWidth()/2 - b.getWidth()/2 - b.getX(),
getHeight()/2 - b.getHeight()/2 - b.getY());
Shape s = at.createTransformedShape(shape);
g2.fill(toCenterAT.createTransformedShape(s));
rotate = (rotate>=360) ? 0 : rotate+2;
}
public void actionPerformed(ActionEvent e) {
repaint();
}
}
- &jnlp;
- &jar;
- &zip;
解説
上記のサンプルでは、TextLayout から文字列のアウトラインを Shape として取得しています。