批量缩放图片的脚本

前端之家收集整理的这篇文章主要介绍了批量缩放图片的脚本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

#!/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 \;

原文链接:https://www.f2er.com/cocos2dx/344785.html

猜你在找的Cocos2d-x相关文章