暂时还是老老实实做好画板,选择导入到Axure使用制作流程图。需要安装Sketch插件。
调研了几个软件
不能自己调整线条,做出来相当不美观。
Overflow要收费,并且不能单独导出
一般需要做如下处理
写了个脚本,使用ImageMagic处理。
./crop.sh /Volumes/hdb/Share/Download/领取MVP截图/with_header
WechatIMG724.png
参数
脚本源文件如下
#!/bin/sh
if [ "$1" = "" ]; then
echo Usages: $0 [directory]
exit 1
fi
if [ ! -d $1 ]; then
echo Not found directory, $1
exit 1
else
cd $1
fi
CROP_OPTS=""
if [ "$2" != "" ]; then
CROP_OPTS=" -crop +0+$2"
fi
# read w h < <(identify -format "%w %h" WechatIMG724.png)
for f in `ls | grep -E "\.(png|jpg)$"`; do
[ ! -d output ] && mkdir output
echo $f
convert -resize 320x $CROP_OPTS $f output/$f
done