java高質(zhì)量縮放圖片的示例代碼
可按照比例縮放,也可以指定寬高
import com.sun.image.codec.jpeg.JPEGImageEncoder;import com.sun.image.codec.jpeg.JPEGCodec;import com.sun.image.codec.jpeg.JPEGEncodeParam;import javax.swing.*;import java.io.File;import java.io.FileOutputStream;import java.io.IOException;import java.awt.*;import java.awt.image.BufferedImage;import java.awt.image.Kernel;import java.awt.image.ConvolveOp; public class ImageUtil { /** * * @param originalFile 原文件 * @param resizedFile 壓縮目標(biāo)文件 * @param newWidth 壓縮后的圖片寬度 * @param quality 壓縮質(zhì)量(0到1之間,越高質(zhì)量越好) * @throws IOException */public static void resize(File originalFile, File resizedFile,int newWidth, float quality) throws IOException { if (quality > 1) {throw new IllegalArgumentException('Quality has to be between 0 and 1');} ImageIcon ii = new ImageIcon(originalFile.getCanonicalPath());Image i = ii.getImage();Image resizedImage = null; int iWidth = i.getWidth(null);int iHeight = i.getHeight(null);//比例縮放if (iWidth > iHeight) {resizedImage = i.getScaledInstance(newWidth, (newWidth * iHeight)/ iWidth, Image.SCALE_SMOOTH);} else {resizedImage = i.getScaledInstance((newWidth * iWidth) / iHeight,newWidth, Image.SCALE_SMOOTH);}//指定寬高Image temp = new ImageIcon(resizedImage).getImage();// Create the buffered image.BufferedImage bufferedImage = new BufferedImage(temp.getWidth(null),temp.getHeight(null), BufferedImage.TYPE_INT_RGB);// Copy image to buffered image.Graphics g = bufferedImage.createGraphics();// Clear background and paint the image.g.setColor(Color.white);g.fillRect(0, 0, temp.getWidth(null), temp.getHeight(null));g.drawImage(temp, 0, 0, null);g.dispose(); // Soften.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); // Write the jpeg to a file.FileOutputStream out = new FileOutputStream(resizedFile); // Encodes image as a JPEG data streamJPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out); JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(bufferedImage); param.setQuality(quality, true); encoder.setJPEGEncodeParam(param);encoder.encode(bufferedImage);} // Example usage public static void main(String[] args) throws IOException { File originalImage = new File('C:P7.gif'); resize(originalImage, new File('c:P7-0.jpg'),150, 0.7f); resize(originalImage, new File('c:P7-1.jpg'),150, 1f);}}
以上就是java高質(zhì)量縮放圖片的示例代碼的詳細(xì)內(nèi)容,更多關(guān)于Java 縮放圖片的資料請關(guān)注好吧啦網(wǎng)其它相關(guān)文章!
相關(guān)文章:
1. Django使用HTTP協(xié)議向服務(wù)器傳參方式小結(jié)2. docker容器調(diào)用yum報(bào)錯(cuò)的解決辦法3. JAMon(Java Application Monitor)備忘記4. vue實(shí)現(xiàn)web在線聊天功能5. Springboot 全局日期格式化處理的實(shí)現(xiàn)6. SpringBoot+TestNG單元測試的實(shí)現(xiàn)7. Java GZip 基于內(nèi)存實(shí)現(xiàn)壓縮和解壓的方法8. 完美解決vue 中多個(gè)echarts圖表自適應(yīng)的問題9. php字符串使用詳細(xì)了解10. jsp文件下載功能實(shí)現(xiàn)代碼
