当前位置:七道奇文章资讯编程技术Java编程
日期:2011-03-22 16:13:00  来源:本站整理

制作图片缩略图的Groovy脚本[Java编程]

赞助商链接



  本文“制作图片缩略图的Groovy脚本[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

import javax.imageio.ImageIO;
import java.io.File;
import java.io.IOException;
import java.awt.image.BufferedImage;
import java.awt.*;
def createThumbnail(File input, File output, int length) throws IOException {
     if (!input.exists()) {
         throw new RuntimeException("input file not exists!");
     }
     if (!output.exists()) {
         output.createNewFile();
     }
     BufferedImage srcImage = ImageIO.read(input);
     int realWidth = srcImage.getWidth(null);
     int realHeight = srcImage.getHeight(null);
     int width, height;
     if (realWidth < length && realHeight < length) {
         // 保持本来大小
         width = realWidth;
         height = realHeight;
     } else if ((length * realHeight) / realWidth > length) {
         // 按照实际高度来压缩
         // 压缩后的宽
         width = (length * realWidth) / realHeight;
         // 压缩后的高度
         height = length;
     } else {
         // 按实际宽度来压缩
         // 压缩后的宽
         width = length;
         // 压缩后的高度
         height = (length * realHeight) / realWidth;
     }

     Image newImage = srcImage.getScaledInstance(width, height, Image.SCALE_SMOOTH);
     BufferedImage targetImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
     Graphics g = targetImage.getGraphics();
     g.drawImage(newImage, 0, 0, null); // 绘制缩小后的图
     g.dispose();
     ImageIO.write(targetImage, "jpeg", output);
}

def dir = new File("d:/var/wormser/sample")
dir.eachFile{ f->
     def name = f.name;
     println name
     newFileName = name.replaceAll(/^([a-zA-Z0-9_]+)\.([a-zA-Z0-9]+)$/, "\$1_tb.jpg")
     def newFile = new File(dir.getAbsolutePath() + File.separator + newFileName)
     println newFileName
     createThumbnail(f, newFile, 160)
}


  以上是“制作图片缩略图的Groovy脚本[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • 制作图片缩略图的Groovy脚本
  • <b>用Photoshop制作图片卷页效果</b>
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .