java实现等比例缩略图

方式一、Thumbnailator类库:size()API方法,

方式二、Java AWT类图实现:根据缩略比例计算缩略图高度和宽度,使用Image类获得原图的缩放版本,使用ImageIO类保存缩略图---BufferedImage,ImageIO,Graphips

案例:

springMVC搭建:

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>Thumbrail</display-name>
  <servlet>
  	<servlet-name>springmvc</servlet-name>
  	<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  	<init-param>
  		<param-name>contextConfigLocation</param-name>
  		<param-value>classpath:applicationContext-mvc.xml</param-value>
  	</init-param>
  	<load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
  	<servlet-name>springmvc</servlet-name>
  	<url-pattern>/</url-pattern>
  </servlet-mapping>
  
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>
applicationContext-mvc.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans
	xmlns="http://www.springframework.org/schema/beans"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:p="http://www.springframework.org/schema/p"
	xsi:schemaLocation="http://www.springframework.org/schema/beans 
	http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
	http://www.springframework.org/schema/tx
	http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
	http://www.springframework.org/schema/context
	http://www.springframework.org/schema/context/spring-context-3.0.xsd
	http://www.springframework.org/schema/mvc
	http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
	">
	<mvc:default-servlet-handler/>
	<mvc:annotation-driven/>
	<context:component-scan base-package="*"/>
	<bean id="biewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolve">
		<property name="prefix" value="/"/>
		<property name="suffix" value=".jsp"/>
		<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
	</bean>
	<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
		<property name="defaultEncoding" value="utf-8"/>
		<property name="maxUploadSize" value="10485760000"/>
		<property name="maxInMemorySize" value="40960"/>
	</bean>
	
	  </beans>
index.jsp

<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>上传文件</title>
</head>
<body>
<div class="demo">
	<div class="bheader">
		<h2>---图片文件上传---</h2>
	</div>
	<div class="bbody">
		<form id="upload_form" enctype="multipart/from-data" method="post" action="${pageContext.request.contextPath}/thumbnail" >
			<h2>请选择上传图片</h2>
			<div>
				<input type="file" name="image" id="image"/>
				<input type="submit" value="上传"/>
			</div>
		</form>
	</div>
</div>
</body>
</html>
thumbnailAction.java

package com.thumbnail;

import javax.servlet.http.HttpSession;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.commons.CommonsMultipartFile;
import org.springframework.web.portlet.ModelAndView;

@Controller
@RequestMapping("/")
public class ThumbnailAction {
	private UploadService u ;
	private ThumbnailService t;
	//springmvc会将用户提交的文件信息封装成为CommonsMultipartFile文件类型:方法的参数名称file和文件中提交的文件名称image是不对应的,需要注解下,让其统一
	@RequestMapping(value="/thumbnail",method=RequestMethod.POST)
	public ModelAndView thumbnail(@RequestParam("image")CommonsMultipartFile file,HttpSession session) throws Exception{
		String uploadPath = "/images";//缩略图上传目录--相对路径
		String realUploadPath = session.getServletContext().getRealPath(uploadPath);//得到绝对路径
		
		String imagerUrl = u.uploadImage(file, uploadPath, realUploadPath);;//原图路径
		String thumImageUrl = t.thumbnail(file, uploadPath, realUploadPath);//缩略图路径
		
		ModelAndView ret = new ModelAndView();
		ret.addObject("imageURL",imagerUrl);
		ret.addObject("thumImageURL",thumImageUrl);
		
		ret.setViewName("thumbnail");
		return ret;
	}
	@Autowired
	public void setU(UploadService u) {
		this.u = u;
	}
	@Autowired
	public void setT(ThumbnailService t) {
		this.t = t;
	}
}
uploadService.java

package com.thumbnail;

import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

import org.springframework.stereotype.Service;
import org.springframework.web.multipart.commons.CommonsMultipartFile;
/**
 * 文件上传实现
 * @author Administrator
 *
 */
@Service
public class UploadService {
	
	public String uploadImage(CommonsMultipartFile file,String uploadPath,String realUploadPath){
		InputStream is = null;
		OutputStream out = null;
		try {
			is = file.getInputStream();//得到文件流
			String des = realUploadPath + "/" +file.getOriginalFilename();
			out = new FileOutputStream(des);//得到输出流
			
			byte[] buffer = new byte[1024];
			int len = 0;
			while((len = is.read(buffer)) > 0){
				out.write(buffer);
			}
		} catch (Exception e) {
			// TODO: handle exception
		}finally{
			if(is != null){
				try {
					is.close();
				} catch (IOException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
			}
			if(out != null){
				try {
					out.close();
				} catch (IOException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
			}
		}
		
		return uploadPath+"/"+file.getOriginalFilename();
	}
}
ThumbnailService.java

package com.thumbnail;

import net.coobird.thumbnailator.Thumbnails;

import org.springframework.stereotype.Service;
import org.springframework.web.multipart.commons.CommonsMultipartFile;

/**
 * 缩略图服务类
 * @author Administrator
 *
 */
@Service
public class ThumbnailService {
	public static final int WIDTH = 100;
	public static final int HEIGHT = 100;
	
	public String thumbnail(CommonsMultipartFile file, String uploadPath,String realUploadPath){
		try {
			String des = realUploadPath + "thum_" + file.getOriginalFilename();
			Thumbnails.of(file.getInputStream()).size(WIDTH, HEIGHT).toFile(des);//生成缩略图
		} catch (Exception e) {
			// TODO: handle exception
		}
		
		return uploadPath + "/thum_" + file.getOriginalFilename();
	}
}
thumbnail.jsp

<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>操作结果</title>
</head>
<body>
<h4>图片信息</h4>
<hr />
<table width="200">
	<tr>
		<td width="50%" align="center"><img src="${pageContext.request.contextPath }${imageURL}" width="500"></td>
		<td width="50%" align="center"><img src="${pageContext.request.contextPath }${thumbImageURL}" /></td>
	</tr>
</table>
<hr/>
<a href="${pageContext.request.contextPath }">返回</a>
</body>
</html>








评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值