Skip to content

Instantly share code, notes, and snippets.

@Merovex
Forked from magnetikonline/README.md
Last active August 29, 2015 14:13
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 Merovex/24dbbca471a6e6a0802d to your computer and use it in GitHub Desktop.
Save Merovex/24dbbca471a6e6a0802d to your computer and use it in GitHub Desktop.

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