3

如果本身,我如何在中心旋转图像?此代码有效,但它会旋转屏幕左上角的图像:

    AffineTransform oldtrans = new AffineTransform();
    AffineTransform trans = new AffineTransform();

    trans.setToIdentity();
    trans.rotate(Math.toRadians(angle));
    trans.translate(_x-(width/2), _y-(height/2));
    g.setTransform(trans);
    g.drawImage(this.getImage(), (int)_x, (int)_y, (int)width, (int)height, null);
    trans.setToIdentity();
    g.setTransform(oldtrans);

请帮忙!!!

4

2 回答 2

8

您应该在 rotate() 调用中再提供两个参数:

affineTransform.rotate(Math.toRadians(angle), m_imageWidth/2, m_imageHeight/2); 
于 2012-05-16T09:32:28.007 回答
2

从字面上看,你已经成功了一半。你要做的是两个翻译。类似于以下内容:

  1. 将图像平移到其中心 (tanslate(x-width/2, y-width/2)。
  2. 按角度弧度旋转图像(就像你一样)。
  3. 将图像平移回其原始位置 (tanslate(x+width/2, y+width/2)。

希望这对你有用。

于 2012-05-16T09:31:28.683 回答