我正在尝试旋转图像,它在某种程度上可以工作,但问题是它无法正常工作。它没有按照我想要的方式旋转。图像以某种混合形式显示。
我的按钮点击代码:
RT90.addActionListener(new ActionListener()
{
@Override
public void actionPerformed(ActionEvent arg0)
{
degrees+=90;
rotateIMG(degrees);
repaint();
}
});
rotateIMG() 代码:
public void rotateIMG(double d)
{
BufferedImage b ;
b=a;
Graphics g;
g=b.createGraphics();
Graphics2D g2d = (Graphics2D)g;
System.out.println(b.getWidth());
System.out.println(b.getHeight());
g2d.rotate(Math.toRadians(d), b.getWidth()/2, b.getHeight()/2);
g2d.drawImage(b,0,0,null);
ImageIcon rtimg = new ImageIcon(b);
label.setIcon(rtimg);
}
知道wrong
这段代码中有什么吗?这a
是从图像堆栈加载并用于显示图像的缓冲label
图像JLabel
。