本文发表在 rolia.net 枫下论坛import com.sun.image.codec.jpeg.*;
import java.awt.*;
import java.awt.image.*;
import java.io.*;
import javax.swing.ImageIcon;
public class Thumbnail {
public static void main(String[] args){
if (args.length != 5) {
System.err.println("Usage: java Thumbnail INFILE " + "OUTFILE WIDTH HEIGHT QUALITY");
System.exit(1);
}
try
{
Image image = Toolkit.getDefaultToolkit().getImage(args[0]);
MediaTracker mediaTracker = new MediaTracker(new Container());
mediaTracker.addImage(image, 0);
mediaTracker.waitForID(0);
int thumbWidth = Integer.parseInt(args[2]);
int thumbHeight = Integer.parseInt(args[3]);
double thumbRatio = (double)thumbWidth / (double)thumbHeight;
int imageWidth = image.getWidth(null);
int imageHeight = image.getHeight(null);
double imageRatio = (double)imageWidth / (double)imageHeight;
if (thumbRatio < imageRatio) {
thumbHeight = (int)(thumbWidth / imageRatio);
} else {
thumbWidth = (int)(thumbHeight * imageRatio);
}
Image temp = new ImageIcon(image.getScaledInstance( thumbWidth,thumbHeight,Image.SCALE_SMOOTH)).getImage();
BufferedImage thumbImage = new BufferedImage(temp.getWidth(null), temp.getHeight(null), BufferedImage.TYPE_INT_RGB);
Graphics2D graphics2D = thumbImage.createGraphics();
graphics2D.setRenderingHint(RenderingHints.KEY_INTERPOLATION,RenderingHints.VALUE_INTERPOLATION_BILINEAR);
graphics2D.drawImage(image, 0, 0, thumbWidth, thumbHeight, null);
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(new BufferedOutputStream(new FileOutputStream(args[1])));
JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(thumbImage);
int quality = Integer.parseInt(args[4]);
quality = Math.max(0, Math.min(Integer.parseInt(args[4]), 100));
param.setQuality((float)quality / 100.0f, false);
encoder.setJPEGEncodeParam(param);
encoder.encode(thumbImage);
System.out.println("Done.");
}
catch(Exception e)
{System.err.println(e);}
}
}更多精彩文章及讨论,请光临枫下论坛 rolia.net
import java.awt.*;
import java.awt.image.*;
import java.io.*;
import javax.swing.ImageIcon;
public class Thumbnail {
public static void main(String[] args){
if (args.length != 5) {
System.err.println("Usage: java Thumbnail INFILE " + "OUTFILE WIDTH HEIGHT QUALITY");
System.exit(1);
}
try
{
Image image = Toolkit.getDefaultToolkit().getImage(args[0]);
MediaTracker mediaTracker = new MediaTracker(new Container());
mediaTracker.addImage(image, 0);
mediaTracker.waitForID(0);
int thumbWidth = Integer.parseInt(args[2]);
int thumbHeight = Integer.parseInt(args[3]);
double thumbRatio = (double)thumbWidth / (double)thumbHeight;
int imageWidth = image.getWidth(null);
int imageHeight = image.getHeight(null);
double imageRatio = (double)imageWidth / (double)imageHeight;
if (thumbRatio < imageRatio) {
thumbHeight = (int)(thumbWidth / imageRatio);
} else {
thumbWidth = (int)(thumbHeight * imageRatio);
}
Image temp = new ImageIcon(image.getScaledInstance( thumbWidth,thumbHeight,Image.SCALE_SMOOTH)).getImage();
BufferedImage thumbImage = new BufferedImage(temp.getWidth(null), temp.getHeight(null), BufferedImage.TYPE_INT_RGB);
Graphics2D graphics2D = thumbImage.createGraphics();
graphics2D.setRenderingHint(RenderingHints.KEY_INTERPOLATION,RenderingHints.VALUE_INTERPOLATION_BILINEAR);
graphics2D.drawImage(image, 0, 0, thumbWidth, thumbHeight, null);
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(new BufferedOutputStream(new FileOutputStream(args[1])));
JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(thumbImage);
int quality = Integer.parseInt(args[4]);
quality = Math.max(0, Math.min(Integer.parseInt(args[4]), 100));
param.setQuality((float)quality / 100.0f, false);
encoder.setJPEGEncodeParam(param);
encoder.encode(thumbImage);
System.out.println("Done.");
}
catch(Exception e)
{System.err.println(e);}
}
}更多精彩文章及讨论,请光临枫下论坛 rolia.net