import java.io.*;
import java.util.Date;
import java.awt.*;
import java.awt.image.*;
import javax.imageio.ImageIO;
//import com.sun.image.codec.jpeg.*;

public class ImgCompress {
private Image img;
private int width;
private int height;

@SuppressWarnings("deprecation")
public static void main(String[] args) throws Exception {
System.out.println("开始:" + new Date().toLocaleString());
ImgCompress imgCom = new ImgCompress("C:\\Users\\fh123\\Desktop\\TIM图片20180511172046.jpg");
imgCom.resizeFix(600, 600,"C:\\Users\\fh123\\Desktop\\TIM图片20180511172046.jpg");
System.out.println("结束:" + new Date().toLocaleString());
}

public ImgCompress(String fileName) throws IOException {
File file = new File(fileName);// 读入文件
img = ImageIO.read(file); // 构造Image对象
width = img.getWidth(null); // 得到源图宽
height = img.getHeight(null); // 得到源图长
}

/**
* 按照宽度还是高度进行压缩
*
* @param w
* int 最大宽度
* @param h
* int 最大高度
*/
public void resizeFix(int w, int h,String urlPath) throws IOException {
if (width / height > w / h) {
resizeByWidth(w,urlPath);
} else {
resizeByHeight(h,urlPath);
}
}

/**
* 以宽度为基准,等比例放缩图片
*
* @param w
* int 新宽度
*/
public void resizeByWidth(int w,String urlPath) throws IOException {
int h = (int) (height * w / width);
resize(w, h,urlPath);
}

/**
* 以高度为基准,等比例缩放图片
*
* @param h
* int 新高度
*/
public void resizeByHeight(int h,String urlPath) throws IOException {
int w = (int) (width * h / height);
resize(w, h,urlPath);
}

/**
* 强制压缩/放大图片到固定的大小
*
* @param w
* int 新宽度
* @param h
* int 新高度
*/
public void resize(int w, int h,String urlPath) throws IOException {
// SCALE_SMOOTH 的缩略算法 生成缩略图片的平滑度的 优先级比速度高 生成的图片质量比较好 但速度慢
BufferedImage image = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
image.getGraphics().drawImage(img, 0, 0, w, h, null); // 绘制缩小后的图
File destFile = new File(urlPath);
FileOutputStream out = new FileOutputStream(destFile); // 输出到文件流
ImageIO.write(image,"jpg", out);
// 可以正常实现bmp、png、gif转jpg
//JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
//encoder.encode(image); // JPEG编码
out.close();
}

}

最新文章

  1. P1907飞扬的小鸟
  2. 我的Eclipse快捷键.
  3. [issue] dyld`dyld_fatal_error: -> 0x120015088 <+0>: brk #0x3
  4. Aspose.Words 的使用 Aspose.Total_for_.NET
  5. @Html.DropDownListFor 绑定列表项
  6. System.arraycopy方法
  7. Linux命令——监视相关
  8. TestLink-Windows安装教程
  9. Python——字符串2.0(实验)
  10. ArrayList源码理解
  11. 转:为什么根据IP地址查询物理所在地,而不是mac地址?
  12. ;(function(){ //代码})(); 自执行函数开头为什么要加;或者!
  13. java计算某个坐标是否在范围内
  14. mysql5.6主从配置
  15. appium 搭建及实例
  16. (转)CDH中启动的hive,使用jdbc连接hiveServer2时候权限不足解决方案
  17. 【剑指offer】输入一个链表,输出该链表中倒数第k个结点。
  18. LevelDb日知录之五:MemTable详解
  19. JavaWeb学习总结(十七)——JSP中的九个内置对象(转)
  20. 【CF645D】 Robot Rapping Results Report(拓扑排序,二分)

热门文章

  1. phantomjs安装步骤
  2. pacman 包管理器相关设定
  3. 【代码学习】PYTHON字典(Dictionary)
  4. 11. 搭建一个完整的K8S集群
  5. 吴裕雄 python 神经网络——TensorFlow 花瓣分类与迁移学习(3)
  6. Nexus-配置vPC 实验三
  7. MySQL数据库--基础简述
  8. C++11⾥⾯很好⽤的auto声明
  9. [ DLPytorch ] 批量归一化与残差网络
  10. day04-MyBatis的缓存与懒加载