Feature #656
Create a Favicon Image From A PNG File Using ImageMagick
Description
Favicons are simple images that are displayed in web browser tabs. This is a simple guide on how to create them using ImageMagick.
- JPG to ICO
convert -resize x16 -gravity center -crop 16x16+0+0 input.jpg -transparent white -colors 256 favicon.ico
- GIF or PNG to ICO
convert -resize x16 -gravity center -crop 16x16+0+0 input.png -background transparent -flatten favicon.ico