1. 程式人生 > >Java 後端壓縮圖片

Java 後端壓縮圖片

平滑 warn 正常 GC 繪制 java eight new wid

import java.io.*;
import java.util.Date;
import java.awt.*;
import java.awt.image.*;
import javax.imageio.ImageIO;
//import com.sun.image.codec.jpeg.*;

public class ImgCompress {
private Image img;
private int width;
private int height;

@SuppressWarnings("deprecation")
public static void main(String[] args) throws Exception {
System.out.println("開始:" + new Date().toLocaleString());
ImgCompress imgCom = new ImgCompress("C:\\Users\\fh123\\Desktop\\TIM圖片20180511172046.jpg");
imgCom.resizeFix(600, 600,"C:\\Users\\fh123\\Desktop\\TIM圖片20180511172046.jpg");
System.out.println("結束:" + new Date().toLocaleString());
}

public ImgCompress(String fileName) throws IOException {
File file = new File(fileName);// 讀入文件
img = ImageIO.read(file); // 構造Image對象
width = img.getWidth(null); // 得到源圖寬
height = img.getHeight(null); // 得到源圖長
}

/**
* 按照寬度還是高度進行壓縮
*
* @param w
* int 最大寬度
* @param h
* int 最大高度
*/
public void resizeFix(int w, int h,String urlPath) throws IOException {
if (width / height > w / h) {
resizeByWidth(w,urlPath);
} else {
resizeByHeight(h,urlPath);
}
}

/**
* 以寬度為基準,等比例放縮圖片
*
* @param w
* int 新寬度
*/
public void resizeByWidth(int w,String urlPath) throws IOException {
int h = (int) (height * w / width);
resize(w, h,urlPath);
}

/**
* 以高度為基準,等比例縮放圖片
*
* @param h
* int 新高度
*/
public void resizeByHeight(int h,String urlPath) throws IOException {
int w = (int) (width * h / height);
resize(w, h,urlPath);
}

/**
* 強制壓縮/放大圖片到固定的大小
*
* @param w
* int 新寬度
* @param h
* int 新高度
*/
public void resize(int w, int h,String urlPath) throws IOException {
// SCALE_SMOOTH 的縮略算法 生成縮略圖片的平滑度的 優先級比速度高 生成的圖片質量比較好 但速度慢
BufferedImage image = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
image.getGraphics().drawImage(img, 0, 0, w, h, null); // 繪制縮小後的圖
File destFile = new File(urlPath);
FileOutputStream out = new FileOutputStream(destFile); // 輸出到文件流
ImageIO.write(image,"jpg", out);
// 可以正常實現bmp、png、gif轉jpg
//JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
//encoder.encode(image); // JPEG編碼
out.close();
}

}

Java 後端壓縮圖片