Skip to content

Instantly share code, notes, and snippets.

@yzlnew
Created September 6, 2018 05:43
Show Gist options
  • Select an option

  • Save yzlnew/ad58b063369431cb3acd134fe5da4d8a to your computer and use it in GitHub Desktop.

Select an option

Save yzlnew/ad58b063369431cb3acd134fe5da4d8a to your computer and use it in GitHub Desktop.
[增大微信 GIF 表情] 部分图片添加成表情尺寸比较小,需要增大
# 变大两倍,并且转换成 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