📄 e596. scaling, shearing, translating, and rotating a drawn image.txt
字号:
See also e575 The Quintessential Drawing Program and e594 Reading an Image or Icon from a File.
public void paint(Graphics g) {
Graphics2D g2d = (Graphics2D) g;
AffineTransform tx = new AffineTransform();
double scalex = .5;
double scaley = 1;
tx.scale(scalex, scaley);
double shiftx = .1;
double shifty = .3;
tx.shear(shiftx, shifty);
double x = 50;
double y = 50;
tx.translate(x, y);
double radians = -Math.PI/4;
tx.rotate(radians);
g2d.drawImage(image, tx, this);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -