Skip to content

Instantly share code, notes, and snippets.

@brookinc
Last active June 14, 2018 18:41
Show Gist options
  • Save brookinc/be3bb6c619b297942d724161d137a705 to your computer and use it in GitHub Desktop.
Save brookinc/be3bb6c619b297942d724161d137a705 to your computer and use it in GitHub Desktop.
An interactive batch file that simplifies resizing and compressing GIFs with gifsicle.
@echo off
set /p filename="Enter GIF filename (without .gif extension) to resize: "
set /p scale="Enter scale to resize by (eg. 0.5): "
set /p colors="Enter color palette size to use (between 2 and 256): "
@echo on
gifsicle-1.89-win64\gifsicle.exe --scale %scale% --colors %colors% -O3 --no-extensions %filename%.gif > %filename%-%scale%-%colors%.gif
@echo off
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment