欢迎您访问365答案网,请分享给你的朋友!
生活常识 学习资料

JAVA实现图片原比例无损压缩

时间:2023-07-05

前段时间,客户反应系统上传的图片展示的时候图片太大影响速度,需要压缩图片。

直接上马

private static void doWithPhoto(String path) { File file = new File(path); if (!file.exists()) { return; } BufferedImage image = null; FileOutputStream os = null; try { image = ImageIO.read(file); int width = image.getWidth(); int height = image.getHeight(); BufferedImage bfImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); bfImage.getGraphics().drawImage(image.getScaledInstance(width, height, Image.SCALE_SMOOTH), 0, 0, null); os = new FileOutputStream(path); JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(os); encoder.encode(bfImage); } catch (IOException e) { e.printStackTrace(); } finally { if (os != null) { try { os.close(); } catch (IOException e) { e.printStackTrace(); } } } }

Copyright © 2016-2020 www.365daan.com All Rights Reserved. 365答案网 版权所有 备案号:

部分内容来自互联网,版权归原作者所有,如有冒犯请联系我们,我们将在三个工作时内妥善处理。