生成小图,本来是我套写在fileupload里的

public boolean CreateThumbnail(String _toDir, String _fromDir) throws Exception
    {
      //存放路径
      String todir = _toDir;
      String fromdir = _fromDir;

      double Ratio = 0.0;
      File ThF = new File(todir);
      InputStream input = new FileInputStream(fromdir);
      BufferedImage Bi = ImageIO.read(input);//getInputStream()

  //假设图片宽 高 最大为80 80
      Image Itemp = Bi.getScaledInstance(80, 80, Bi.SCALE_SMOOTH);
      if ( (Bi.getHeight() > 80) || (Bi.getWidth() > 80)) {
        if (Bi.getHeight() > Bi.getWidth())
          Ratio = 80.0 / Bi.getHeight();
        else
          Ratio = 80.0 / Bi.getWidth();
      }

      AffineTransformOp op = new AffineTransformOp(AffineTransform.getScaleInstance(Ratio, Ratio), null);
      Itemp = op.filter(Bi, null);
      Graphics grd = Itemp.getGraphics();

      //加注自己的标志字
      grd.setColor(Color.red);
      grd.setFont(new Font("Times New Roman",Font.PLAIN,18));
      grd.drawString("YangTom",30,10);
      grd.dispose();


      try {
        ImageIO.write( (BufferedImage) Itemp, getExt(todir), ThF);
      }
      catch (Exception ex) {
        throw new Exception(" ImageIo.write error in CreatThum.: " +
                            ex.getMessage());
      }finally{
        if(input!=null){
          try{
            input.close();
          }catch(Exception e){
            System.out.println("Close the InputStream is fail:");
            e.printStackTrace();
          }
        }
      }
      return (true);
  }

//获取后缀 
private String getExt(String dir){

    String filename = dir;
    int lastdot = filename.lastIndexOf(".");
    String ext = filename.substring(lastdot+1);

    return ext;
  }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值