Last active
June 14, 2018 18:41
-
-
Save brookinc/be3bb6c619b297942d724161d137a705 to your computer and use it in GitHub Desktop.
An interactive batch file that simplifies resizing and compressing GIFs with gifsicle.
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
@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