欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

java高質(zhì)量縮放圖片的示例代碼

 更新時(shí)間:2020年09月11日 15:32:04   作者:TianZe  
這篇文章主要介紹了java高質(zhì)量縮放圖片的示例代碼,幫助大家更好的使用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 壓縮目標(biāo)文件
   * @param newWidth 壓縮后的圖片寬度
   * @param quality 壓縮質(zhì)量(0到1之間,越高質(zhì)量越好)
   * @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);
	}
}

以上就是java高質(zhì)量縮放圖片的示例代碼的詳細(xì)內(nèi)容,更多關(guān)于Java 縮放圖片的資料請(qǐng)關(guān)注腳本之家其它相關(guān)文章!

相關(guān)文章

  • Hadoop之NameNode Federation圖文詳解

    Hadoop之NameNode Federation圖文詳解

    今天小編就為大家分享一篇關(guān)于Hadoop之NameNode Federation圖文詳解,小編覺得內(nèi)容挺不錯(cuò)的,現(xiàn)在分享給大家,具有很好的參考價(jià)值,需要的朋友一起跟隨小編來看看吧
    2019-01-01
  • springboot整合shiro實(shí)現(xiàn)登錄驗(yàn)證授權(quán)的過程解析

    springboot整合shiro實(shí)現(xiàn)登錄驗(yàn)證授權(quán)的過程解析

    這篇文章主要介紹了springboot整合shiro實(shí)現(xiàn)登錄驗(yàn)證授權(quán),本文通過實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2022-01-01
  • java中Hashtable和HashMap的區(qū)別分析

    java中Hashtable和HashMap的區(qū)別分析

    java中Hashtable和HashMap的區(qū)別分析,需要的朋友可以參考一下
    2013-04-04
  • 利用Java設(shè)置Word文本框中的文字旋轉(zhuǎn)方向的實(shí)現(xiàn)方法

    利用Java設(shè)置Word文本框中的文字旋轉(zhuǎn)方向的實(shí)現(xiàn)方法

    Word文檔中可添加文本框,并設(shè)置文本框?yàn)闄M向文本排列或是縱向文本排列,或者設(shè)置文本框中的文字旋轉(zhuǎn)方向等.通過Java程序代碼,也可以實(shí)現(xiàn)以上文本框的操作.下面以Java代碼示例展示具體的實(shí)現(xiàn)步驟.另外,可參考C#及VB.NET代碼的實(shí)現(xiàn)方法,需要的朋友可以參考下
    2021-06-06
  • Java date format時(shí)間格式化操作示例

    Java date format時(shí)間格式化操作示例

    這篇文章主要介紹了Java date format時(shí)間格式化操作,結(jié)合具體實(shí)例形式分析了java針對(duì)日期時(shí)間進(jìn)行格式化操作的相關(guān)實(shí)現(xiàn)技巧,需要的朋友可以參考下
    2017-03-03
  • Groovy動(dòng)態(tài)語言使用教程簡介

    Groovy動(dòng)態(tài)語言使用教程簡介

    這篇文章主要為大家介紹了Groovy動(dòng)態(tài)語言使用教程簡介,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-09-09
  • Java中Flux類的使用方法和示例代碼

    Java中Flux類的使用方法和示例代碼

    在Java編程中Flux是一種處理響應(yīng)式編程的庫,它提供了一種異步數(shù)據(jù)流處理的方式,這篇文章主要給大家介紹了關(guān)于Java中Flux類的使用方法和示例代碼,文中通過代碼介紹的非常詳細(xì),需要的朋友可以參考下
    2024-08-08
  • java中RabbitMQ高級(jí)應(yīng)用

    java中RabbitMQ高級(jí)應(yīng)用

    本文主要介紹了java中RabbitMQ高級(jí)應(yīng)用,中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2022-05-05
  • 最新評(píng)論