package com. gblfy. test; import java. awt. Graphics2D;
import java. awt. Image;
import java. awt. Transparency;
import java. awt. image. BufferedImage;
import java. io. File; import javax. imageio. ImageIO;
public class ImageUtil { public static void resizePng ( File fromFile, File toFile, int outputWidth, int outputHeight, boolean proportion) { try { BufferedImage bi2 = ImageIO. read ( fromFile) ; int newWidth; int newHeight; if ( proportion) { double rate1 = ( ( double ) bi2. getWidth ( null) ) / ( double ) outputWidth + 0.1 ; double rate2 = ( ( double ) bi2. getHeight ( null) ) / ( double ) outputHeight + 0.1 ; double rate = rate1 < rate2 ? rate1 : rate2; newWidth = ( int ) ( ( ( double ) bi2. getWidth ( null) ) / rate) ; newHeight = ( int ) ( ( ( double ) bi2. getHeight ( null) ) / rate) ; } else { newWidth = outputWidth; newHeight = outputHeight; } BufferedImage to = new BufferedImage ( newWidth, newHeight, BufferedImage. TYPE_INT_RGB) ; Graphics2D g2d = to. createGraphics ( ) ; to = g2d. getDeviceConfiguration ( ) . createCompatibleImage ( newWidth, newHeight, Transparency. TRANSLUCENT) ; g2d. dispose ( ) ; g2d = to. createGraphics ( ) ; @SuppressWarnings ( "static-access" ) Image from = bi2. getScaledInstance ( newWidth, newHeight, bi2. SCALE_AREA_AVERAGING) ; g2d. drawImage ( from, 0 , 0 , null) ; g2d. dispose ( ) ; ImageIO. write ( to, "png" , toFile) ; } catch ( Exception e) { e. printStackTrace ( ) ; } } public static void main ( String[ ] args) throws Exception { File fromFile = new File ( "D:\\22\\iconPath\\22.png" ) ; File toFile = new File ( "D:\\22\\iconPath\\2255555.png" ) ; resizePng ( fromFile, toFile, 100 , 100 , false ) ; }
}