- 浏览: 239099 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
thepastsee:
304572183股票交流 欢迎加入
实时股票 -
345161974:
很不错,我第一个接触的CSS卡片布局效果,多谢
css卡片效果
过去做的项目都是针对企业级应用,第一次开发新闻版块图片上传的功能,需要解决用户上传图片后,按照用户规定的尺寸大小或者按照图片比例,对图片进行压缩。
自己试写的工具类,写的时候考虑了几个关键点:
1、图片格式
JAVA的API很好,com.sun.image.codec.jpeg.JPEGCodec和com.sun.image.codec.jpeg.JPEGImageEncoder 这两个类基本上自动解决了类型转换的问题,可以正常实现bmp转jpg、png转jpg、gif转jpg ,但是暂时还没有解决gif转gif的功能。
2、画面质量的问题
BufferedImage tag = new BufferedImage((int)newWidth, (int) newHeight, BufferedImage.TYPE_INT_RGB);
// Image.SCALE_SMOOTH 的缩略算法 生成缩略图片的平滑度的 优先级比速度高 生成的图片质量比较好 但速度慢
tag.getGraphics().drawImage(img.getScaledInstance(newWidth, newHeight, Image.SCALE_SMOOTH), 0, 0, null);
3、压缩速度
测试36MB的bmp图片(8192*6144)压缩成(160*120)的jpg的5KB图片,只需要2-3秒的时间。批量处理100张(1027*768)的bmp图像,转换成(120*80)的jpg图片总共只需要17秒。
4、根据用户喜好选择压缩模式
按比例或者按规定尺寸
//compressPic(大图片路径,生成小图片路径,大图片文件名,生成小图片文名,生成小图片宽度,生成小图片高度,是否等比缩放(默认为true))
以下是源码,如觉得可以更加完善的话,希望大家可以提供点意见! !
- /**
- * 缩略图实现,将图片(jpg、bmp、png、gif等等)真实的变成想要的大小
- */
- package com.joewalker.test;
- import java.awt.Image;
- import java.awt.image.BufferedImage;
- import java.io.File;
- import java.io.FileOutputStream;
- import java.io.IOException;
- import javax.imageio.ImageIO;
- import com.sun.image.codec.jpeg.JPEGCodec;
- import com.sun.image.codec.jpeg.JPEGImageEncoder;
- /*******************************************************************************
- * 缩略图类(通用) 本java类能将jpg、bmp、png、gif图片文件,进行等比或非等比的大小转换。 具体使用方法
- * compressPic(大图片路径,生成小图片路径,大图片文件名,生成小图片文名,生成小图片宽度,生成小图片高度,是否等比缩放(默认为true))
- */
- public class CompressPicDemo {
- private File file = null ; // 文件对象
- private String inputDir; // 输入图路径
- private String outputDir; // 输出图路径
- private String inputFileName; // 输入图文件名
- private String outputFileName; // 输出图文件名
- private int outputWidth = 100 ; // 默认输出图片宽
- private int outputHeight = 100 ; // 默认输出图片高
- private boolean proportion = true ; // 是否等比缩放标记(默认为等比缩放)
- public CompressPicDemo() { // 初始化变量
- inputDir = "" ;
- outputDir = "" ;
- inputFileName = "" ;
- outputFileName = "" ;
- outputWidth = 100 ;
- outputHeight = 100 ;
- }
- public void setInputDir(String inputDir) {
- this .inputDir = inputDir;
- }
- public void setOutputDir(String outputDir) {
- this .outputDir = outputDir;
- }
- public void setInputFileName(String inputFileName) {
- this .inputFileName = inputFileName;
- }
- public void setOutputFileName(String outputFileName) {
- this .outputFileName = outputFileName;
- }
- public void setOutputWidth( int outputWidth) {
- this .outputWidth = outputWidth;
- }
- public void setOutputHeight( int outputHeight) {
- this .outputHeight = outputHeight;
- }
- public void setWidthAndHeight( int width, int height) {
- this .outputWidth = width;
- this .outputHeight = height;
- }
- /*
- * 获得图片大小
- * 传入参数 String path :图片路径
- */
- public long getPicSize(String path) {
- file = new File(path);
- return file.length();
- }
- // 图片处理
- public String compressPic() {
- try {
- //获得源文件
- file = new File(inputDir + inputFileName);
- if (!file.exists()) {
- return "" ;
- }
- Image img = ImageIO.read(file);
- // 判断图片格式是否正确
- if (img.getWidth( null ) == - 1 ) {
- System.out.println(" can't read,retry!" + "<BR>" );
- return "no" ;
- } else {
- int newWidth; int newHeight;
- // 判断是否是等比缩放
- if ( this .proportion == true ) {
- // 为等比缩放计算输出的图片宽度及高度
- double rate1 = (( double ) img.getWidth( null )) / ( double ) outputWidth + 0.1 ;
- double rate2 = (( double ) img.getHeight( null )) / ( double ) outputHeight + 0.1 ;
- // 根据缩放比率大的进行缩放控制
- double rate = rate1 > rate2 ? rate1 : rate2;
- newWidth = (int ) ((( double ) img.getWidth( null )) / rate);
- newHeight = (int ) ((( double ) img.getHeight( null )) / rate);
- } else {
- newWidth = outputWidth; // 输出的图片宽度
- newHeight = outputHeight; // 输出的图片高度
- }
- BufferedImage tag = new BufferedImage(( int ) newWidth, ( int ) newHeight, BufferedImage.TYPE_INT_RGB);
- /*
- * Image.SCALE_SMOOTH 的缩略算法 生成缩略图片的平滑度的
- * 优先级比速度高 生成的图片质量比较好 但速度慢
- */
- tag.getGraphics().drawImage(img.getScaledInstance(newWidth, newHeight, Image.SCALE_SMOOTH), 0 , 0 , null );
- FileOutputStream out = new FileOutputStream(outputDir + outputFileName);
- // JPEGImageEncoder可适用于其他图片类型的转换
- JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
- encoder.encode(tag);
- out.close();
- }
- } catch (IOException ex) {
- ex.printStackTrace();
- }
- return "ok" ;
- }
- public String compressPic (String inputDir, String outputDir, String inputFileName, String outputFileName) {
- // 输入图路径
- this .inputDir = inputDir;
- // 输出图路径
- this .outputDir = outputDir;
- // 输入图文件名
- this .inputFileName = inputFileName;
- // 输出图文件名
- this .outputFileName = outputFileName;
- return compressPic();
- }
- public String compressPic(String inputDir, String outputDir, String inputFileName, String outputFileName, int width, int height, boolean gp) {
- // 输入图路径
- this .inputDir = inputDir;
- // 输出图路径
- this .outputDir = outputDir;
- // 输入图文件名
- this .inputFileName = inputFileName;
- // 输出图文件名
- this .outputFileName = outputFileName;
- // 设置图片长宽
- setWidthAndHeight(width, height);
- // 是否是等比缩放 标记
- this .proportion = gp;
- return compressPic();
- }
- // main测试
- // compressPic(大图片路径,生成小图片路径,大图片文件名,生成小图片文名,生成小图片宽度,生成小图片高度,是否等比缩放(默认为true))
- public static void main(String[] arg) {
- CompressPicDemo mypic = new CompressPicDemo();
- System.out.println("输入的图片大小:" + mypic.getPicSize( "e:\\1.jpg" )/ 1024 + "KB" );
- int count = 0 ; // 记录全部图片压缩所用时间
- for ( int i = 0 ; i < 100 ; i++) {
- int start = ( int ) System.currentTimeMillis(); // 开始时间
- mypic.compressPic("e:\\", " e:\\test\\ ", " 1 .jpg ", " r1 "+i+" .jpg", 120 , 120 , true );
- int end = ( int ) System.currentTimeMillis(); // 结束时间
- int re = end-start; // 但图片生成处理时间
- count += re; System.out.println("第" + (i+ 1 ) + "张图片压缩处理使用了: " + re + "毫秒" );
- System.out.println("输出的图片大小:" + mypic.getPicSize( "e:\\test\\r1" +i+ ".jpg" )/ 1024 + "KB" );
- }
- System.out.println("总共用了:" + count + "毫秒" );
- }
- }
/** * 缩略图实现,将图片(jpg、bmp、png、gif等等)真实的变成想要的大小 */ package com.joewalker.test; import java.awt.Image; import java.awt.image.BufferedImage; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import javax.imageio.ImageIO; import com.sun.image.codec.jpeg.JPEGCodec; import com.sun.image.codec.jpeg.JPEGImageEncoder; /******************************************************************************* * 缩略图类(通用) 本java类能将jpg、bmp、png、gif图片文件,进行等比或非等比的大小转换。 具体使用方法 * compressPic(大图片路径,生成小图片路径,大图片文件名,生成小图片文名,生成小图片宽度,生成小图片高度,是否等比缩放(默认为true)) */ public class CompressPicDemo { private File file = null; // 文件对象 private String inputDir; // 输入图路径 private String outputDir; // 输出图路径 private String inputFileName; // 输入图文件名 private String outputFileName; // 输出图文件名 private int outputWidth = 100; // 默认输出图片宽 private int outputHeight = 100; // 默认输出图片高 private boolean proportion = true; // 是否等比缩放标记(默认为等比缩放) public CompressPicDemo() { // 初始化变量 inputDir = ""; outputDir = ""; inputFileName = ""; outputFileName = ""; outputWidth = 100; outputHeight = 100; } public void setInputDir(String inputDir) { this.inputDir = inputDir; } public void setOutputDir(String outputDir) { this.outputDir = outputDir; } public void setInputFileName(String inputFileName) { this.inputFileName = inputFileName; } public void setOutputFileName(String outputFileName) { this.outputFileName = outputFileName; } public void setOutputWidth(int outputWidth) { this.outputWidth = outputWidth; } public void setOutputHeight(int outputHeight) { this.outputHeight = outputHeight; } public void setWidthAndHeight(int width, int height) { this.outputWidth = width; this.outputHeight = height; } /* * 获得图片大小 * 传入参数 String path :图片路径 */ public long getPicSize(String path) { file = new File(path); return file.length(); } // 图片处理 public String compressPic() { try { //获得源文件 file = new File(inputDir + inputFileName); if (!file.exists()) { return ""; } Image img = ImageIO.read(file); // 判断图片格式是否正确 if (img.getWidth(null) == -1) { System.out.println(" can't read,retry!" + "<BR>"); return "no"; } else { int newWidth; int newHeight; // 判断是否是等比缩放 if (this.proportion == true) { // 为等比缩放计算输出的图片宽度及高度 double rate1 = ((double) img.getWidth(null)) / (double) outputWidth + 0.1; double rate2 = ((double) img.getHeight(null)) / (double) outputHeight + 0.1; // 根据缩放比率大的进行缩放控制 double rate = rate1 > rate2 ? rate1 : rate2; newWidth = (int) (((double) img.getWidth(null)) / rate); newHeight = (int) (((double) img.getHeight(null)) / rate); } else { newWidth = outputWidth; // 输出的图片宽度 newHeight = outputHeight; // 输出的图片高度 } BufferedImage tag = new BufferedImage((int) newWidth, (int) newHeight, BufferedImage.TYPE_INT_RGB); /* * Image.SCALE_SMOOTH 的缩略算法 生成缩略图片的平滑度的 * 优先级比速度高 生成的图片质量比较好 但速度慢 */ tag.getGraphics().drawImage(img.getScaledInstance(newWidth, newHeight, Image.SCALE_SMOOTH), 0, 0, null); FileOutputStream out = new FileOutputStream(outputDir + outputFileName); // JPEGImageEncoder可适用于其他图片类型的转换 JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out); encoder.encode(tag); out.close(); } } catch (IOException ex) { ex.printStackTrace(); } return "ok"; } public String compressPic (String inputDir, String outputDir, String inputFileName, String outputFileName) { // 输入图路径 this.inputDir = inputDir; // 输出图路径 this.outputDir = outputDir; // 输入图文件名 this.inputFileName = inputFileName; // 输出图文件名 this.outputFileName = outputFileName; return compressPic(); } public String compressPic(String inputDir, String outputDir, String inputFileName, String outputFileName, int width, int height, boolean gp) { // 输入图路径 this.inputDir = inputDir; // 输出图路径 this.outputDir = outputDir; // 输入图文件名 this.inputFileName = inputFileName; // 输出图文件名 this.outputFileName = outputFileName; // 设置图片长宽 setWidthAndHeight(width, height); // 是否是等比缩放 标记 this.proportion = gp; return compressPic(); } // main测试 // compressPic(大图片路径,生成小图片路径,大图片文件名,生成小图片文名,生成小图片宽度,生成小图片高度,是否等比缩放(默认为true)) public static void main(String[] arg) { CompressPicDemo mypic = new CompressPicDemo(); System.out.println("输入的图片大小:" + mypic.getPicSize("e:\\1.jpg")/1024 + "KB"); int count = 0; // 记录全部图片压缩所用时间 for (int i = 0; i < 100; i++) { int start = (int) System.currentTimeMillis(); // 开始时间 mypic.compressPic("e:\\", "e:\\test\\", "1.jpg", "r1"+i+".jpg", 120, 120, true); int end = (int) System.currentTimeMillis(); // 结束时间 int re = end-start; // 但图片生成处理时间 count += re; System.out.println("第" + (i+1) + "张图片压缩处理使用了: " + re + "毫秒"); System.out.println("输出的图片大小:" + mypic.getPicSize("e:\\test\\r1"+i+".jpg")/1024 + "KB"); } System.out.println("总共用了:" + count + "毫秒"); } }
发表评论
-
jdbc_连接池_转
2012-02-19 22:49 0http://z466459262.iteye.com/bl ... -
java_贪吃蛇——
2012-01-17 11:14 847ADADS -
java并发重构ppt_转温 少
2011-06-23 16:04 685ooooo -
GBK_UTF-8_转
2011-06-21 11:15 1549转 http://www.iteye.com/topi ... -
单例模式七种写法_转
2011-05-26 23:19 788kjljkl -
设计模式_code_转转转
2011-05-25 17:14 688kljlj -
java_字符串操作——插入、替换、删除_转
2011-03-18 18:38 1247字符串操作——插入、替换、删除 ... -
mysq 存储过程技术手册
2011-02-17 22:49 454jklkj -
mysql专家_分析pdf
2011-02-17 20:43 850dfasdfasdf -
成均科技_面试
2011-02-16 17:38 847成均科技: XmlHttpRequest 浏览器对 ... -
java 学习方向
2011-01-26 16:56 663http://newleague.iteye.com/ ... -
多线程背课__售票_转转转
2011-01-25 10:19 770票真难买呀,咋回个家就怎么难呢? 这几天学习了下线程, ... -
web 项目_ log4j__转转java3Z
2011-01-18 22:16 1012在web应用中使用日志工具log4J ... -
汉字排序_java_转转
2011-01-15 17:09 893java中漢字按拼音排序 ... -
ecilpse_apanta_
2011-01-15 00:11 1043<!-- [if gte mso 9]><x ... -
linux_virutalBox_固定ip_转转
2011-01-12 21:35 951Windows XP通过Sun VirtualBox ... -
存储过程_转转转 _ibatis
2011-01-04 21:14 1297作者:袁光东 我们在进行pl/sql编程时打交道最多的 ... -
J2EE项目异常处理_转
2011-01-04 21:08 697J2EE 项目异常处理 ... -
防盗链_图片
2010-12-30 08:57 878做个图片的防盗链 ... -
java 缩略图__转
2010-12-24 00:29 735//----------------------------- ...
相关推荐
"Java代码保存上传的文件_压缩图片" Java代码保存上传的文件_压缩图片 Java 代码保存上传的文件_压缩图片是指在 Java web 应用程序中,如何保存上传的文件,并对其进行压缩处理。本代码使用了 Spring 框架的 ...
总的来说,`java_等比率压缩图片_转`这个主题涉及了Java图像处理的基础知识,包括读取、操作和保存图像,以及等比率压缩的算法。通过深入理解`ImageZip.java`的源码,我们可以学习到如何在实际项目中实现这些功能。...
以上就是Java中压缩图片的几种常见方法,可以根据项目需求和性能考虑选择合适的方式。在实际应用中,除了调整尺寸,还可以通过设置JPEG的压缩质量来进一步减小文件大小。例如,`ImageIO.write()`方法的第三个参数...
Java批量压缩图片格式的PDF档(源码Demo) 适用:仅针对纯图片型的pdf(类似扫描版)进行压缩 原理:压缩图片然后再另存成新文件 实例如下: ├── META-INF │ └── MANIFEST.MF ├── pom.xml └── src ├...
java 开发压缩图片文件大小,2m-->200k 不是压缩宽高的
在Java编程语言中,处理图片压缩是一项常见的任务,特别是在存储、传输或展示大量图像资源时。本主题将深入探讨如何使用Java实现图片压缩,并能够将其调整到任意大小,同时保持图片质量并避免变形。 首先,我们需要...
【压缩包子文件的文件名称列表】:“java图书管管理系统”这一文件名表明压缩包内的主要内容是一个Java编写的图书管理系统,可能包含了主程序、源代码文件、配置文件、数据库脚本、图片资源等。其中,源代码文件可能...
在这个"java-for-image-compression.zip"压缩包中,包含了一个名为"java实现图像压缩.txt"的文件,它很可能提供了关于如何使用Java实现图像不失真等比例压缩的算法的详细步骤和代码示例。 图像压缩的主要目标是减少...
java中根据设置的宽高等比例压缩图片文件 先保存原文件,再压缩、上传
在Java中,压缩图片通常是为了减小文件大小,便于存储或传输,而同时尽可能保持图片质量。上述代码提供了一个名为`CompressPicTools`的类,专门用于压缩图片,保持图片原有的宽高比,同时控制压缩后的失真程度。下面...
总的来说,这个项目展示了如何在Java环境中实现图片的压缩、保存和上传功能。这涉及到对Java图像处理API的理解,文件操作,以及网络编程知识。通过对`ImageZipUtil.java`代码的深入分析,我们可以学习到如何在实际...
java图片压缩处理java图片压缩处理java图片压缩处理java图片压缩处理java图片压缩处理java图片压缩处理
Java压缩图片util,可等比例宽高不失真压缩,也可直接指定压缩后的宽高,只能用炫酷来形容,感兴趣就下载看看吧
1.2 文档操作:文档创建、合并、拆分、压缩、复制;页面背景、页边距、纸张大小及方向、页面旋转、合并、缩放;表单域;页眉页脚;水印;文本列表、高亮、替换、上下标、对齐方式;形状;图片;数字签名、文档加密...
本教程将专注于使用Java语言实现图片的等比缩放和压缩技术,以满足存储和传输的需求。下面,我们将深入探讨这些关键知识点。 首先,我们来了解等比缩放。等比缩放是指在改变图片尺寸时,保持其长宽比不变,防止图片...
在【压缩包子文件的文件名称列表】中,只有一个文件名 "HRM"。通常,这可能是项目的主目录或者源代码包,包含了项目的源代码文件、配置文件、数据库脚本、文档等相关资源。在这个文件中,我们可以期待找到如下的结构...
例如,可能会限制上传的文件类型只允许特定的图片、文档或视频格式,或者设置最大文件大小以防止内存溢出。此外,还可能使用`File`类进行临时文件存储,等待进一步处理或移动到最终目的地。 `www.pudn.com.txt`文件...
标题中的"IM.rar_IM java_im_java IM_java IM通讯_即时通讯 Java"暗示这是一个关于Java实现的即时通讯(IM,Instant Messaging)系统项目。这个压缩包可能包含了一个完整的源代码库,用于开发基于Java的IM应用,特别...
在Java编程语言中,压缩高清图片通常涉及到两个主要的领域:图像处理和文件编码。本文将详细介绍两种常用的方法,它们分别是使用Java自带的ImageIO类和利用第三方库如Apache Commons Compress。 首先,我们来看看...
java压缩图片工具类