中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java中怎么實現圖片壓縮

發布時間:2021-06-12 17:37:00 來源:億速云 閱讀:305 作者:Leah 欄目:編程語言

本篇文章給大家分享的是有關Java中怎么實現圖片壓縮,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

1、方式一

(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);
    } 
   
}
(2)、測試
//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);
	}
}

1、方式二

(1)、導入jar包
<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

(2)、測試
Thumbnails.of("原圖文件的路徑") 
        .scale(1f) 
        .outputQuality(0.5f) 
        .toFile("壓縮后文件的路徑");

以上就是Java中怎么實現圖片壓縮,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

双鸭山市| 永丰县| 肇源县| 边坝县| 马尔康县| 交城县| 雷州市| 龙口市| 专栏| 古丈县| 枣强县| 上犹县| 榆社县| 嘉善县| 名山县| 巧家县| 新竹县| 焉耆| 平山县| 遂川县| 莲花县| 界首市| 都昌县| 英山县| 高安市| 河津市| 剑河县| 余江县| 怀柔区| 凤山县| 靖安县| 墨玉县| 栖霞市| 图片| 博爱县| 清水河县| 阳原县| 竹山县| 博湖县| 望江县| 广东省|