Skip to content

Instantly share code, notes, and snippets.

@tankxu
Created June 28, 2019 07:44
Show Gist options
  • Save tankxu/aa727073c966fafce49722f2d3f48213 to your computer and use it in GitHub Desktop.
Save tankxu/aa727073c966fafce49722f2d3f48213 to your computer and use it in GitHub Desktop.
Gif 图片压缩

方法一:

gifsicle -O3 --lossy=130 input.gif -o output.gif

lossy 的值越大压缩越严重

方法二:

convert input.gif -fuzz 15% -layers Optimize output.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment