java图片压缩--Thumbnailator

最近在java开发中遇到了图片处理的问题,我使用的是Thumbnailator。Thumbnailator是一个优秀的图片处理的开源java类库,使用起来很方便。

图片原图:


1、指定大小进行缩放

public class PicUtil {
	public static void main(String[] args) {  
		  
        PicUtil.commpressPicForSize("G:\\images\\ceshi.jpg",  
                "G:\\images\\datas\\ceshi.jpg", 100, 0.3); // 图片小于100kb
        
    }  
  
    /** 
     * 根据指定大小和指定精度压缩图片 
     *  
     * @param srcPath 
     *            源图片地址 
     * @param desPath 
     *            目标图片地址 
     * @param desFilesize 
     *            指定图片大小,单位kb 
     * @param accuracy 
     *            精度,递归压缩的比率,建议小于0.9 
     * @return 
     */  
    public static String commpressPicForSize(String srcPath, String desPath,  
            long desFileSize, double accuracy) {  
        if (StringUtils.isEmpty(srcPath) || StringUtils.isEmpty(srcPath)) {  
            return null;  
        }  
        if (!new File(srcPath).exists()) {  
            return null;  
        }  
        try {  
            File srcFile = new File(srcPath);  
            long srcFileSize = srcFile.length();  
            System.out.println("源图片:" + srcPath + ",大小:" + srcFileSize / 1024  
                    + "kb");  
  
            // 1、先转换成jpg  
            Thumbnails.of(srcPath).scale(1f).toFile(desPath);  
            // 递归压缩,直到目标文件大小小于desFileSize  
            commpressPicCycle(desPath, desFileSize, accuracy);
  
            File desFile = new File(desPath);  
            System.out.println("目标图片:" + desPath + ",大小" + desFile.length()  
                    / 1024 + "kb");  
            System.out.println("图片压缩完成!");  
        } catch (Exception e) {  
            e.printStackTrace();  
            return null;  
        }  
        return desPath;  
    }
    /**
     * 图片压缩:按指定大小把图片进行缩放(会遵循原图高宽比例)
     * 并设置图片文件大小
     */
    private static void commpressPicCycle(String desPath, long desFileSize,  
            double accuracy) throws IOException {  
        File srcFileJPG = new File(desPath);  
        long srcFileSizeJPG = srcFileJPG.length();  
        // 2、判断大小,如果小于指定大小,不压缩;如果大于等于指定大小,压缩  
        if (srcFileSizeJPG <= desFileSize * 1024) {
            return;  
        }  
        // 计算宽高  
        BufferedImage bim = ImageIO.read(srcFileJPG);  
        int srcWdith = bim.getWidth();  
        int srcHeigth = bim.getHeight();  
        int desWidth = new BigDecimal(srcWdith).multiply(  
                new BigDecimal(accuracy)).intValue();  
        int desHeight = new BigDecimal(srcHeigth).multiply(  
                new BigDecimal(accuracy)).intValue();  
  
        Thumbnails.of(desPath).size(desWidth, desHeight)  
                .outputQuality(accuracy).toFile(desPath);  
        commpressPicCycle(desPath, desFileSize, accuracy);  
    }
}
压缩后图片展示:


运行结果打印:


2、按照比例进行缩放

public class PicUtil {
	public static void main(String[] args) {
            PicUtil.commpressPicForScale("G:\\images\\ceshi.jpg", 
        		"G:\\images\\scales\\ceshi.jpg", 100,0.3);
        }
        public static String commpressPicForScale(String srcPath, String desPath,  
            long desFileSize, double accuracy) {  
           if (StringUtils.isEmpty(srcPath) || StringUtils.isEmpty(srcPath)) {  
               return null;  
             }  
           if (!new File(srcPath).exists()) {  
               return null;  
           }  
           try {  
              File srcFile = new File(srcPath);  
              long srcFileSize = srcFile.length();  
              System.out.println("源图片:" + srcPath + ",大小:" + srcFileSize / 1024  
                    + "kb");  
  
              // 1、先转换成jpg  
              Thumbnails.of(srcPath).scale(1f).toFile(desPath);  
              //按照比例进行缩放
              imgScale(desPath, desFileSize, accuracy);
  
              File desFile = new File(desPath);  
              System.out.println("目标图片:" + desPath + ",大小" + desFile.length()  
                    / 1024 + "kb");  
              System.out.println("图片压缩完成!");  
          } catch (Exception e) {  
              e.printStackTrace();  
              return null;  
          }  
          return desPath;  
     }
   	/**
     	* 按照比例进行缩放 
     	* 
     	*/
      private static void imgScale(String desPath, long desFileSize,  
            double accuracy) throws IOException{
    	  File file=new File(desPath);
    	  long fileSize=file.length();
    	  //判断大小,如果小于指定大小,不压缩;如果大于等于指定大小,压缩
    	  if(fileSize<=desFileSize*1024){
    		return;
    	  }
    	  //按照比例进行缩小
          Thumbnails.of(desPath).scale(accuracy).toFile(desPath);//按比例缩小
          System.out.println("按照比例进行缩放");
          imgScale(desPath, desFileSize, accuracy);
    }
}

图片压缩效果:


运行结果打印:


3、图片尺寸不变,大小改变

public class PicUtil {
	public static void main(String[] args) {  
		PicUtil.commpressPicForScaleSize("G:\\images\\ceshi.jpg", 
        		"G:\\images\\scaleSize\\ceshi.jpg", 100,0.25);
    }
public static String commpressPicForScaleSize(String srcPath, String desPath,  
            long desFileSize, double accuracy) {  
        if (StringUtils.isEmpty(srcPath) || StringUtils.isEmpty(srcPath)) {  
            return null;  
        }  
        if (!new File(srcPath).exists()) {  
            return null;  
        }  
        try {  
            File srcFile = new File(srcPath);  
            long srcFileSize = srcFile.length();  
            System.out.println("源图片:" + srcPath + ",大小:" + srcFileSize / 1024  
                    + "kb");  
  
            // 1、先转换成jpg  
            Thumbnails.of(srcPath).scale(1f).toFile(desPath);  
            //按照比例进行缩放
            imgScaleSize(desPath, desFileSize, accuracy);
  
            File desFile = new File(desPath);  
            System.out.println("目标图片:" + desPath + ",大小" + desFile.length()  
                    / 1024 + "kb");  
            System.out.println("图片压缩完成!");  
        } catch (Exception e) {  
            e.printStackTrace();  
            return null;  
        }  
        return desPath;  
    }
    /**
     * 图片尺寸不变,压缩文件大小
     */
    private static void imgScaleSize(String desPath, long desFileSize,  
    		double accuracy) throws IOException{
    	File fileName=new File(desPath);
    	long fileNameSize=fileName.length();
    	//判断大小,如果小于指定大小,不压缩;如果大于等于指定大小,压缩
    	if(fileNameSize<=desFileSize*1024){
    		return;
    	}
    	//图片尺寸不变,压缩图片文件大小
    	//图片尺寸不变,压缩图片文件大小outputQuality实现,参数1为最高质量
        Thumbnails.of(desPath).scale(1f).outputQuality(accuracy).toFile(desPath);
        System.out.println("图片尺寸不变,压缩文件大小");
        imgScaleSize(desPath, desFileSize, accuracy);
    }
}
图片压缩效果展示:


运行结果打印:


参考文章链接:http://blog.csdn.net/u010355502/article/details/77197616


  • 5
    点赞
  • 26
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值