- 浏览: 275971 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (220)
- oracle (45)
- extjs (2)
- jstl (8)
- tomcat (9)
- svn (2)
- 系统 (12)
- 工作日志 (4)
- flex (5)
- 乱码 (1)
- jsp (2)
- java (26)
- mysql (8)
- vmware (2)
- 其他 (4)
- acegi (1)
- yui (1)
- hibernate (1)
- javascript (10)
- Maven (2)
- 数据库 (3)
- html css (2)
- displaytag (6)
- 软件开发管理 (2)
- java模式 (2)
- springside (7)
- android (14)
- other (3)
- linux (1)
最新评论
-
yixiandave:
string2020 写道分布式应用 用户认证,应该是在统一的 ...
分布式应用注意简介 -
string2020:
分布式应用 用户认证,应该是在统一的一个地方验证吧
分布式应用注意简介 -
liusu:
1、listView 视图黑色 设置 cacheColorHi ...
android 注意 -
teamilk:
engine 是什么?怎么导呢,不会弄,请教下
H2 数据库数据导出 -
djb_daydayup:
哦,我看到源文件了!
How to use
Ver.2.00 ...
android screen monitor 手机屏幕共享
package zhc.tool.util;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileNotFoundException;
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.JPEGEncodeParam;
import com.sun.image.codec.jpeg.JPEGImageEncoder;
/**
* 图片压缩类
* @author hongcai
*
*/
public class PicCompression {
private int wideth; // 指定图片的宽度
private int height;
private String t = null;
public void setT(String t) {
this.t = t;
}
public void setWideth(int wideth) {
// wideth=320;
this.wideth = wideth;
}
public int getWideth() {
return this.wideth;
}
public void setHeight(int height) {
// height=240;
this.height = height;
}
/**
*
* 如果图片的宽度大于wideth ,则按wideth的宽度缩下图片返回图片的改变后的高度
* @param w 实际图片宽
* @param h 实际图片高
* @return 改变后的图片的高度
*/
public int getHeight(int w, int h) // former images size
{
// int hhh;
if (w > wideth) {
float ww;
ww = (float) w / (float) wideth;
float hh = h / ww;
return (int) hh;
} else {
this.setWideth(w);
return h;
}
}
public void proce(String fpath) throws Exception {
File _file = new File(fpath);
Image src = javax.imageio.ImageIO.read(_file);
int wideth = src.getWidth(null); // 返回图片的宽度
int height = src.getHeight(null); // 返回图片的高度
int h = this.getHeight(wideth, height); // 根据给定的宽度,改变高度 。达到等比缩放
BufferedImage tag = new BufferedImage(this.getWideth(), h,
BufferedImage.TYPE_INT_RGB); // this.getWideth() 这个大小值得商榷。应判断下图片小于wideth的情况
Graphics g = tag.getGraphics();
g.drawImage(src, 0, 0, this.getWideth(), h, null);
if (t != null) {
g.setColor(new Color(242, 242, 242));
g.fillRect(this.getWideth() - 120, h - 18, 120, 18);
g.setColor(new Color(180, 180, 180));
g.drawRect(this.getWideth() - 120, h - 18, 119, 17);
g.setColor(new Color(255, 102, 0));
g.drawString(t, this.getWideth() - 100, h - 5);
}
FileOutputStream out = new FileOutputStream(fpath);
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
encoder.encode(tag);
out.close();
}
/**
* 压缩图片方法
*
* @param oldFile
* 将要压缩的图片
* @param width
* 压缩宽
* @param height
* 压缩长
* @param quality
* 压缩清晰度 <b>建议为1.0</b>
* @param smallIcon
* 压缩图片后,添加的扩展名
* @return
*/
public String proce(String oldFile, int width, int height, float quality,
String smallIcon) {
if (oldFile == null) {
return null;
}
String newImage = null;
try {
File file = new File(oldFile);
if(!file.exists()) //文件不存在时
return null;
/** 对服务器上的临时文件进行处理 */
Image srcFile = ImageIO.read(file);
// 为等比缩放计算输出的图片宽度及高度
int w=srcFile.getWidth(null); // 获得实际文件的宽度
int h=srcFile.getHeight(null); // 获得实际文件的高
int i[]=calcWH(w,h,width,height); // 返回处理后的宽高
w=i[0];
h=i[1];
/** 宽,高设定 */
BufferedImage tag = new BufferedImage(w, h,
BufferedImage.TYPE_INT_RGB);
tag.getGraphics().drawImage(srcFile, 0, 0, w, h, null);
String filePrex = oldFile.substring(0, oldFile.indexOf('.'));
/** 压缩后的文件名 */
// newImage =smallIcon + filePrex
// +oldFile.substring(filePrex.length());
newImage = filePrex + smallIcon
+ oldFile.substring(filePrex.length());
// newImage = smallIcon;
/** 压缩之后临时存放位置 */
FileOutputStream out = new FileOutputStream(newImage);
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
JPEGEncodeParam jep = JPEGCodec.getDefaultJPEGEncodeParam(tag);
/** 压缩质量 */
jep.setQuality(quality, true);
encoder.encode(tag, jep);
out.close();
srcFile.flush();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return newImage;
}
/**
* 压缩图片方法
*
* @param oldFile
* 将要压缩的图片
* @param width 480
* 压缩宽
*
* @param quality
* 压缩清晰度 <b>建议为1.0</b>
* @param smallIcon
* 压缩图片后,添加的扩展名
* @return
*/
public String proce(String oldFile, int width, float quality,
String smallIcon) {
if (oldFile == null) {
return null;
}
String newImage = null;
try {
File file = new File(oldFile);
if(!file.exists()) //文件不存在时
return null;
/** 对服务器上的临时文件进行处理 */
BufferedImage srcFile = ImageIO.read(file);
// BufferedImage bufferedFile = ImageIO.read(file);
// 为等比缩放计算输出的图片宽度及高度
int w=srcFile.getWidth(null); // 获得实际文件的宽度
int h=srcFile.getHeight(null); // 获得实际文件的高
if (w > width) { // 根据限制宽度得到高度
float ww;
ww = (float) w / (float) width;
float hh = h / ww;
h=(int) hh;
w=width;
}
/** 宽,高设定 */
// BufferedImage tag = new BufferedImage(w, h,
// BufferedImage.TYPE_INT_RGB); // 指定类型
BufferedImage tag = new BufferedImage(w, h,
srcFile.getType()); // 用员图片的类型
tag.getGraphics().drawImage(srcFile, 0, 0, w, h, null);
String filePrex = oldFile.substring(0, oldFile.indexOf('.'));
/** 压缩后的文件名 */
// newImage =smallIcon + filePrex
// +oldFile.substring(filePrex.length());
newImage = filePrex + smallIcon
+ oldFile.substring(filePrex.length());
// newImage = smallIcon;
/** 压缩之后临时存放位置 */
FileOutputStream out = new FileOutputStream(newImage);
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
JPEGEncodeParam jep = JPEGCodec.getDefaultJPEGEncodeParam(tag);
// 压缩质量
// quality取值在 1.0 到 0.0 之间Some guidelines: 0.75 high quality
// 0.5 medium quality
// 0.25 low quality
jep.setQuality(quality, true);
encoder.encode(tag, jep);
out.close();
srcFile.flush();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return newImage;
}
/**
* 为等比缩放计算输出的图片宽度及高度
* @param infactW 实际文件的宽
* @param infactH 实际文件的高
* @param w 限制的宽
* @param h 限制的高
* @return
*/
private int[] calcWH(double infactW,double infactH,double w,double h){
int whInt[]=new int[2]; // 存放长、宽
double rate1 = infactW / w + 0.1;
double rate2 = infactH / h + 0.1;
double rate = rate1 > rate2 ? rate1 : rate2;
int new_w = (int) (infactW / rate);
int new_h = (int) (infactH / rate);
whInt[0]=new_w;
whInt[1]=new_h;
return whInt;
}
//
public static void main(String str[]) {
PicCompression ps = new PicCompression();
try {
System.out.println(ps.proce("G:\\pic\\IMG_0660.JPG", 480, 0.75f, "7"));
System.out.print("成功哦");
} catch (Exception e) {
e.printStackTrace();
}
}
}
发表评论
-
spring boot 开发期间不需要重启
2017-06-22 18:12 4731:pom.xml中增加 <dependency> ... -
最简单的springboot整合mybatis
2017-06-20 10:56 3961、建一个基本的springboot工程; 2、在pom. ... -
jconsole
2016-08-28 14:04 4081、设置tomcat start.sh JAVA_OPTS=& ... -
java base
2013-02-27 09:58 6421、参数定义: 有未知东西参与运算时,定义参数; 2、whil ... -
ssh springside 混淆
2011-07-21 15:02 1161proguard 工具 。 配置文件: -in ... -
hibernate 下的oracle Id Generator sequence
2010-10-19 14:36 3027@SequenceGenerator(name="C ... -
android 安装笔记
2010-09-18 07:20 6671 、安装android eclipse 插件。地址 http ... -
junit 4 中的Before After Ignore Test BeforeClass AfterClass
2010-09-10 10:29 6976JUnit 4 使用 Java 5 中的注解(annotati ... -
dom4j中文乱码问题
2010-09-10 09:22 947引用:http://liaochangfa.iteye.com ... -
反射私有方法 收藏
2010-05-25 20:16 8991.私有构造函数的调用: ... -
JAVA System.getProperty()参数大全 收藏
2010-05-24 15:35 720java.version Java Ru ... -
eclips 备忘
2010-05-10 11:53 7521、eclipse 下运行tomcat 的配置在.settin ... -
为什么重写对象的equals后最好重写这个对象的hashcode方法
2010-03-11 10:19 719判断两个对象是否相等一般都会用对象的equals方法,而很少用 ... -
java 继承throws exception 注意事项
2010-03-08 11:31 1674子类重写父类方法后。子类的这个重写方法可以不抛出异常或抛出和父 ... -
String 等号比较 和 equals
2010-03-03 11:26 19131、"aa".equals("a ... -
java四个关键字:transient, strictfp, volatile, final
2010-02-22 08:57 876http://hi.baidu.com/dabo12/blog ... -
jdk5新特性
2010-02-03 16:52 708import static com.类名.*;//导入静态方法 ... -
java 读取图片信息
2009-12-22 11:02 1988exif 介绍 http://baike.baidu.com/ ... -
Spring Quartz定时详情
2009-12-01 13:37 642在Spring中,使用 ... -
Spring framework实现定时器之Quartz
2009-11-30 16:54 853Quartz 在开源任务调度框架中的翘首,它提供了强大任务调度 ...
相关推荐
在C# Core中进行图片处理是一项常见的任务,其中包括图片压缩和剪切操作。无损压缩和剪切技术在保持原始图像质量的同时,可以减小文件大小或改变图像的形状。以下将详细介绍C# Core中如何实现这些功能。 首先,我们...
《ImageResizer.exe:一款轻巧实用的图片压缩神器》 在数字时代,我们经常会遇到大量图片需要处理的情况,无论是为了存储空间的节省,还是为了网络传输的便捷,图片压缩都成为了必不可少的操作。今天,我们要介绍的...
在IT领域,图片压缩是一项重要的技术,特别是在网络传输、存储和显示方面。"图片压缩到最小.rar"这个压缩包文件的标题和描述直接指向了这一主题。本文将深入探讨图片压缩的基本原理、常见方法以及易语言...
在IT行业中,图片压缩是一项非常重要的技术,尤其是在网络传输、存储和显示图像时。"易语言图片压缩到最小"这个主题涉及到的是如何使用易语言这一编程工具来实现图片的高效压缩,以减小其占用的存储空间。易语言是...
Grearo图片压缩工具 功能介绍【必读】: 1 图片批量压缩(30以内,依个人机器以及被压缩图片大小而定); 2 图片限定宽度,等比例压缩; 3 图片限定高度,等比例压缩; 4 图片限定高度,宽度压缩;...
在Java编程语言中,处理图片压缩是一项常见的任务,特别是在存储、传输或展示大量图像资源时。本主题将深入探讨如何使用Java实现图片压缩,并能够将其调整到任意大小,同时保持图片质量并避免变形。 首先,我们需要...
在IT行业中,图片压缩是一个非常重要的技术,尤其是在内存管理和移动应用开发中。标题"图片压缩节约内存"直接指向了这个核心目标:通过压缩图片来减少应用程序对内存的占用,从而提高性能并避免内存溢出的问题。这在...
在IT领域,图片压缩是一个非常实用的技术,尤其在网页设计、社交媒体分享、存储空间有限的设备上。本文将深入探讨一款被描述为“小巧的图片压缩工具,压缩比例可调”的软件,它允许用户批量处理图片,降低文件大小而...
在IT行业中,图片压缩和文件压缩是常见的操作,特别是在存储和传输大量数据时。本文将深入探讨使用C#编程语言实现图片压缩以及多文件压缩成ZIP格式的压缩包的技术细节和自定义设置。 图片压缩主要目标是减小图像...
在移动端H5应用中,图片压缩上传是一项常见的需求,它涉及到前端图像处理、文件上传以及与服务器的交互。本文将详细讲解如何实现这一功能,主要关注JavaScript开发中的图片展示处理。 首先,我们要理解图片压缩的...
【事业单位图片压缩工具】是一款专为事业单位设计的高效图片压缩软件,它能够处理市面上常见的多种图片格式,如JPEG(JPG)、PNG、BMP、GIF等。该工具的主要功能在于大幅度减小图片的文件大小,例如,一个原本2MB的...
本文实例为大家分享了微信小程序图片压缩的具体代码,供大家参考,具体内容如下 设计思路: 选择图片后调用微信压缩图片接口,压缩后接收压缩图片的临时地址,调用微信储存接口保存图片至本地。 参数: imagesrc:...
在IT行业中,图片压缩是一个非常重要的领域,尤其是在网络传输、存储和显示方面。"图片压缩flex demo"这个项目显然关注的是使用Flex技术进行图片压缩的示例。Flex是一种基于Adobe Flash Player或Adobe AIR运行时的...
【蜂鸟图片压缩软件 JPG PNG 压缩】 在数字媒体和互联网领域,图片的大小对网站加载速度和存储空间有着直接影响。为了优化用户体验和节省资源,图片压缩变得至关重要。"蜂鸟图片压缩软件"(Hummingbird)是专为此...
在本项目中,"pb 图片压缩、解压技术结合XML" 提到了如何使用PB进行图片处理,具体涉及图片的压缩和解压,并结合XML文件进行数据存储。以下是关于这个主题的详细知识点: 1. **图片压缩**:图片压缩通常是为了减小...
### ASP.NET(C#) 图片压缩类:深入解析与应用 在现代Web开发中,图片是网站内容的重要组成部分,但过大的图片文件会严重影响网页加载速度,降低用户体验。因此,图片压缩技术成为优化网站性能的关键手段之一。本文...
总的来说,VB6图片压缩处理源码可能涵盖了图像读取、压缩算法应用、图像尺寸调整、文件I/O以及用户交互等多个方面,体现了VB6结合外部库进行图像处理的能力。通过理解这些知识点,可以对源码进行深入研究和扩展,以...
HTML5 Canvas是Web开发中的一个强大工具,它允许开发者在网页上进行动态...通过理解并运用上述技术,你可以创建一个高效且兼容性强的图片压缩解决方案,确保在微信、Chrome、Firefox等不同环境中都能得到良好的效果。
在IT行业中,图片压缩是一个非常重要的领域,尤其是在网络传输、存储和显示图像时,为了减少带宽需求和存储空间,通常需要对图片进行压缩。批量图片压缩处理工具就是专门针对这种情况设计的,它能帮助用户一次性处理...
PNG图片压缩工具是一种高效优化图像文件大小的软件,尤其适用于需要高质量、透明度支持的图像。PNG(Portable Network Graphics)格式因其无损压缩和广泛的颜色范围而被广泛使用,但通常其文件大小比其他格式如JPEG...