Skip to content

Instantly share code, notes, and snippets.

@ty0x2333
Last active February 16, 2016 13:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ty0x2333/18f10ae8f08ec84efa6a to your computer and use it in GitHub Desktop.
Save ty0x2333/18f10ae8f08ec84efa6a to your computer and use it in GitHub Desktop.
The script will be generated under the website of ICO
#!/bin/sh
echo The script will be generated under the website of ICO
convert icon.png \
\( -clone 0 -resize 16x16 \) \
\( -clone 0 -resize 32x32 \) \
\( -clone 0 -resize 48x48 \) \
\( -clone 0 -resize 64x64 \) \
-delete 0 -colors 256 favicon.ico
@echo off
echo The script will be generated under the website of ICO
convert icon.png ( -clone 0 -resize 16x16 ) ( -clone 0 -resize 32x32 ) ( -clone 0 -resize 48x48 ) ( -clone 0 -resize 64x64 ) -delete 0 favicon.ico
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment