熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

Java 圖片壓縮實現思路及代碼

2022-06-13   來源: JSP教程 
本文為大家詳細介紹下圖片壓縮的具體實現思路及java代碼想學習的各位可以參考下哈希望對大家有所幫助  

  Java圖片壓縮代碼

復制代碼 代碼如下:

  
package comimg;
import javaawtImage;
import javaawtimageBufferedImage;
import javaioFile;
import javaioFileOutputStream;
import javaioIOException;
import javaximageioImageIO;
import comsunimagecodecjpegJPEGCodec;
import comsunimagecodecjpegJPEGImageEncoder;
/**
*
* @author 可樂加糖
*/
public class CompressPicDemo {
private File file = null; // 文件對象
private String inputDir; // 輸入圖路徑
private String outputDir; // 輸出圖路徑
private String inputFileName; // 輸入圖文件名
private String outputFileName; // 輸出圖文件名
private int outputWidth = ; // 默認輸出圖片寬
private int outputHeight = ; // 默認輸出圖片高
private boolean proportion = true; // 是否等比縮放標記(默認為等比縮放)
public CompressPicDemo() { // 初始化變量
inputDir = "";
outputDir = "";
inputFileName = "";
outputFileName = "";
outputWidth = ;
outputHeight = ;
}
public void setInputDir(String inputDir) {
thisinputDir = inputDir;
}
public void setOutputDir(String outputDir) {
thisoutputDir = outputDir;
}
public void setInputFileName(String inputFileName) {
thisinputFileName = inputFileName;
}
public void setOutputFileName(String outputFileName) {
thisoutputFileName = outputFileName;
}
public void setOutputWidth(int outputWidth) {
thisoutputWidth = outputWidth;
}
public void setOutputHeight(int outputHeight) {
thisoutputHeight = outputHeight;
}
public void setWidthAndHeight(int width int height) {
thisoutputWidth = width;
thisoutputHeight = height;
}
/*
* 獲得圖片大小
* 傳入參數 String path 圖片路徑
*/
public long getPicSize(String path) {
file = new File(path);
return filelength();
}
// 圖片處理
public String compressPic() {
try {
//獲得源文件
file = new File(inputDir + inputFileName);
if (!fileexists()) {
return "";
}
Image img = ImageIOread(file);
// 判斷圖片格式是否正確
if (imggetWidth(null) == ) {
Systemoutprintln(" cant readretry!" + "<BR>");
return "no";
} else {
int newWidth; int newHeight;
// 判斷是否是等比縮放
if (thisproportion == true) {
// 為等比縮放計算輸出的圖片寬度及高度
double rate = ((double) imggetWidth(null)) / (double) outputWidth + ;
double rate = ((double) imggetHeight(null)) / (double) outputHeight + ;
// 根據縮放比率大的進行縮放控制
double rate = rate > rate ? rate : rate;
newWidth = (int) (((double) imggetWidth(null)) / rate);
newHeight = (int) (((double) imggetHeight(null)) / rate);
} else {
newWidth = imggetWidth(null); // 輸出的圖片寬度
newHeight = imggetHeight(null); // 輸出的圖片高度
}
BufferedImage tag = new BufferedImage((int) newWidth (int) newHeight BufferedImageTYPE_INT_RGB);
/*
* ImageSCALE_SMOOTH 的縮略算法 生成縮略圖片的平滑度的
* 優先級比速度高 生成的圖片質量比較好 但速度慢
*/
taggetGraphics()drawImage(imggetScaledInstance(newWidth newHeight ImageSCALE_SMOOTH) null);
FileOutputStream out = new FileOutputStream(outputDir + outputFileName);
// JPEGImageEncoder可適用於其他圖片類型的轉換
JPEGImageEncoder encoder = JPEGCodeccreateJPEGEncoder(out);
encoderencode(tag);
outclose();
}
} catch (IOException ex) {
exprintStackTrace();
}
return "ok";
}
public String compressPic (String inputDir String outputDir String inputFileName String outputFileName) {
// 輸入圖路徑
thisinputDir = inputDir;
// 輸出圖路徑
thisoutputDir = outputDir;
// 輸入圖文件名
thisinputFileName = inputFileName;
// 輸出圖文件名
thisoutputFileName = outputFileName;
return compressPic();
}
public String compressPic(String inputDir String outputDir String inputFileName String outputFileName int width int height boolean gp) {
// 輸入圖路徑
thisinputDir = inputDir;
// 輸出圖路徑
thisoutputDir = outputDir;
// 輸入圖文件名
thisinputFileName = inputFileName;
// 輸出圖文件名
thisoutputFileName = outputFileName;
// 設置圖片長寬
setWidthAndHeight(width height);
// 是否是等比縮放 標記
thisproportion = gp;
return compressPic();
}
// main測試
// compressPic(大圖片路徑生成小圖片路徑大圖片文件名生成小圖片文名生成小圖片寬度生成小圖片高度是否等比縮放(默認為true))
public static void main(String[] arg) {
CompressPicDemo mypic = new CompressPicDemo();
Systemoutprintln("輸入的圖片大小" + mypicgetPicSize("e:jpg")/ + "KB");
mypiccompressPic("e:" "e:test" "jpg" "rjpg" false);
}
}


From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20319.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.