温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

利用java实现高质量缩放图片功能

发布时间:2020-11-03 19:23:39 来源:亿速云 阅读:162 作者:Leah 栏目:开发技术

利用java实现高质量缩放图片功能?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。

可按照比例缩放,也可以指定宽高

import com.sun.image.codec.jpeg.JPEGImageEncoder;
import com.sun.image.codec.jpeg.JPEGCodec;
import com.sun.image.codec.jpeg.JPEGEncodeParam;
import javax.swing.*;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.awt.image.Kernel;
import java.awt.image.ConvolveOp;
 
public class ImageUtil {
   /**
   * 
   * @param originalFile 原文件
   * @param resizedFile 压缩目标文件
   * @param newWidth 压缩后的图片宽度
   * @param quality 压缩质量(0到1之间,越高质量越好)
   * @throws IOException
   */

	public static void resize(File originalFile, File resizedFile,
			int newWidth, float quality) throws IOException {
 
		if (quality > 1) {
			throw new IllegalArgumentException(
					"Quality has to be between 0 and 1");
		}
 
		ImageIcon ii = new ImageIcon(originalFile.getCanonicalPath());
		Image i = ii.getImage();
		Image resizedImage = null;
 
		int iWidth = i.getWidth(null);
		int iHeight = i.getHeight(null);
        //比例缩放
		if (iWidth > iHeight) {
			resizedImage = i.getScaledInstance(newWidth, (newWidth * iHeight)
					/ iWidth, Image.SCALE_SMOOTH);
		} else {
			resizedImage = i.getScaledInstance((newWidth * iWidth) / iHeight,
					newWidth, Image.SCALE_SMOOTH);
		}
        //指定宽高
		Image temp = new ImageIcon(resizedImage).getImage();
		// Create the buffered image.
        BufferedImage bufferedImage = new BufferedImage(temp.getWidth(null),
				temp.getHeight(null), BufferedImage.TYPE_INT_RGB);
		// Copy image to buffered image.
        Graphics g = bufferedImage.createGraphics();
		// Clear background and paint the image.
		g.setColor(Color.white);
		g.fillRect(0, 0, temp.getWidth(null), temp.getHeight(null));
		g.drawImage(temp, 0, 0, null);
		g.dispose();
 
		// Soften.
		float softenFactor = 0.05f;
		float[] softenArray = { 0, softenFactor, 0, softenFactor,
				1 - (softenFactor * 4), softenFactor, 0, softenFactor, 0 };
		Kernel kernel = new Kernel(3, 3, softenArray);
		ConvolveOp cOp = new ConvolveOp(kernel, ConvolveOp.EDGE_NO_OP, null);
		bufferedImage = cOp.filter(bufferedImage, null);
 
		// Write the jpeg to a file.
		FileOutputStream out = new FileOutputStream(resizedFile);
 
		// Encodes image as a JPEG data stream
		JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
 
		JPEGEncodeParam param = encoder
				.getDefaultJPEGEncodeParam(bufferedImage);
 
		param.setQuality(quality, true);
 
		encoder.setJPEGEncodeParam(param);
		encoder.encode(bufferedImage);
	} // Example usage
 
	public static void main(String[] args) throws IOException {
		 File originalImage = new File("C:P7.gif");
		 resize(originalImage, new File("c:P7-0.jpg"),150, 0.7f);
		 resize(originalImage, new File("c:P7-1.jpg"),150, 1f);
	}
}

看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注亿速云行业资讯频道,感谢您对亿速云的支持。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI