1. 程式人生 > 實用技巧 >將圖片生成縮圖Java程式碼實現

將圖片生成縮圖Java程式碼實現

在工作中經常會遇到圖片處理相關的需求,比如說一些圖片網站只展示相關的縮圖,而真實的圖片可能很大而不是直接展示。所以就需要在上傳相關的圖片後直接對圖片進行處理生成相關的縮圖。實現程式碼如下:

import java.awt.Color;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.util.Arrays;

import javax.imageio.ImageIO;

public class ImageUtil {

	private static String DEFAULT_PREVFIX = "thumb_";
	private static Boolean DEFAULT_FORCE = false;//建議該值為false

	/**
	 * <p>Title: thumbnailImage</p>
	 * <p>Description: 根據圖片路徑生成縮圖 </p>
	 * @param imagePath    原圖片路徑
	 * @param w            縮圖寬
	 * @param h            縮圖高
	 * @param prevfix    生成縮圖的字首
	 * @param force      是否強制按照寬高生成縮圖(如果為false,則生成最佳比例縮圖)
	 */
	public void thumbnailImage(String imagePath, int w, int h, String prevfix, boolean force){
		File imgFile = new File(imagePath);
		if(imgFile.exists()){
			try {
				// ImageIO 支援的圖片型別 : [BMP, bmp, jpg, JPG, wbmp, jpeg, png, PNG, JPEG, WBMP, GIF, gif]
				String types = Arrays.toString(ImageIO.getReaderFormatNames());
				String suffix = null;
				// 獲取圖片字尾
				if(imgFile.getName().indexOf(".") > -1) {
					suffix = imgFile.getName().substring(imgFile.getName().lastIndexOf(".") + 1);
				}
				// 型別和圖片字尾全部小寫,然後判斷後綴是否合法
				if(suffix == null || types.toLowerCase().indexOf(suffix.toLowerCase()) < 0){
					System.out.println("Sorry, the image suffix is illegal. the standard image suffix is {}." + types);
					return ;
				}
				System.out.println("target image's size, width:{"+w+"}, height:{"+h+"}.");
				Image img = ImageIO.read(imgFile);
				if(!force){
					// 根據原圖與要求的縮圖比例,找到最合適的縮圖比例
					int width = img.getWidth(null);
					int height = img.getHeight(null);
					if((width*1.0)/w < (height*1.0)/h){
						if(width > w){
							h = Integer.parseInt(new java.text.DecimalFormat("0").format(height * w/(width*1.0)));
							System.out.println("change image's height, width:{"+w+"}, height:{"+h+"}.");
						}
					} else {
						if(height > h){
							w = Integer.parseInt(new java.text.DecimalFormat("0").format(width * h/(height*1.0)));
							System.out.println("change image's width,  width:{"+w+"}, height:{"+h+"}.");
						}
					}
				}
				BufferedImage bi = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
				Graphics g = bi.getGraphics();
				g.drawImage(img, 0, 0, w, h, Color.LIGHT_GRAY, null);
				g.dispose();
				String p = imgFile.getPath();
				// 將圖片儲存在原目錄並加上字首
				ImageIO.write(bi, suffix, new File(p.substring(0,p.lastIndexOf(File.separator)) + File.separator + prevfix +imgFile.getName()));
				System.out.println("縮圖在原路徑下生成成功");
			} catch (IOException e) {
				System.out.println("generate thumbnail image failed."+e);
			}
		}else{
			System.out.println("the image is not exist.");
		}
	}

	/**
	 * 	測試生成圖片縮圖
	 * @param args
	 */
	public static void main(String[] args) {
		new ImageUtil().thumbnailImage("C:/Users/Pictures/aaa.jpg", 50, 75,DEFAULT_PREVFIX,DEFAULT_FORCE);
	}
}