真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Java中怎么實現(xiàn)圖片壓縮

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

創(chuàng)新互聯(lián)建站是專業(yè)的海東網(wǎng)站建設(shè)公司,海東接單;提供成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計,網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進行海東網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!

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 {
	/**
     * 縮放圖片(壓縮圖片質(zhì)量,改變圖片尺寸)
     * 若原圖寬度小于新寬度,則寬度不變!
     * @param originalFile 原圖片路徑地址
     * @param resizedFile 壓縮后輸出路徑地址
     * @param maxWidth 最大寬度
     * @param maxHeight 最大高度
     * @param newWidth 新的寬度
     * @param quality 圖片質(zhì)量參數(shù) 0.7f 相當于70%質(zhì)量
     */
    public static void imageResize(File originalFile, File resizedFile,
                              int maxWidth,int maxHeight, float quality) throws IOException {
 
        if (quality > 1) {
            throw new IllegalArgumentException(
                    "圖片質(zhì)量需設(shè)置在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();
 
        //創(chuàng)建緩沖圖像
        BufferedImage bufferedImage = new BufferedImage(temp.getWidth(null),
                temp.getHeight(null), BufferedImage.TYPE_INT_RGB);
 
        //將圖像復(fù)制到緩沖圖像
        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數(shù)據(jù)流
        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 可進行設(shè)置為任意名稱
	File compressAfter = new File("");
        imagesFiler.imageResize(customaryFile,compressAfter,1200,2500,0.8f);
	}
}

1、方式二

(1)、導(dǎo)入jar包

	net.coobird
	thumbnailator
	0.4.8

gradle

implementation group: 'net.coobird', name: 'thumbnailator', version: '0.4.14'

其他工具去maven搜索Thumbnailator

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

以上就是Java中怎么實現(xiàn)圖片壓縮,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


本文題目:Java中怎么實現(xiàn)圖片壓縮
URL地址:http://weahome.cn/article/ipocei.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部