圖片縮小尺寸演算法

germo發表於2021-09-09
package service;

import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;


//圖片縮小尺寸演算法
public class ReduceImgTest {
    public static void main(String[] args) {

        File srcfile = new File("C:/Users/85339/Desktop/wwwww/w.jpg");
        File distfile = new File("C:/Users/85339/Desktop/wwwww/s3.png");

        System.out.println("壓縮前圖片大小:" + srcfile.length());
        //縮小到原來的0.2倍.,jpg格式的圖片可以轉換成png格式,直接更改儲存圖片檔名字就好了,好簡單
        //目標圖片路徑,處理好的圖片儲存路徑,希望的圖片寬,希望的圖片高,縮放比例,如果縮放比例是0,則按照希望的寬高設定圖片
        reduceImg("C:/Users/85339/Desktop/wwwww/w3.jpg", "C:/Users/85339/Desktop/wwwww/s3.png", 0, 0, 0.2f);
        System.out.println("壓縮後圖片大小:" + distfile.length());

    }


    //指定圖片寬度和高度和壓縮比例對圖片進行壓縮
//imgsrc  源圖片地址
//imgdist 目標圖片地址
//widthdist  壓縮後圖片的寬度
//heightdist 壓縮後圖片的高度
//rate 壓縮的比例
    public static void reduceImg(String imgsrc, String imgdist, int widthdist, int heightdist, Float rate) {
        try {
            File srcfile = new File(imgsrc);
            // 檢查圖片檔案是否存在
            if (!srcfile.exists()) {
                System.out.println("檔案不存在");
            }
            // 如果比例不為空則說明是按比例壓縮
            if (rate != null && rate > 0) {
                //獲得源圖片的寬高存入陣列中
                int[] results = getImgWidthHeight(srcfile);
                if (results == null || results[0] == 0 || results[1] == 0) {
                    return;
                } else {
                    //按比例縮放或擴大圖片大小,將浮點型轉為整型
                    widthdist = (int) (results[0] * rate);
                    heightdist = (int) (results[1] * rate);
                }
            }
            // 開始讀取檔案並進行壓縮
            Image src = ImageIO.read(srcfile);
            // 構造一個型別為預定義影像型別之一的 BufferedImage
            BufferedImage tag = new BufferedImage((int) widthdist, (int) heightdist, BufferedImage.TYPE_INT_RGB);
            //繪製影像  getScaledInstance表示建立此影像的縮放版本,返回一個新的縮放版本Image,按指定的width,height呈現影像
            //Image.SCALE_SMOOTH,選擇影像平滑度比縮放速度具有更高優先順序的影像縮放演算法。
            tag.getGraphics().drawImage(src.getScaledInstance(widthdist, heightdist, Image.SCALE_SMOOTH), 0, 0, null);
            String formatName = imgdist.substring(imgdist.lastIndexOf(".") + 1);
            ImageIO.write(tag, /*"GIF"*/ formatName /* format desired */, new File(imgdist) /* target */);
        } catch (Exception ef) {
            ef.printStackTrace();
        }
    }

    //獲取源圖片的寬高大小
    public static int[] getImgWidthHeight(File file) {
        InputStream is = null;
        BufferedImage src = null;
        int result[] = {0, 0};
        try {
            // 獲得檔案輸入流
            is = new FileInputStream(file);
            // 從流裡將圖片寫入緩衝圖片區
            src = ImageIO.read(is);
            result[0] = src.getWidth(null); // 得到源圖片寬
            result[1] = src.getHeight(null);// 得到源圖片高
            is.close();  //關閉輸入流
        } catch (Exception ef) {
            ef.printStackTrace();
        }
        return result;
    }

}


 作者:

原文連結:https://www.cnblogs.com/c2g5201314/p/10502630.html


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/1868/viewspace-2822208/,如需轉載,請註明出處,否則將追究法律責任。

相關文章