免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1164 | 回复: 0
打印 上一主题 下一主题

Java处理缩略图超过1M出错的对应方法 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-02-28 09:41 |只看该作者 |倒序浏览

import java.io.*;
import java.awt.Image.*;
import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.awt.*;
import javax.swing.*;

public class test
{
public final static byte WIDTH = 1;
public final static byte HEIGHT = 2;
public static int[] fixHnW(int s1,int s2,int size,byte type)
{
  int hnw[] = new int[2];
  hnw[0] = s2;
  hnw[1] = s1;
  if (size
   if (type==WIDTH)
   {
    if (size
}
public static void makeSmall(String sourcefile,OutputStream out,int size,byte type) throws Exception
{
  ImageIcon II = new ImageIcon(sourcefile);
  
  int HnW[] = fixHnW(II.getIconWidth(),II.getIconHeight(),size,type);
        BufferedImage bufferedImage = new BufferedImage(HnW[1], HnW[0], BufferedImage.TYPE_INT_RGB);
        Graphics g = bufferedImage.getGraphics();
  g.drawImage(II.getImage(),0,0,HnW[1],HnW[0],null);
  ImageIO.write(bufferedImage,"jpeg",out);
}
public static void main(String d[]) throws Exception
{
  int size = 300;
  String sourcefile = "H:/j14/image/old.jpg";
  String destfile = "H:/j14/image/new.jpg";
  FileOutputStream fos = new FileOutputStream(destfile);
  makeSmall(sourcefile,fos,size,HEIGHT);
/**
  size 图片大小
  使用 HEIGHT 说明 size 是指高
  使用 WIDTH 说明 size 是指宽
  以上的例子为:
  生成一个高度为300的图片,宽为自动计算出来
*/
}
}


感谢一个叫做mike的java高手帮助我解决这个问题


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/11224/showart_79226.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP