问题:
当我们使用java读取背景透明的图片,常常会遇到读出来的图片背景透明的部分变黑了的问题,下面就是该问题的解决办法之一.
如何解决:
我将其封装在了一个重设图片宽高的方法中,并使用了一个参数transparent做开关,传入
true
则可以使背景透明化,即解决了背景变黑的问题.
方法代码如下:
/**
* 重新设置图片宽高
* @param img 旧图片BufferedImage
* @param newW 图片新宽度
* @param newH 图片新高度
* @param transparent 背景透明化
* @return 新图片BufferedImage
*/
public static BufferedImage resize(BufferedImage img, int newW, int newH,boolean transparent) {
int w = img.getWidth();
int h = img.getHeight();
BufferedImage dimg = new BufferedImage(newW, newH, BufferedImage.TYPE_INT_RGB);
Graphics2D g = dimg.createGraphics();
g.setRenderingHint(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BILINEAR);
if (transparent) {
dimg = g.getDeviceConfiguration().createCompatibleImage(newW, newH, Transparency.TRANSLUCENT);
g = dimg.createGraphics();
}
g.drawImage(img, 0, 0, newW, newH, 0, 0, w, h, null)
g.dispose();
return dimg;
}
版权声明:本文为cottonknight原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。