struts2中使用kindeditor上傳圖片(包括jmagic壓縮圖片)

項目中採用的是kindeditor3.4

UploadContentImgAction

@SuppressWarnings("serial")
@ParentPackage("control-center")
public class UploadContentImgAction extends BaseAction {
	private File up;
	private String upFileName;
	private String upContentType;
	private String fileDir = "uploads/articleContentImg";	
	private String imgTitle;
	private String align;
	private int imgWidth;
	private int imgHeight;
	
	/**
	 * kindeditor圖片上傳
	 * @return
	 * @throws Exception
	 */
	@Action("kindeditorImgUpload")
	public String kindeditorImgUpload() throws Exception {
		//只能傳圖片	
		try {
			if(!validatePostfix(upFileName)) {
				return "error";
			}
			User user = (User)getSession().get("user");
			String fileRealDir = getServletContext().getRealPath(fileDir);
			File file = up;
			String fileRealName = createfilename(user.getUserId());
			String fileName = fileRealName + upFileName.substring(upFileName.lastIndexOf(".")).toLowerCase();
			File newFile = new File(fileRealDir, fileName);
			FileUtils.copyFile(file, newFile);
			//壓縮圖片
			ImageUtil.resize(newFile.getPath(), newFile.getPath(), 500);	
			String id = "contentId";
			String url = "/" + fileDir + "/" + fileName;
			String border = "0";
			
			String result = "<script type='text/javascript'>parent.KE.plugin['image'].insert('" + id + "','" + url + "','" + imgTitle + "','" + imgHeight + "','" + imgHeight + "','" + border + "','" + align + "');</script>";
		
			getHttpServletResponse().getWriter().write(result);
		} catch (RuntimeException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return null;
	}
	/**
	 * 生成文件名 : 當前時間 + 隨機數 + 用戶id
	 */
	private String createfilename(int userId) {
		StringBuilder result = new StringBuilder();
		// 得到 本地的 當前時間
		String now = DateUtil.getLongStrFromDate(new Date());
		// 在 1000W 內隨機生成一個數字
		int rand = new Random().nextInt(9999999);
		// 去掉 - 去掉 : 去掉 空格 後,返回
		result.append(now.replace("-", "").replace(":", "").replace(" ", "")).append("_").append(rand).append("_").append(userId);
		return result.toString();
	}
	/**
	 * 驗證後綴名     應該從配置文件中獲取
	 */
	public boolean validatePostfix(String filename) {
		// 定義可上傳文件的 類型
		List<String> fileTypes = new ArrayList<String>();

		// 圖片
		fileTypes.add("jpg");
		fileTypes.add("jpeg");
		fileTypes.add("bmp");
		fileTypes.add("gif");
		fileTypes.add("png");

		// 得到文件尾數 並 進行小寫轉換
		String postfix = filename.substring(filename.lastIndexOf(".") + 1).toLowerCase();
		return fileTypes.contains(postfix) ? true : false;
	}
	public File getUp() {
		return up;
	}

	public void setUp(File up) {
		this.up = up;
	}

	public String getUpFileName() {
		return upFileName;
	}

	public void setUpFileName(String upFileName) {
		this.upFileName = upFileName;
	}

	public String getUpContentType() {
		return upContentType;
	}

	public void setUpContentType(String upContentType) {
		this.upContentType = upContentType;
	}

	public String getImgTitle() {
		return imgTitle;
	}

	public void setImgTitle(String imgTitle) {
		this.imgTitle = imgTitle;
	}

	public int getImgWidth() {
		return imgWidth;
	}

	public void setImgWidth(int imgWidth) {
		this.imgWidth = imgWidth;
	}

	public int getImgHeight() {
		return imgHeight;
	}

	public void setImgHeight(int imgHeight) {
		this.imgHeight = imgHeight;
	}

	public String getAlign() {
		return align;
	}

	public void setAlign(String align) {
		this.align = align;
	}
}

 

 ImageUitl

package com.yancheng.myframe.util;

import java.awt.AlphaComposite;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.geom.AffineTransform;
import java.awt.image.AffineTransformOp;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import javax.imageio.ImageIO;
import magick.ImageInfo;
import magick.MagickImage;
import com.sun.image.codec.jpeg.JPEGCodec;
import com.sun.image.codec.jpeg.JPEGImageEncoder;

/**
 * @author
 * 
 */
public class ImageUtil {
	
	public final static int PHOTO_RATIO = 800; //縮放圖片係數
	static{
		System.setProperty("jmagick.systemclassloader", "no");
	}
	/**
	 * 圖片水印
	 * 
	 * @param pressImg 水印圖片
	 * @param targetImg 目標圖片
	 * @param x 修正值 默認在中間
	 * @param y 修正值 默認在中間
	 * @param alpha 透明度
	 */
	public final static void pressImage(String pressImg, String targetImg,
			int x, int y, float alpha) {
		try {
			File img = new File(targetImg);
			Image src = ImageIO.read(img);
			int wideth = src.getWidth(null);
			int height = src.getHeight(null);
			BufferedImage image = new BufferedImage(wideth, height,
					BufferedImage.TYPE_INT_RGB);
			Graphics2D g = image.createGraphics();
			g.drawImage(src, 0, 0, wideth, height, null);
			// 水印文件
			Image src_biao = ImageIO.read(new File(pressImg));
			int wideth_biao = src_biao.getWidth(null);
			int height_biao = src_biao.getHeight(null);
			g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP,
					alpha));
			g.drawImage(src_biao, (wideth - wideth_biao) / 2,
					(height - height_biao) / 2, wideth_biao, height_biao, null);
			// 水印文件結束
			g.dispose();
			ImageIO.write((BufferedImage) image, "jpg", img);
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

	/**
	 * 文字水印
	 * 
	 * @param pressText 水印文字
	 * @param targetImg 目標圖片
	 * @param fontName 字體名稱
	 * @param fontStyle 字體樣式
	 * @param color 字體顏色
	 * @param fontSize 字體大小
	 * @param x 修正值
	 * @param y 修正值
	 * @param alpha 透明度
	 */
	public static void pressText(String pressText, String targetImg, String fontName, int fontStyle, Color color, int fontSize, int x,
			int y, float alpha) {
		try {
			File img = new File(targetImg);
			Image src = ImageIO.read(img);
			int width = src.getWidth(null);
			int height = src.getHeight(null);
			BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
			Graphics2D g = image.createGraphics();
			g.drawImage(src, 0, 0, width, height, null);
			g.setColor(color);
			g.setFont(new Font(fontName, fontStyle, fontSize));
			g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP, alpha));
			g.drawString(pressText, (width - (getLength(pressText) * fontSize)) / 2 + x, (height - fontSize) / 2 + y);
			g.dispose();
			ImageIO.write((BufferedImage) image, "jpg", img);
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

	/**
	 * 縮放 效果太差 ps: Graphics下的 還有 AffineTransform下的
	 * 縮放都是針對"圖形"而不是"圖像"的,所以處理後圖片很不清晰
	 * @param filePath 圖片路徑
	 * @param height 高度
	 * @param width 寬度
	 * @param bb 比例不對時是否需要補白
	 */
	public static void resizeImgcale(String filePath, int height, int width, boolean bb) {
		try {
			double ratio = 0.0; // 縮放比例
			File f = new File(filePath);
			BufferedImage bi = ImageIO.read(f);
			Image itemp = bi.getScaledInstance(width, height, bi.SCALE_SMOOTH);
			// 計算比例
			if ((bi.getHeight() > height) || (bi.getWidth() > width)) {
				if (bi.getHeight() > bi.getWidth()) {
					ratio = (new Integer(height)).doubleValue() / bi.getHeight();
				} else {
					ratio = (new Integer(width)).doubleValue() / bi.getWidth();
				}
				AffineTransformOp op = new AffineTransformOp(AffineTransform.getScaleInstance(ratio, ratio), null);
				itemp = op.filter(bi, null);
			}
			if (bb) {
				BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
				Graphics2D g = image.createGraphics();
				g.setColor(Color.white);
				g.fillRect(0, 0, width, height);
				if (width == itemp.getWidth(null))
					g.drawImage(itemp, 0, (height - itemp.getHeight(null)) / 2,
							itemp.getWidth(null), itemp.getHeight(null),
							Color.white, null);
				else
					g.drawImage(itemp, (width - itemp.getWidth(null)) / 2, 0,
							itemp.getWidth(null), itemp.getHeight(null),
							Color.white, null);
				g.dispose();
				itemp = image;
			}
			ImageIO.write((BufferedImage) itemp, "jpg", f);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

	/**
	 * 計算字的長度
	 * 
	 * @param text
	 * @return
	 */
	public static int getLength(String text) {
		int length = 0;
		for (int i = 0; i < text.length(); i++) {
			if (new String(text.charAt(i) + "").getBytes().length > 1) {
				length += 2;
			} else {
				length += 1;
			}
		}
		return length / 2;
	}

	/**
	 * 壓縮圖片
	 * 
	 * @param imgsrc 源文件
	 * @param imgdist 目標文件
	 * @param widthdist 寬
	 * @param heightdist 高
	 */
	public static void resizeImg(String imgsrc, String imgdist, int widthdist, int heightdist) {
		try {
			File srcfile = new File(imgsrc);
			if (!srcfile.exists()) {
				return;
			}
			Image src = javax.imageio.ImageIO.read(srcfile);
			BufferedImage tag = new BufferedImage(widthdist, heightdist, BufferedImage.TYPE_INT_RGB);
			/*
			 * SCALE_SMOOTH:尺寸平滑 SCALE_AREA_AVERAGING:尺度區平均 SCALE_FAST:尺度快速
			 * SCALE_REPLICATE:尺度複製
			 */
			tag.getGraphics().drawImage(src.getScaledInstance(widthdist, heightdist, Image.SCALE_SMOOTH), 0, 0, null);
			FileOutputStream out = new FileOutputStream(imgdist);
			JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
			encoder.encode(tag);
			out.close();
		} catch (IOException ex) {
			ex.printStackTrace();
		}
	}

	/**
	 * 圖片壓縮
	 * @param picFrom
	 * @param picTo
	 * @param widthdist
	 * @param heightdist
	 */
	public static void resize(String picFrom, String picTo, int widthdist, int heightdist) {
		try {
			ImageInfo info = new ImageInfo(picFrom);
			MagickImage image = new MagickImage(new ImageInfo(picFrom));
			MagickImage scaled = image.scaleImage(widthdist, heightdist);// 小圖片文件的大小.
			scaled.setFileName(picTo);
			scaled.writeImage(info);
		} catch (Exception ex) {
			ex.printStackTrace();
		}
	}
	
	public static void resize(String picFrom, String picTo, int ratio) throws Exception {
		BufferedImage bi = ImageIO.read(new File(picFrom));
		//原始圖片屬性
		int srcWidth = bi.getWidth();
		int srcHeight = bi.getHeight();
		//生成圖片屬性
		int newWidth = srcWidth;
		int newHeight = srcHeight;
		//如果超出最大寬或高就壓縮
		if (srcWidth > ratio || newHeight > ratio) {
			//生成圖片width, height計算
			if (srcWidth >= srcHeight) {
				if (srcWidth < ratio) {
					return;
				}
				newWidth = ratio;
				newHeight = (int)(ratio * srcHeight / srcWidth);
			} else {
				if (srcHeight < ratio) {
					return;
				}
				newHeight = ratio;
				newWidth = (int)(ratio * srcWidth / srcHeight);
			}
		}
		resize(picFrom, picTo, newWidth, newHeight);
	}
	
	public static void resize(String picFrom, String picTo) throws Exception {
		resize(picFrom, picTo, PHOTO_RATIO);
	}

	public static void main(String[] args) throws Exception {
	//	resizeImg("d:/411766.jpg", "d:/411766_1.jpg", 800, 600);
	//	resize("d:/test_4.jpg", "d:/test_4_2.jpg", 800);
		pressText("歡喜冤家", "d:/411766.jpg", "簡體", Font.ITALIC, Color.black, 90, 40, 80, 0.5f);
	}

}

  

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章