Graphics2D 画图透明通道处理

为了生成海报画图,有的图片是带有透明通道的。但是生成后就处理成黑色背景

网上搜了好多都不符合,为了后面小伙伴的方便。特分享下~

下图是生成的效果

原图                                           

Graphics2D 画图透明通道处理_第1张图片

没有添加透明通道生成的图

Graphics2D 画图透明通道处理_第2张图片

重点的核心代码来了:

/**
 * 缩放图片+透明
 *
 * @param image  需要缩放的图片
 * @param width  宽
 * @param height 高
 * @return BufferedImage
 */
private static BufferedImage resize(BufferedImage image, int width, int height) {
    java.awt.Image img = image.getScaledInstance(width, height, java.awt.Image.SCALE_FAST);
    BufferedImage newBufferedImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB);
    Graphics2D graphics = newBufferedImage.createGraphics();
    graphics.drawImage(img, 0, 0, null);
    graphics.dispose();
    return newBufferedImage;
}

调用

image = resize(image, width, height);

你可能感兴趣的:(Java进阶,水印,java,Graphics2D,文字图片,水印,透明通道)