您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關Java中怎么實現圖片壓縮,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
1、方式一
import java.awt.Color; import java.awt.Graphics; import java.awt.Image; import java.awt.image.BufferedImage; import java.awt.image.ConvolveOp; import java.awt.image.Kernel; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import javax.swing.ImageIcon; import com.sun.image.codec.jpeg.JPEGCodec; import com.sun.image.codec.jpeg.JPEGEncodeParam; import com.sun.image.codec.jpeg.JPEGImageEncoder; //java項目www.fhadmin.org public class imagesFiler { /** * 縮放圖片(壓縮圖片質量,改變圖片尺寸) * 若原圖寬度小于新寬度,則寬度不變! * @param originalFile 原圖片路徑地址 * @param resizedFile 壓縮后輸出路徑地址 * @param maxWidth 最大寬度 * @param maxHeight 最大高度 * @param newWidth 新的寬度 * @param quality 圖片質量參數 0.7f 相當于70%質量 */ public static void imageResize(File originalFile, File resizedFile, int maxWidth,int maxHeight, float quality) throws IOException { if (quality > 1) { throw new IllegalArgumentException( "圖片質量需設置在0.1-1范圍"); } ImageIcon ii = new ImageIcon(originalFile.getCanonicalPath()); Image i = ii.getImage(); Image resizedImage = null; int iWidth = i.getWidth(null); int iHeight = i.getHeight(null); int newWidth = maxWidth; if(iWidth < maxWidth){ newWidth = iWidth; } if (iWidth >= iHeight) { resizedImage = i.getScaledInstance(newWidth, (newWidth * iHeight) / iWidth, Image.SCALE_SMOOTH); } int newHeight = maxHeight; if(iHeight < maxHeight){ newHeight = iHeight; } if(resizedImage==null && iHeight >= iWidth){ resizedImage = i.getScaledInstance((newHeight * iWidth) / iHeight, newHeight, Image.SCALE_SMOOTH); } //此代碼確保加載圖像中的所有像素 Image temp = new ImageIcon(resizedImage).getImage(); //創建緩沖圖像 BufferedImage bufferedImage = new BufferedImage(temp.getWidth(null), temp.getHeight(null), BufferedImage.TYPE_INT_RGB); //將圖像復制到緩沖圖像 Graphics g = bufferedImage.createGraphics(); //清除背景并繪制圖像。 g.setColor(Color.white); g.fillRect(0, 0, temp.getWidth(null), temp.getHeight(null)); g.drawImage(temp, 0, 0, null); g.dispose(); float softenFactor = 0.05f; float[] softenArray = { 0, softenFactor, 0, softenFactor, 1 - (softenFactor * 4), softenFactor, 0, softenFactor, 0 }; Kernel kernel = new Kernel(3, 3, softenArray); ConvolveOp cOp = new ConvolveOp(kernel, ConvolveOp.EDGE_NO_OP, null); bufferedImage = cOp.filter(bufferedImage, null); //將jpeg寫入文件 FileOutputStream out = new FileOutputStream(resizedFile); //將圖像編碼為jpeg數據流 JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out); JPEGEncodeParam param = encoder .getDefaultJPEGEncodeParam(bufferedImage); param.setQuality(quality, true); encoder.setJPEGEncodeParam(param); encoder.encode(bufferedImage); } }
//java項目www.fhadmin.org public class demo { public static void main(String[] args) throws Exception{ //需要壓縮的圖片地址 aaa.jpg為需要壓縮的圖片 File customaryFile = new File(""); //壓縮過后輸出的路徑地址 ddd.jpg 可進行設置為任意名稱 File compressAfter = new File(""); imagesFiler.imageResize(customaryFile,compressAfter,1200,2500,0.8f); } }
<dependency> <groupId>net.coobird</groupId> <artifactId>thumbnailator</artifactId> <version>0.4.8</version> </dependency>
gradle
implementation group: 'net.coobird', name: 'thumbnailator', version: '0.4.14'
其他工具去maven搜索Thumbnailator
Thumbnails.of("原圖文件的路徑") .scale(1f) .outputQuality(0.5f) .toFile("壓縮后文件的路徑");
以上就是Java中怎么實現圖片壓縮,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。