在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
在APP上架前,一次一次自己剪裁上架需要的各个尺寸的Icon不是程序员该干的事,使用Mac中自带的sips工具可以解决这个需求。 复制代码 代码如下: sips 10.4.4 - scriptable image processing system. This tool is used to query or modify raster image files and ColorSync ICC profiles. Its functionality can also be used through the "Image Events" AppleScript suite. Try 'sips --help' or 'sips --helpProperties' for help using this tool 它一个脚本图像处理系统,可用于查询和修改图像文件。 下面是刚写的IOS App Icon裁剪脚本,保存成一个.sh文件,在终端里输入sh xx.sh就可以执行了: 复制代码 代码如下: #!/bin/sh filename="icon.png" dirname="cutimg" name_array=("Icon-29.png" "[email protected]" "[email protected]" "Icon-57.png" "[email protected]" "Icon-120.png") size_array=("29" "58" "80" "57" "114" "120") mkdir $dirname for ((i=0;i<${#name_array[@]};++i)); do |
请发表评论