java压缩图片byte[]并返回byte[]

1、我这里使用的是Thumbnailator,一个google使用的开源的工具类。


2、在github上面的地址是:https://github.com/coobird/thumbnailator

maven的地址

<dependency>
   <groupId>net.coobird</groupId>
   <artifactId>thumbnailator</artifactId>
   <version>0.4.8</version>
</dependency>

3、我的应用场景是要将一个图片的字节数组进行压缩,并且返回字节数组,如果是图片文件的压缩可以参考如下帖子
https://www.cnblogs.com/linkstar/p/7412012.html
 
 
 
 
4、java代码示例:
    public static void main(String[] args) {
        byte[] bs = null;
        try {
            bs = HttpCaller.get(
                    "https://www.baidu.com/img/baidu_jgylogo3.gif",
                    null);
        } catch (IOException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        }
        ByteArrayInputStream intputStream = new ByteArrayInputStream(bs);
        Builder<? extends InputStream> builder = Thumbnails.of(intputStream).size(20, 30);
        try {
            BufferedImage bufferedImage = builder.asBufferedImage();
            ByteArrayOutputStream baos = new ByteArrayOutputStream();
            ImageIO.write(bufferedImage, "png", baos);
            byte[] byteArray = baos.toByteArray();
            System.out.println(Base64Utils.encodeToString(byteArray));
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

    }


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值