Skip to content

Instantly share code, notes, and snippets.

@magnetikonline
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save magnetikonline/9102605 to your computer and use it in GitHub Desktop.
Save magnetikonline/9102605 to your computer and use it in GitHub Desktop.
Create favicon.ico from PNG source using ImageMagick.

Create favicon.ico from PNG source using ImageMagick

Using a source PNG image with dimensions of 144x144, which will be our apple-touch-icon used for Apple iOS and tablet devices.

$ convert -resize 32x32 -colors 256 favicon.png favicon.ico

Markup for HTML page <head> area:

<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link rel="apple-touch-icon" href="favicon.png" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment