JAVA 分享一个比较好用的等比例压缩图片方法

/**
 * <p>Title: thumbnailImage</p>
 * <p>Description: 根据图片路径生成缩略图 </p>
 * @param imagePath    原图片路径
 * @param w            缩略图宽
 * @param h            缩略图高
 * @param prevfix    生成缩略图的前缀
 * imagePath 和 tarPath 两个路径可以一样哦,新文件会覆盖旧文件的!
 */
public static File thumbnailImage(String imagePath,String tarPath ){
    int w = getImgWhith(new File(imagePath));
    int h = getImgHeight(new File(imagePath));
    File imgFile = new File(imagePath);
    File tarFile = new File(tarPath);
    if(imgFile.exists()){
        try {
            // ImageIO 支持的图片类型 : [BMP, bmp, jpg, JPG, wbmp, jpeg, png, PNG, JPEG, WBMP, GIF, gif]
            String types = Arrays.toString(ImageIO.getReaderFormatNames());
            String suffix = null;
            // 获取图片后缀
            if(imgFile.getName().indexOf(".") > -1) {
                suffix = imgFile.getName().substring(imgFile.getName().lastIndexOf(".") + 1);
            }
            // 类型和图片后缀全部小写,然后判断后缀是否合法
            if(suffix == null || types.toLowerCase().indexOf(suffix.toLowerCase()) < 0){
                System.out.println("Sorry, the image suffix is illegal. the standard image suffix is {}." + types);
                return null;
            }
            System.out.println("target image's size, width:{"+w+"}, height:{"+h+"}.");
            Image img = ImageIO.read(imgFile);
//                    if(!force){
                // 根据原图与要求的缩略图比例,找到最合适的缩略图比例
                int width = img.getWidth(null);
                int height = img.getHeight(null);
                if((width*1.0)/w < (height*1.0)/h){
                    if(width > w){
                        h = Integer.parseInt(new java.text.DecimalFormat("0").format(height * w/(width*1.0)));
                        System.out.println("change image's height, width:{"+w+"}, height:{"+h+"}.");
                    }
                } else {
                    if(height > h){
                        w = Integer.parseInt(new java.text.DecimalFormat("0").format(width * h/(height*1.0)));
                        System.out.println("change image's width,  width:{"+w+"}, height:{"+h+"}.");
                    }
                }
//                    }
            BufferedImage bi = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
            Graphics g = bi.getGraphics();
            g.drawImage(img, 0, 0, w, h, Color.LIGHT_GRAY, null);
            g.dispose();
            String p = imgFile.getPath();
            // 将图片保存在原目录并加上前缀
            ImageIO.write(bi, suffix, new File(p.substring(0,p.lastIndexOf(File.separator)) + File.separator  +tarFile.getName()));
            System.out.println("缩略图在原路径下生成成功");
            return tarFile;
        } catch (IOException e) {
            System.out.println("generate thumbnail image failed."+e);
        }
    }else{
        System.out.println("the image is not exist.");
    }
    return tarFile;
}

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值