Created
September 6, 2018 05:43
-
-
Save yzlnew/ad58b063369431cb3acd134fe5da4d8a to your computer and use it in GitHub Desktop.
[增大微信 GIF 表情] 部分图片添加成表情尺寸比较小,需要增大
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 变大两倍,并且转换成 gif 方便直接添加 | |
| magick convert small.jpg -resize 200% bigger.gif | |
| # 目录下批处理 | |
| find *.jpg | xargs -I {} magick convert -resize 400% {} {}.gif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment