• title: Shapeの反転 tags: [Shape, Font, AffineTransform] author: aterai pubdate: 2008-07-28T12:01:57+09:00 description: AffineTransformで図形や画像を反転します。

概要

AffineTransformで図形や画像を反転します。

サンプルコード

Font font = new Font(Font.MONOSPACED, Font.PLAIN, 200);
FontRenderContext frc = new FontRenderContext(null, true, true);
Shape copyright = new TextLayout("\u00a9", font, frc).getOutline(null);
AffineTransform at = AffineTransform.getScaleInstance(-1.0, 1.0);
//Rectangle r = copyright.getBounds();
//at.translate(r.getWidth(), r.getHeight());
//AffineTransform at = new AffineTransform(-1d,0,0,1d,r.getWidth(), r.getHeight());
Shape copyleft = at.createTransformedShape(copyright);
View in GitHub: Java, Kotlin

解説

上記のサンプルでは、コピーライトの文字を鏡像(左右)反転して、コピーレフトのアイコンを作成しています。

上下反転の場合は、AffineTransform.getScaleInstance(1.0, -1.0)を使用します。

参考リンク

コメント