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;
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;
}
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);
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 proce1(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);
// 为等比缩放计算输出的图片宽度及高度
double rate1 = ((double) srcFile.getWidth(null)) / (double) width
+ 0.1;
double rate2 = ((double) srcFile.getHeight(null)) / (double) height
+ 0.1;
double rate = rate1 > rate2 ? rate1 : rate2;
int new_w = (int) (((double) srcFile.getWidth(null)) / rate);
int new_h = (int) (((double) srcFile.getHeight(null)) / rate);
/** 宽,高设定 */
BufferedImage tag = new BufferedImage(new_w, new_h,
BufferedImage.TYPE_INT_RGB);
tag.getGraphics().drawImage(srcFile, 0, 0, new_w, new_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;
}
//
public static void main(String str[]) {
PicCompression ps = new PicCompression();
try {
System.out.println(ps.proce1("D:/My Documents/My Pictures/5.jpg",
640, 480, 1, "1"));
System.out.println(ps.proce1("D:/My Documents/My Pictures/5.jpg",
240, 240, 1, "2"));
System.out.print("成功哦");
} catch (Exception e) {
e.printStackTrace();
}
}
}
分享到:
相关推荐
java压缩图片工具类
以上就是Java中压缩图片的几种常见方法,可以根据项目需求和性能考虑选择合适的方式。在实际应用中,除了调整尺寸,还可以通过设置JPEG的压缩质量来进一步减小文件大小。例如,`ImageIO.write()`方法的第三个参数...
java 开发压缩图片文件大小,2m-->200k 不是压缩宽高的
Java图片压缩工具类,根据宽度、高度进行压缩图片。如有意见,欢迎指出
Java批量压缩图片格式的PDF档(源码Demo) 适用:仅针对纯图片型的pdf(类似扫描版)进行压缩 原理:压缩图片然后再另存成新文件 实例如下: ├── META-INF │ └── MANIFEST.MF ├── pom.xml └── src ├...
Java压缩图片util,可等比例宽高不失真压缩,也可直接指定压缩后的宽高,只能用炫酷来形容,感兴趣就下载看看吧
在Java编程语言中,处理图片压缩是一项常见的任务,特别是在存储、传输或展示大量图像资源时。本主题将深入探讨如何使用Java实现图片压缩,并能够将其调整到任意大小,同时保持图片质量并避免变形。 首先,我们需要...
上述代码提供了一个名为`CompressPicTools`的类,专门用于压缩图片,保持图片原有的宽高比,同时控制压缩后的失真程度。下面我们将深入探讨这个类的关键知识点: 1. **使用库**:代码使用了Java的标准API(如`javax...
根据提供的文件信息,我们可以总结出以下关于“Java压缩上传图片”的相关知识点: ### 1. 知识点一:图片压缩的基本概念 - **定义**:图片压缩是一种减少图像文件大小的技术,通常用于减少存储空间需求或加快网络...
首先,我们来看看使用Java标准库中的`javax.imageio.ImageIO`类进行图片压缩。`ImageIO`类提供了读取、写入和处理图像的功能。以下是一个简单的示例,展示如何读取一个图片文件,然后以较低的质量重新保存,从而达到...
"java图片压缩通用类"是一个实用的工具,它提供了便捷的方法来压缩图片,适用于各种项目需求。这个通用类库简化了处理图像的复杂性,使得开发者可以快速地集成图片压缩功能到他们的应用程序中。 在Java中,我们可以...
这个场景中提到的“java压缩图片”可能涉及到使用Java的图像处理库,如Java Advanced Imaging (JAI)或者使用Java标准库中的`java.awt.image.BufferedImage`类。以下是对这个主题的详细阐述: 首先,我们需要理解...
java中根据设置的宽高等比例压缩图片文件 先保存原文件,再压缩、上传
java图片压缩处理java图片压缩处理java图片压缩处理java图片压缩处理java图片压缩处理java图片压缩处理
`compressImage`方法则用于压缩图片,这里我们简单地使用了`javax.imageio.ImageIO.write`方法,将图片保存为JPEG格式,并通过设置`quality`参数来控制压缩质量。 当处理来自iPhone的照片时,确保在上传之前先调用`...
网上找的缩略图生成方法都不够清晰,于是决定自己研究和改进生成缩略图...此方法压缩后的图片小,清晰度高,压缩速度快。5000张图片大概抽根烟的功夫就压缩完了。高清的哦。各种参数都是可配的,方便移植到自己项目中。
Java中的`ImageIO`类支持多种图片格式(如JPEG、PNG等),这些格式都提供了有损或无损的压缩选项。 以下是一个简单的Java图片压缩示例: ```java import javax.imageio.ImageIO; import java.awt.image....
Java 压缩图片资源的算法demo,采用基本的java流操作实现!
本教程将专注于使用Java语言实现图片的等比缩放和压缩技术,以满足存储和传输的需求。下面,我们将深入探讨这些关键知识点。 首先,我们来了解等比缩放。等比缩放是指在改变图片尺寸时,保持其长宽比不变,防止图片...
Java作为一种广泛使用的编程语言,也提供了实现视频压缩的能力。本篇将详细探讨如何使用Java来实现视频压缩,以及涉及到的相关知识点。 首先,我们要理解视频压缩的基本原理。视频是由一帧一帧的静态图像(图片)...