`
wj98127
  • 浏览: 267998 次
  • 性别: Icon_minigender_2
  • 来自: 北京
社区版块
存档分类
最新评论

struts2上传文件、生成缩略图、添加文字和图片水印

阅读更多

1、页面代码

<%@ page contentType="text/html;charset=UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<html>
<head>
<title>图片上传</title>
<script type="text/javascript">
		function upload(){
			var ff = document.forms.imageForm;
			var img = ff.file.value;
			if(img==null || img==""){
				alert("图片路径不允许为空!");
				return;
			}
			ff.target="_top";
			ff.method="post";
			ff.submit();
		}
	</script>

	</head>

	<body>
		<form id="imageForm" action="image.action"
			enctype="multipart/form-data">
			<p>
				------------------------------

			</p>
			上传图片:
			<input name="file" type=file value=''>
			<br>
			<input type="button" value="上传" onclick="upload()"
				style="cursor: pointer">
		</form>
		<p>
			-------------------------------------------------
		</p>
		<div>
			<c:if test="${ipath!=null}">
				<img src="${ipath}">
			</c:if>
		<div>
		<div>
			<c:if test="${imgPath!=null}">
				<img src="${imgPath}">
			</c:if>
		</div>
	</body>
</html>

  

 

2、action代码

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.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Date;

import javax.imageio.ImageIO;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionSupport;
import com.sun.image.codec.jpeg.JPEGCodec;
import com.sun.image.codec.jpeg.JPEGImageEncoder;

public class ImageAction extends ActionSupport {

	/**
	 * 图片上传、缩放、文字水印、图片水印
	 */
	private static final long serialVersionUID = -8982586906724587883L;

	private Log log = LogFactory.getLog(getClass());

	private static final int BUFFER_SIZE = 16 * 1024;

	private static final String TEXT_TITLE = "文字水印";
	
	private static final String WATER_IMG_NAME = "rzx.gif";

	// 输入参数:上传过来的文件路径
	private File file;

	/**
	 * 输入参数:文件名称 由struts的拦截器默认赋值,注意setter的写法:file+fileName
	 */
	private String fileName;

	/**
	 * 输入参数 由struts的拦截器默认赋值,注意setter的写法:file+contentType
	 */
	private String contentType;

	// 输出参数
	private String imageFileName;

	// 输出参数:原图保存路径
	private String ipath;
	
	// 输出参数:缩略图保存路径
	private String imgPath;

	// 输出参数
	private String json;

	public ImageAction() {

	}

	@Override
	public String execute() throws Exception {
		return uploadImage();
	}

	/**
	 * 得到文件名称
	 * 
	 * @param fileName
	 * @return
	 */
	private String getExtention(String fileName) {
		int pos = fileName.lastIndexOf(".");
		return fileName.substring(pos);
	}

	/**
	 * 拷贝
	 * 
	 * @param file
	 * @param imageFile
	 * @throws Exception
	 */
	private void copy(File src, File dist) throws Exception {
		log.debug("[src]--" + src);
		log.debug("[dist]--" + dist);

		try {
			InputStream in = null;
			OutputStream out = null;
			try {
				in = new BufferedInputStream(new FileInputStream(src), BUFFER_SIZE);
				out = new BufferedOutputStream(new FileOutputStream(dist), BUFFER_SIZE);

				byte[] buf = new byte[BUFFER_SIZE];
				while (in.read(buf) > 0) {
					out.write(buf);
				}
				out.close();
				in.close();
			} catch (FileNotFoundException e) {
				e.printStackTrace();
			} catch (IOException e) {
				e.printStackTrace();
			} finally {
				if (in != null)
					in.close();
				if (out != null)
					out.close();
			}
		} catch (Exception e) {
			e.printStackTrace();
			throw new Exception(e);
		}

	}

	/**
	 * 图片上传
	 * 
	 * @return
	 */
	public String uploadImage() throws Exception {
		log.debug("[file]--" + file);
		log.debug("[file name]--" + fileName);
		imageFileName = new Date().getTime() + getExtention(fileName);

		// 得到文件存放路径
		log.debug("[imageFileName]--" + imageFileName);
		String dir = ServletActionContext.getServletContext().getRealPath("/UploadImages");
		File dirs = new File(dir);
		if (!dirs.exists())
			dirs.mkdir();

		// 使用原来的文件名保存图片
		String path = dir + "/" + fileName;
		File imageFile = new File(path);

		copy(file, imageFile);

		// 缩放
		zoom(imageFile);

		// 给大图添加文字水印
//		watermark(imageFile);
		// 给大图添加图片水印,可以是gif或png格式
		imageWaterMark(imageFile);

		// 创建子目录 得到添加水印后的图片的存储路径,子目录只能一级一级的建
		String dist = dir + "/water";
		File outFile = new File(dist);
		if (!outFile.exists())
			outFile.mkdir();
		File sImgpath = new File(dist + "/" + fileName);

		// 给小图添加文字水印
	//	watermark(sImgpath);
		// 给小图添加图片水印,可以是gif或png格式
		imageWaterMark(sImgpath);

		// 大图路径
		ipath = "UploadImages/" + fileName;
		// 小图路径
		imgPath = "UploadImages/water/" + fileName;

		return SUCCESS;
	}

	/**
	 * 缩放处理
	 * 
	 * @return
	 */
	public void zoom(File imageFile) throws Exception {
		log.debug("[zoom][imageFile]--" + imageFile);
		try {

			// 缩略图存放路径
			File todir = new File(ServletActionContext.getServletContext().getRealPath("/UploadImages") + "/water");
			if (!todir.exists()) {
				todir.mkdir();
			}

			if (!imageFile.isFile())
				throw new Exception(imageFile + " is not image file error in CreateThumbnail!");

			File sImg = new File(todir, fileName);

			BufferedImage Bi = ImageIO.read(imageFile);
			// 假设图片宽 高 最大为130 80,使用默认缩略算法
			Image Itemp = Bi.getScaledInstance(130, 80, Bi.SCALE_DEFAULT);

			double Ratio = 0.0;
			if ((Bi.getHeight() > 130) || (Bi.getWidth() > 80)) {
				if (Bi.getHeight() > Bi.getWidth())
					Ratio = 80.0 / Bi.getHeight();
				else
					Ratio = 130.0 / Bi.getWidth();

				AffineTransformOp op = new AffineTransformOp(AffineTransform.getScaleInstance(Ratio, Ratio), null);
				Itemp = op.filter(Bi, null);
			}

			ImageIO.write((BufferedImage) Itemp, "jpg", sImg);
			
		} catch (IOException e) {
			e.printStackTrace();
			throw new Exception(e);
		}
	}

	/**
	 * 添加文字水印
	 * 
	 * @return
	 * @throws Exception
	 * @throws Exception
	 */
	public void watermark(File img) throws Exception {
		log.debug("[watermark file name]--" + img.getPath());
		try {

			if (!img.exists()) {
				throw new IllegalArgumentException("file not found!");
			}

			log.debug("[watermark][img]--" + img);

			// 创建一个FileInputStream对象从源图片获取数据流
			FileInputStream sFile = new FileInputStream(img);

			// 创建一个Image对象并以源图片数据流填充
			Image src = ImageIO.read(sFile);

			// 得到源图宽
			int width = src.getWidth(null);
			// 得到源图长
			int height = src.getHeight(null);

			// 创建一个BufferedImage来作为图像操作容器
			BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
			// 创建一个绘图环境来进行绘制图象
			Graphics2D g = image.createGraphics();
			// 将原图像数据流载入这个BufferedImage
			log.debug("width:" + width + " height:" + height);
			g.drawImage(src, 0, 0, width, height, null);
			// 设定文本字体
			g.setFont(new Font("宋体", Font.BOLD, 28));
			String rand = TEXT_TITLE;
			// 设定文本颜色
			g.setColor(Color.blue);
			// 设置透明度
			g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP, 0.5f));
			// 向BufferedImage写入文本字符,水印在图片上的坐标
			g.drawString(rand, width - (width - 20), height - (height - 60));
			// 使更改生效
			g.dispose();
			// 创建输出文件流
			FileOutputStream outi = new FileOutputStream(img);
			// 创建JPEG编码对象
			JPEGImageEncoder encodera = JPEGCodec.createJPEGEncoder(outi);
			// 对这个BufferedImage (image)进行JPEG编码
			encodera.encode(image);
			// 关闭输出文件流
			outi.close();
			sFile.close();

		} catch (IOException e) {
			e.printStackTrace();
			throw new Exception(e);
		}
	}

	/**
	 * 添加图片水印
	 * 
	 */
	public void imageWaterMark(File imgFile) throws Exception {
		try {
			// 目标文件
			Image src = ImageIO.read(imgFile);
			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);
			
			// 水印文件 路径
			String waterImgPath = ServletActionContext.getServletContext().getRealPath("/UploadImages")+"/"+WATER_IMG_NAME;
			File waterFile = new File(waterImgPath);
			Image waterImg = ImageIO.read(waterFile);
			
			int w_wideth = waterImg.getWidth(null);
			int w_height = waterImg.getHeight(null);
			g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP, 0.5f));
			g.drawImage(waterImg, (wideth - w_wideth) / 2, (height - w_height) / 2, w_wideth, w_height, null);
			// 水印文件结束
			
			g.dispose();
			FileOutputStream out = new FileOutputStream(imgFile);
			JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
			encoder.encode(image);
			out.close();
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

	public void setFile(File file) {
		this.file = file;
	}

	public String getIpath() {
		return ipath;
	}

	public void setFileFileName(String fileName) {
		this.fileName = fileName;
	}

	public void setImageFileName(String imageFileName) {
		this.imageFileName = imageFileName;
	}

	public String getJson() {
		return json;
	}

	public void setFileContentType(String fileContentType) {
		this.contentType = fileContentType;
	}

	public String getImgPath() {
		return imgPath;
	}

}

 

3、struts.xml配置文件

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "struts-2.0.dtd" >
<struts>
	<include file="struts-default.xml" />

	<constant name="struts.objectFactory" value="spring" />
	<constant name="struts.devMode" value="false" />
	<constant name="struts.locale" value="zh_CN" />
	<constant name="struts.multipart.maxSize" value="10000000000000" />
	<constant name="struts.i18n.encoding" value="utf-8" />

	<package name="test" extends="struts-default">
		<interceptors>
			<interceptor-stack name="commonsStack">
				<interceptor-ref name="exception"></interceptor-ref>
				<interceptor-ref name="prepare" />
				<interceptor-ref name="params" />
				<interceptor-ref name="validation" />
				<interceptor-ref name="workflow" />
			</interceptor-stack>
			<interceptor-stack name="uploadStack">
				<interceptor-ref name="fileUpload">
					<!-- 配置允许上传的文件类型  -->
				 	<param name="allowedTypes">
						image/bmp,image/png,image/gif,image/jpeg,image/jpg
					</param>
					<!-- 配置允许上传的文件大小  -->
					<param name="maximumSize">50485760</param>
					<!-- 50M=50*1024*1024 byte-->
				</interceptor-ref>
				<interceptor-ref name="commonsStack" />
			</interceptor-stack>
		</interceptors>

		<!-- 默认拦截器 -->
		<default-interceptor-ref name="commonsStack" />
	</package>
	
	<package name="image" extends="test">
		<action name="image" class="imageAction">
			<interceptor-ref name="uploadStack"></interceptor-ref>
			<result name="input">/image.jsp</result>
			<result name="success">/image.jsp</result>
		</action>
	</package>
</struts>

 

 4、spring的配置比较简单就不贴了,在<beans>里加入一个bean就可以了。

 

以上完毕!

 

分享到:
评论

相关推荐

    struts2图片上传并生成缩略图,展示缩略图点击显示大图

    在这个场景中,我们将关注如何使用Struts2框架结合FileUpload库来实现图片上传,并通过生成缩略图来优化用户体验。Struts2是一个流行的Java Web框架,它提供了一种结构化的方式来处理用户请求,而FileUpload则是处理...

    Struts2上传图片并生成等比例缩略图的实例

    这个实例展示了如何在Struts2框架中集成图片上传和生成缩略图的功能,这在构建用户交互丰富的Web应用时非常有用。通过这样的实现,用户不仅可以上传图片,还可以快速预览等比例的缩略图,提高了用户体验。

    Struts上传图片生成缩略图

    总的来说,Struts上传图片并生成缩略图的过程涉及到前端表单提交、后端Action处理、文件保存以及图像处理等多个步骤。通过合理地组织代码和利用Java提供的API,可以实现高效且稳定的图片上传与缩略图生成功能。在...

    Struts2实现图片添加水印

    要添加文字水印,首先需要一个能够处理图像并添加文本的库,如Java的`java.awt`和`javax.imageio`包。创建一个Action类,该类包含处理图片和添加水印的方法。使用`Graphics2D`对象来绘制文字,设置字体、颜色、角度...

    struts2 上传图片显示

    总的来说,使用Struts2上传图片并显示缩略图涉及多个步骤:配置Struts2 Action,处理文件上传,生成缩略图,以及在页面上展示图片。这个过程需要对Struts2框架、文件I/O、图片处理以及Web安全有深入理解。通过实践,...

    struts2实现文件上传下载

    在`struts.xml`配置文件中,为需要支持文件上传的Action添加`params`和`fileUpload`拦截器,并设置允许的最大上传大小。例如: ```xml &lt;package name="default" namespace="/" extends="struts-default"&gt; ...

    ckeditor struts2整合文件上传(图片缩略图展示)

    自己实现的ckeditor文件上传,上网找了各种资料,对代码做了极大的删减,通俗易懂,可作为CMS项目的参考,对浏览器的兼容性很好,支持已上传图片的缩略图展示效果,使用eclipse做出来的,很值得学习和参考!

    struts2-java图片添加水印

    在myeclipse中基于struts2框架实现的图片上传添加水印效果。 1、支持,但图片上传,添加文字、图片(logo)水印。 2、支持多图片上传,批量添加文字、图片(logo)水印。 已通过测试,且有文档说明,希望能够为其他同学...

    struts2图片上传并预览

    1. 添加依赖:在项目中,你需要添加Struts2的核心库和文件上传插件。Struts2的FileUpload插件提供了处理文件上传的功能。确保`struts2-core`和`struts2-convention-plugin`以及`struts2-file-uploading-plugin`在你...

    Struts2文件流方式导出下载excel、Txt、image图片

    2. **配置struts.xml**:在Struts2的配置文件中,我们需要为这个Action添加相应的配置,指定返回的`StreamingResult`结果类型和对应的视图。 ```xml &lt;param name="contentType"&gt;application/octet-stream ...

    struts2文件上传下载源代码

    在Struts2中,文件上传和下载是常见的功能需求,特别是在处理用户交互和数据交换时。这篇博客文章提供的"struts2文件上传下载源代码"旨在帮助开发者理解和实现这些功能。 文件上传功能允许用户从他们的设备上传文件...

    struts2+jquery+ajax文件异步上传

    Struts2、jQuery和Ajax是Web开发中的三个关键组件,它们共同构成了文件异步上传的基础框架。这个项目是在MyEclipse环境下实现的一个简单的文件上传功能,让我们深入了解一下这些技术及其在文件上传中的应用。 首先...

    struts2图片和文件上传

    标题与描述概述的知识点主要集中在Struts2框架中的文件与图片上传功能,下面将详细解析这一过程的关键步骤和实现机制。 ### Struts2文件与图片上传详解 #### 准备工作 - **导入必要的库**:为了实现文件上传功能,...

    struts2 上传图片时对图片进行压缩, 生成一张小图片

    在Java Web开发中,Struts2是一个非常流行的MVC框架,用于...以上就是实现“在Struts2中上传图片并进行压缩、生成小图片”所需的主要步骤和技术。在实际开发中,还需要根据项目需求和安全规范进行适当的调整和优化。

    Struts2图片文件上传,判断图片格式和图片大小.rar_Struts2图片文件上传

    在Struts2框架中,图片文件的上传是一个常见的功能需求,尤其在网站或者应用程序中,用户可能需要上传个人头像、商品图片等。本教程主要关注如何实现这一过程,同时包含图片格式的验证以及文件大小的限制。我们将...

    ssh框架用struts2 hibernate实现图片的上传源码

    以上就是SSH框架中使用Struts2和Hibernate实现图片上传的主要知识点,涵盖了Web请求处理、ORM框架、文件上传、数据库操作以及前端交互等多个方面。实际项目开发时,还需要结合具体的业务需求和安全规范进行详细设计...

    Struts2上传文件(直接用request)

    Struts2上传文件(直接用request)

    struts2 批量上传 图片+文件

    在这个场景中,我们讨论的是如何在Struts2中实现图片和文件的批量上传,并且在上传过程中显示进度条。 批量上传是指用户可以一次性选择多个文件进行上传,而不仅仅是一个文件。这通常需要前端界面支持多选文件的...

    struts2实现文件下载功能

    在Struts2的配置文件(struts.xml)中添加相应的配置。 3. **设置Content-Type和Content-Disposition**: - 在Action类中,使用`ValueStack`或`ActionContext`来设置HTTP响应的`Content-Type`和`Content-...

Global site tag (gtag.js) - Google Analytics