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
Resources¶
Updated by Daniel Curtis about 9 years ago
- Description updated (diff)
- Status changed from New to Resolved
- % Done changed from 0 to 100