Skip to content

Instantly share code, notes, and snippets.

@guerrerocarlos
Created July 17, 2014 04:58
Show Gist options
  • Save guerrerocarlos/1e9d62211dc788ddbb3c to your computer and use it in GitHub Desktop.
Save guerrerocarlos/1e9d62211dc788ddbb3c to your computer and use it in GitHub Desktop.
Create multisized .ico in MacOSX
convert icon.png \
\( -clone 0 -resize 16x16 \) \
\( -clone 0 -resize 32x32 \) \
\( -clone 0 -resize 48x48 \) \
\( -clone 0 -resize 64x64 \) \
-delete 0 -colors 256 favicon2.ico
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment