众香之主 发表于 2007-5-27 15:51:19

生成缩小jpg图片程序

import java.awt.image.BufferedImage;
import java.io.File;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.imageio.ImageIO;
import java.awt.image.AffineTransformOp;
import java.awt.geom.AffineTransform;
import java.awt.Image;

public class ZoomPicture{
public static void main(String arg[]){

String filePath = "g:/图片.jpg"; // 图片的位置

int height=50;
int width=150;
Icon icon = null;
try{
icon = getFixedBoundIcon(filePath,height,width);
}catch(Exception e){
System.out.println("exception : " + e);
}
System.out.println(" ### " + icon); //生成新图片的位置;
}

public static Icon getFixedBoundIcon(String filePath, int height, int width)
throws Exception{
double Ratio=0.0;
//缩放比例
File F = new File(filePath);
if (!F.isFile()) throw new Exception
(F+" is not image file error in getFixedBoundIcon!");
Icon ret = new ImageIcon(filePath);
BufferedImage Bi = ImageIO.read(F);
if ((Bi.getHeight()>height) || (Bi.getWidth()>width)){
if (Bi.getHeight()>Bi.getWidth()){
Ratio = (new Integer(height)).doubleValue() /Bi.getHeight();
}
else {
Ratio = (new Integer(width)).doubleValue()/Bi.getWidth();
}
int lastLength = filePath.lastIndexOf(".");
String subFilePath = filePath.substring(0,lastLength);
String fileType = filePath.substring(lastLength);
File zoomFile = new File(subFilePath+"_"+height +"_"+width+fileType);
Image Itemp = Bi.getScaledInstance (width,height,Bi.SCALE_SMOOTH);
AffineTransformOp op = new AffineTransformOp
(AffineTransform.getScaleInstance(Ratio, Ratio), null);
Itemp = op.filter(Bi, null);
try {
ImageIO.write((BufferedImage)Itemp, "jpg", zoomFile);
ret = new ImageIcon(zoomFile.getPath());
}catch (Exception ex) {
System.out.println("######## here error : " + ex);
}
}
return ret;
}
}

zkkpkk 发表于 2007-5-27 15:54:36

??看得出你很喜欢JAVA

[ 本帖最后由 众香之主 于 2007-5-27 21:21 编辑 ]

A_Fenzai 发表于 2007-5-27 15:57:32

:titter

zkkpkk 发表于 2007-5-27 15:59:55

不喜欢JAVA局限性太大,不像C#是中层次高级语言的超级无敌霸王3000,C++是底层高级语言的超级无敌霸王3000

xYx 发表于 2007-5-27 16:03:02

:handshake

众香之主 发表于 2007-5-27 21:38:48

java 是一种在任何操作系统都能做的事
C#就是行了。

zkkpkk 发表于 2007-5-27 21:49:11

原帖由 众香之主 于 2007-5-27 21:38 发表 http://172.16.1.236/images/common/back.gif
java 是一种在任何操作系统都能做的事
C#就是行了。
是啊就得个跨平台的优势,不过在开发面上比较狭窄,JAVA一般就是做JSP有优势,还有一个手机小程序

就是不说 发表于 2007-5-27 21:51:06

:handshake :handshake

流动的希土 发表于 2007-5-27 21:53:37

我刚学``不喜欢JAVA
觉得好麻烦

Su小小 发表于 2007-5-27 22:02:46

:smile :smile

zkkpkk 发表于 2007-5-27 22:07:55

原帖由 流动的希土 于 2007-5-27 21:53 发表 http://172.16.1.236/images/common/back.gif
我刚学``不喜欢JAVA
觉得好麻烦
我也报了选修,不喜欢JAVA,是因为不麻烦
页: [1]
查看完整版本: 生成缩小jpg图片程序