Java 後端壓縮圖片

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

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); // 獲得源圖長
}url

/**
* 按照寬度仍是高度進行壓縮
*
* @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);
}
}code

/**
* 以寬度爲基準,等比例放縮圖片
*
* @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();
}get

}it

相關文章
相關標籤/搜索