前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >使用 Image.SCALE_SMOOTH算法进行图片压缩

使用 Image.SCALE_SMOOTH算法进行图片压缩

作者头像
有一只柴犬
发布2024-01-25 10:44:52
2780
发布2024-01-25 10:44:52
举报
文章被收录于专栏:JAVA体系
代码语言:javascript
复制
/**
 * 
 */
package cn.ffcs.test.img;

import java.awt.Image;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Date;

import javax.imageio.ImageIO;

import com.sun.image.codec.jpeg.ImageFormatException;
import com.sun.image.codec.jpeg.JPEGCodec;
import com.sun.image.codec.jpeg.JPEGImageEncoder;

/**
 * 图片压缩
 * @author pengyh
 *
 */
public class ImageCompress {
	
	private final static String sourceImg = "E:/Myeclipse/icity/mytest/WebRoot/data/testpng.png";
	private final static String destImg = "E:/Myeclipse/icity/mytest/WebRoot/data/dest3.png";
	
	private Image img;
	private int width;
	private int height;
	
	/**
	 * 构造函数。
	 * @param fileName
	 * @throws IOException
	 */
	public ImageCompress(String fileName) throws IOException {
		File file = new File(fileName);
		img = ImageIO.read(file); // 构造Image对象  
		width = img.getWidth(null);
		height = img.getHeight(null);
	}
	
	/**
	 * 按照宽度还是高度进行压缩
	 * @param w 指定压缩宽度
	 * @param h 指定压缩高度
	 * @throws ImageFormatException
	 * @throws IOException
	 */
	public void compressFix(int w, int h) throws ImageFormatException, IOException{
		if(width / height > w / h){
			compressImg(w, (int)(height * w / width));
		} else {
			compressImg((int)(width * h / height), h);
		}
	}
	
	public void compressImg(int w, int h) throws ImageFormatException, IOException{
		/**
		 * Image.SCALE_SMOOTH 的缩略算法 
		 * 生成缩略图片的平滑度的 
		 * 优先级比速度高 
		 * 生成的图片质量比较好 
		 * 但速度慢
		 * 
		 */
		BufferedImage image = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
		
		//绘制新图时,使用Image.SCALE_SMOOTH算法,压缩后的图片质量相对比较光滑,没有明显的锯齿形
//		image.getGraphics().drawImage(img, 0, 0, w, h, null);           <span style="color:#ff6666;">//---------压缩图片如图1</span>
		image.getGraphics().drawImage(img.getScaledInstance(w, h, Image.SCALE_SMOOTH), 0, 0, null);  <span style="color:#ff6666;">//-------压缩后图片如图2</span>
		
		File destFile = new File(destImg);
		FileOutputStream out = new FileOutputStream(destFile); // 输出到文件流
		// 可以正常实现bmp、png、gif转jpg 
		JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
		encoder.encode(image); // JPEG编码  
        out.close(); 
	}
	
	
	@SuppressWarnings("deprecation")
	public static void main(String[] args) throws IOException {
		System.out.println("图片压缩开始:" + new Date().toLocaleString());
		ImageCompress compress = new ImageCompress(sourceImg);
//		compress.compressImg(150, 150);  不根据宽度或高度等比例压缩
		compress.compressFix(150, 150);//等比例以宽度或高度为基准进行压缩
		System.out.println("图片压缩结束:" + new Date().toLocaleString());
	}
	

}

图片1:

图片2:

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2024-01-25,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
相关产品与服务
图片处理
图片处理(Image Processing,IP)是由腾讯云数据万象提供的丰富的图片处理服务,广泛应用于腾讯内部各产品。支持对腾讯云对象存储 COS 或第三方源的图片进行处理,提供基础处理能力(图片裁剪、转格式、缩放、打水印等)、图片瘦身能力(Guetzli 压缩、AVIF 转码压缩)、盲水印版权保护能力,同时支持先进的图像 AI 功能(图像增强、图像标签、图像评分、图像修复、商品抠图等),满足多种业务场景下的图片处理需求。
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档