package com.caac.knsgl.utils; 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 ImgCompressUtil { 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 ImgCompressUtil() { // 初始化变量 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(); } /** * 图片处理 * * @return */ 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"; } /** * 初始化参数 * * @param inputDir * 输入图路径 * @param outputDir * 输出图路径 * @param inputFileName * 输入图文件名 * @param outputFileName * 输出图文件名 * @return */ 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(); } /** * 按比例压缩图片 * * @param inputDir * 输入图路径 * @param outputDir * 输出图路径 * @param inputFileName * 输入图文件名 * @param outputFileName * 输出图文件名 * @param width * 压缩后的宽度 * @param height * 压缩后的高度 * @param gp * 是否等比缩放 * @return */ 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(); } /** * 按图片大小(KB单位)循环压缩图片 * * @param oldImgPath * @param oldImgName * @param newImgPath * @param newImgName * @param size * KB单位 * @throws IOException */ public static void cycleImg(String oldImgPath, String oldImgName, String newImgPath, String newImgName, long size) throws IOException { ImgCompressUtil mypic = new ImgCompressUtil(); sameSizeImg(oldImgPath,oldImgName,newImgPath,newImgName); long newSize = mypic.getPicSize(newImgPath + newImgName) / 1024; if (newSize > size) { cycleImg(newImgPath, newImgName, newImgPath, newImgName, size); } } /** * 按图片原高宽压缩图片 * * @param oldImgPath * @param oldImgName * @param newImgPath * @param newImgName * @param size * KB单位 * @throws IOException */ public static void sameSizeImg(String oldImgPath, String oldImgName, String newImgPath, String newImgName) throws IOException { ImgCompressUtil mypic = new ImgCompressUtil(); File srcFile = new java.io.File(oldImgPath + oldImgName); Image src = ImageIO.read(srcFile); int srcWidth = src.getWidth(null); int srcHeight = src.getHeight(null); mypic.compressPic(oldImgPath, newImgPath, oldImgName, newImgName, srcWidth, srcHeight, true); } // main测试 // compressPic(大图片路径,生成小图片路径,大图片文件名,生成小图片文名,生成小图片宽度,生成小图片高度,是否等比缩放(默认为true)) public static void main(String[] arg) throws IOException { ImgCompressUtil mypic = new ImgCompressUtil(); String oldImgPath = "E:\\工作需求\\贫困生申请表\\sourceImg\\"; String oldImgName = "P60906-104527.jpg"; String newImgPath = "E:\\工作需求\\贫困生申请表\\targeImg\\"; String newImgName = "test.jpg"; long size = 500; long oldSize = mypic.getPicSize(oldImgPath + oldImgName) / 1024; System.out.println("输入的图片大小:" + oldSize + "KB"); int start = (int)System.currentTimeMillis(); //开始时间 //cycleImg(oldImgPath, oldImgName, newImgPath, newImgName, size); sameSizeImg(oldImgPath, oldImgName, newImgPath, newImgName); int end = (int)System.currentTimeMillis(); //结束时间 System.out.println("总共用了:"+(end-start)+" 毫秒"); long newSize = mypic.getPicSize(newImgPath + newImgName) / 1024; System.out.println("输出的图片大小:" + newSize + "KB"); } }
import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import java.util.regex.Pattern; /** * 读取文件夹下的所有附件,并把图片类型压缩公共类 */ public class ReadFileCompressUtil { public ReadFileCompressUtil() { super(); } /** * 读取某个文件夹下的所有文件,并把图片类型压缩 * @param filepath 读取的文件夹路径 * @param targetSize 需要把图片压缩到 targetSize KB单位内 * @return * @throws FileNotFoundException * @throws IOException */ public static boolean readfile(String filepath, long targetSize) throws FileNotFoundException, IOException { String reg = ".+(.JPEG|.jpeg|.JPG|.jpg|.GIF|.gif|.BMP|.bmp|.PNG|.png)$"; //图片类型 正则表达式 Pattern pattern = Pattern.compile(reg); try { File file = new File(filepath); if (!file.isDirectory()) { //文件 } else if (file.isDirectory()) { //文件夹 String[] filelist = file.list(); for (int i = 0; i < filelist.length; i++) { File readfile = new File(filepath + "\\" + filelist[i]); if (!readfile.isDirectory()) { String sourcePath = filepath + "\\"; String sourceName = readfile.getName(); long size = readfile.length() / 1024; //KB if (targetSize >0 && pattern.matcher(sourcePath + sourceName).find() && size > targetSize) { //图片类型,并且大于所需的格式大小,则压缩 new ImgCompressUtil().cycleImg(sourcePath, sourceName, sourcePath, sourceName, targetSize); }else{ //不指定压缩大小 new ImgCompressUtil().sameSizeImg(sourcePath, sourceName, sourcePath, sourceName); } } else if (readfile.isDirectory()) { readfile(filepath + "\\" + filelist[i], targetSize); } } } } catch (FileNotFoundException e) { System.out.println("readfile() Exception:" + e.getMessage()); } return true; } public static void main(String[] args) { try { //1,文件夹路径,压缩图片,指定大小(KB) // readfile("E:\\工作需求\\贫困生申请表\\targeImg", 100); //2,文件夹路径,压缩图片,不指定大小,第二个参数小于0即可 readfile("E:\\工作需求\\贫困生申请表\\targeImg", -1); } catch (FileNotFoundException ex) { } catch (IOException ex) { } System.out.println("ok"); } }
--摘自 困难生申请的公共类
相关推荐
需求:想把某个文件夹里面所有照片以及他的所有子文件夹照片都按照一定规则全部压缩一下尺寸或者质量,希望输出的名字不变对应的文件夹相对位置也不变。可以用来他保存对像素质量要求不高的,又需要长久保存,那么这...
图片压缩工具 可用于拍摄照片后对某个文件夹下的图片进行集中压缩,大量减少硬盘空间 支持多级文件夹下图片一并压缩 源码为c#
在IT领域中,处理这样的文件集合时,压缩文件夹是常见的做法,尤其是在需要通过电子邮件发送大量图片或者在有限的网络带宽下上传文件时。ZIP文件可以通过各种压缩工具创建,如Windows内置的压缩功能、WinRAR、7-Zip...
需求:想把某个文件夹里面所有照片以及他的所有子文件夹照片都按照一定规则全部压缩一下尺寸或者质量,希望输出的名字不变对应的文件夹相对位置也不变。可以用来他保存对像素质量要求不高的,又需要长久保存,那么这...
标题中的"新建文件夹 (2).zip"表明这是一个ZIP格式的压缩文件,通常用于存储多个相关的文件或文件夹。在IT行业中,ZIP是一种常见的文件压缩格式,它允许用户将多个文件打包成一个单一的文件,便于传输、存储和管理。...
这可能是一个包含一系列文档、图片、音频、视频或其他类型文件的文件夹。新建文件夹的用途可能是为了组织相关的项目资料,便于管理和分享。在解压这个文件后,用户可以访问并操作其中的所有内容。 关于压缩文件的...
1. **选择文件/文件夹**:用户可以选择包含多个JPEG图片的文件夹,软件会自动处理其中的所有图片。 2. **预设设置**:提供不同级别的压缩预设,如低质量、中等质量和高质量,以满足不同需求。 3. **自定义设置**:...
2. **解压整个ZIP文件**: 提供选项让用户可以选择是否将整个ZIP文件解压到某个指定目录下。 3. **文件过滤**: 实现对ZIP文件中的文件进行过滤,例如只提取图片或文档等特定类型的文件。 #### 五、总结 该项目提供了...
【标题】"新建文件夹 (3).7z"是一个压缩文件,它采用了7-Zip的压缩格式。7-Zip是一种免费且开源的数据压缩工具,它提供了比传统ZIP或RAR格式更高的压缩率,尤其是在使用特定的压缩算法时。该文件可能包含多个文件或...
上传后,通常会将图片保存在服务器上的某个文件夹中。例如,在代码中使用了变量strImgPath来定义图片的存储路径和名称。 2. 判断文件类型:在处理上传的文件之前,需要验证文件是否为有效的图片文件。这可以通过...
【标题】"培训用资料\yy\新建文件夹\网页.rar" 暗示这是一个用于教育和培训目的的压缩文件,包含与网页设计或开发相关的材料。"网页.rar" 表明压缩包内可能含有HTML、CSS、JavaScript等网页制作的基础文件或者教程。...
【标题解析】:“新建文件夹 - 副本.zip”是一个压缩文件,通常用于存储多个相关的文件或文件夹。在Windows操作系统中,人们经常创建文件夹的副本来组织和备份数据,而“zip”格式是一种常见的文件压缩格式,旨在...
【标题】"新建文件夹.zip" 是一个压缩文件,通常用于整理和存储多个相关的文档、图片、音频或视频等文件。在IT行业中,压缩文件的使用非常普遍,它可以帮助我们节省存储空间,方便文件传输,并保护文件不被未经授权...
同时,它的快速性体现在压缩速度上,无论是单个文件还是整个文件夹,都能在短时间内完成压缩任务,极大地提高了工作效率。 "精确"是好压压缩软件的另一大亮点。在压缩过程中,它能够确保文件的完整性和原始数据的...
而"压缩包子文件的文件名称列表"只提到了"新建文件夹",这通常意味着一个包含在压缩包内的文件夹,但没有详细文件名,所以无法深入讨论特定的IT主题。 不过,如果我们要讨论一般性的IT知识,特别是与压缩包和文件...
光影魔术手是一种图片处理软件,具有强大的图片处理功能,可以快速浏览电脑中某个文件夹包含的所有图片,并且可以对图片进行编辑美化,使照片看起来更加漂亮。 6. 编辑图片 使用光影魔术手编辑图片时,通常在工具...
例如,`FSO.BuildPath()`方法用于构建完整的文件或目录路径,`FSO.GetFolder()`用于获取Folder对象,代表一个特定的文件夹,而`Folder.Files`集合则包含该文件夹内所有文件的信息。通过遍历`Folder.Files`,可以获取...
【标题】与【描述】提及的是一个压缩文件,名为"新建文件夹,新建文件夹2,matlab源码 (1).rar.zip"。这表明压缩包内可能包含多个层级的目录,分别是“新建文件夹”和“新建文件夹2”,以及一份名为"matlab源码 (1)....