码迷,mamicode.com
首页 > 其他好文 > 详细

批量缩放图片的脚本

时间:2015-01-21 13:27:40      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:图片   cocos2d-x   

#!/bin/bash


# author : jiangxf 2015.1.21


if [ $#-lt 2]; then

    echo"Usage: resizePng.sh {pngName} {percentage}";

    exit;

fi


width=`sips -g pixelHeight $1| tail -n1| awk -F: {print $2}`


newWidth=`expr $width \* $2 /100`;


echo "$1: width($width =>$newWidth)";


sips -Z$newWidth $1



用法

find . -name "*.png" -exec ./resizePng.sh {} 67 \;

批量缩放图片的脚本

标签:图片   cocos2d-x   

原文地址:http://blog.csdn.net/epeaktop/article/details/42966889

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!