Java-多文件上传(如果图片超过指定大小自动压缩)

之前有个需求:文件上传时,如果是图片,超出指定大小,就自动压缩。为了实现这个功能,借用了 google的 Thumbnails 工具,效果还是蛮好的。
全部代码如下:

private void uploadFile(List<MultipartFile> files) throws IOException{
        Long imgMaxSize = 1024L * 1024L;
        List<String> imgsType = new ArrayList<>(Arrays.asList("BMP","JPG","PNG"));
        if(CollectionUtils.isNotEmpty(files)){
            for(MultipartFile file : files){
                String fileName = file.getOriginalFilename();
                Long fileSize = file.getSize();
                String fileType = file.getContentType().toUpperCase();
                InputStream inputStream = file.getInputStream();
                //如果上传的是图片,且超过指定大小,自动压缩输入流
                if(imgsType.contains(fileType)&&fileSize>imgMaxSize){
                    ByteArrayOutputStream out = new ByteArrayOutputStream();
                    //压缩输入流,scale是压缩比例;quality是质量比例,0-1之间,越接近1,质量越高
                    Thumbnails.of(inputStream).scale(0.7f).outputQuality(0.25d).toOutputStream(out);
                    InputStream imgInputStream = new ByteArrayInputStream(out.toByteArray());
                    inputStream = imgInputStream;
                }
                //保存文件到本地服务器
                String dirPath = "/src/img/";
                File dir = new File(dirPath);
                if(!dir.exists()){
                    dir.mkdirs();
                }
                File newFile = new File(dirPath+fileName);
                newFile.createNewFile();
                FileOutputStream outStream = new FileOutputStream(newFile);
                int len;
                byte[] buffer = new byte[1024];
                while ((len = inputStream.read(buffer)) != -1) {
                    outStream.write(buffer, 0, len);
                }
                outStream.close();
            }
        }
    }

 

  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要将Java中的图像压缩指定大小,可以使用Java的ImageIO和ImageWriter类。以下是一个示例代码,可以将图像压缩指定大小: ```java import java.awt.Graphics2D; import java.awt.image.BufferedImage; import java.io.File; import javax.imageio.ImageIO; import javax.imageio.ImageWriter; import javax.imageio.stream.FileImageOutputStream; import javax.imageio.stream.ImageOutputStream; public class ImageIOExample { public static void main(String[] args) throws Exception { File input = new File("input.png"); BufferedImage image = ImageIO.read(input); // 限制图像的宽度和高度 int maxWidth = 800; int maxHeight = 600; int width = image.getWidth(); int height = image.getHeight(); if (width > maxWidth || height > maxHeight) { float ratio = Math.min((float)maxWidth / width, (float)maxHeight / height); width = (int)(width * ratio); height = (int)(height * ratio); BufferedImage resized = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); Graphics2D g2d = resized.createGraphics(); g2d.drawImage(image, 0, 0, width, height, null); g2d.dispose(); image = resized; } // 压缩图像 File output = new File("output.png"); ImageWriter writer = ImageIO.getImageWritersByFormatName("png").next(); ImageOutputStream ios = new FileImageOutputStream(output); writer.setOutput(ios); writer.write(null, new javax.imageio.IIOImage(image, null, null), null); ios.close(); writer.dispose(); } } ``` 在这个例子中,我们首先读取一个名为 "input.png" 的图像文件,并将其限制在800x600的大小范围内。如果图像的宽度或高度超过了限制,则缩小图像以适应限制。然后,我们将图像压缩为PNG格式,并将其保存在名为 "output.png" 的文件中。这个例子中的压缩质量是默认的,您可以根据需要更改压缩质量。

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值