为不同大小的图片添加纯色背景

有目标就不怕路远。年轻人.无论你现在身在何方.重要的是你将要向何处去。只有明确的目标才能助你成功。没有目标的航船.任何方向的风对他来说都是逆风。因此,再遥远的旅程,只要有目标.就不怕路远。没有目标,哪来的劲头?一车尔尼雷夫斯基

导读:本篇文章讲解 为不同大小的图片添加纯色背景,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com,来源:原文

先看效果

 调用代码:

 File file = new File("需要加背景的图片的全路径");  //比如"D:\\Download\\test.png"
InputStream in = new FileInputStream(file);
BufferedImage bufferedImage = ImageUtil.reSquareAddBackground(in, 背景图宽, 背景图高, 背景颜色);
//比如 ImageUtil.reSquareAddBackground(in, 1024, 1024, Color.PINK(粉色)/Color.WHITE(白色))
File newFile = new File("生成的新图片的全路径");  //比如"D:\\Download\\test-pink.png"
ImageIO.write(bufferedImage, "生成图片格式/后缀", newFile);  //比如 "png"

处理前:

为不同大小的图片添加纯色背景

处理后:

为不同大小的图片添加纯色背景

白色背景不太明显,换个粉色的~

为不同大小的图片添加纯色背景

完整代码

    /**
     * 将不同大小的图片按比例缩放到一张纯色背景图上
     *
     * @param downloadImage 需要添加背景图片
     * @param backWidth     背景宽
     * @param backHeight    背景高
     * @param color         背景颜色
     * @return
     * @throws IOException
     */
    public static BufferedImage reSquareAddBackground(InputStream downloadImage, Integer backWidth, Integer backHeight, Color color) throws IOException {
        // 先创建一个纯色背景图
        BufferedImage biNew = new BufferedImage(backWidth, backHeight, BufferedImage.TYPE_INT_RGB);
        Graphics g = biNew.getGraphics();
        g.setColor(color);  //g.setColor(Color.white);
        g.fillRect(0, 0, backWidth, backHeight);   // 矩形填充
        g.dispose();

        BufferedImage bi = ImageIO.read(downloadImage);
        int width = bi.getWidth();
        int height = bi.getHeight();
        int stepH = 0; //上下间隙
        int stepW = 0; //左右间隙
        double ratioW = width * 1.0 / backWidth;
        double ratioH = height * 1.0 / backHeight;
        if (ratioH > ratioW) {
            //按高缩放
            height = backHeight;
            width = (int) (width / ratioH);
            stepW = (backWidth - width) / 2;
            //获取缩放后的Image对象
            bi = getZoomScaleBufferedImage(bi, width, height);
        } else {
            //按宽缩放
            //获取缩放后的长和宽
            width = backWidth;
            height = (int) (height / ratioW);
            stepH = (backHeight - height) / 2;
            //获取缩放后的Image对象
            bi = getZoomScaleBufferedImage(bi, width, height);
        }

        int minX = bi.getMinX();
        int minY = bi.getMinY();
        //遍历长和宽上的每个像素
        for (int i = minX; i < width; i++) {
            for (int j = minY; j < height; j++) {
                //得到指定像素(i,j)上的RGB值,
                int pixel = bi.getRGB(i, j);
                //判断改像素是否有值(也可以通过位运算分别求得RGB值再进行判断)
                if (pixel == -16777216) {
                    continue;
                }
                biNew.setRGB(i + stepW, j + stepH, pixel);
            }
        }
        System.out.println("完成^ ^");
        return biNew;
    }

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/135465.html

(0)
飞熊的头像飞熊bm

相关推荐

发表回复

登录后才能评论
极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!