当我使用Graphics2D.rotate()旋转图像时,显然在角落处留有一些空白.空角变成透明的.
我希望我的程序旋转BufferedImage并用白色填充其余的空角.
我该怎么做呢?
换句话说,我要旋转图像,同时为整个图像保留白色背景.
这是我的功能:
public BufferedImage rotateImage(BufferedImage image, double degreesAngle) {
int w = image.getWidth();
int h = image.getHeight();
BufferedImage result = new BufferedImage(w, h, image.getType());
Graphics2D g2 = result.createGraphics();
g2.rotate(Math.toRadians(degreesAngle), w/2, h/2);
g2.drawImage(image,null,0,0);
return result;
}
然后,我使用此图像将其绘制为透明的JPanel,然后将其添加到JLayeredPane中.
但是,我的图像有透明的角,我想用白色填充它们.
解决方法:
您至少有两个选择…
你可以…
在绘制旋转图像之前,请绘制BufferedImage的背景.
public BufferedImage rotateImage(BufferedImage image, double degreesAngle) {
int w = image.getWidth();
int h = image.getHeight();
BufferedImage result = new BufferedImage(w, h, image.getType());
Graphics2D g2 = result.createGraphics();
g2.setColor(Color.WHITE);
g2.fillRect(0, 0, w, h);
g2.rotate(Math.toRadians(degreesAngle), w/2, h/2);
g2.drawImage(image,null,0,0);
return result;
}
你可以…
在将图像绘制到面板上之前,先绘制图像后面的区域.