Easy Way To Create Favicon
News flash! Benny Chandra discovers favicons
. He used an online service to create his own favicon.ico. Here is Wikipedia entry for favicon.
Favicon.ico itself is a 16×16 bitmap stored in legacy Microsoft icon resource file. Actually, it is very easy to generate favicon.ico from an existing image file using ImageMagick. Since almost all Linux distributions install ImageMagick by default, all you need to generate your own favicon.ico is a shell access to a Linux box. Root access or physical access to the box is not required. Regular user privilege suffices. No need to use fancy graphical editor like Adobe Photoshop or The Gimp.
Suppose you have an image named picture.png. To convert it into favicon.ico all you need to do is to execute the following command:
convert picture.png -resize 16x16! favicon.ico
That’s it. No fuss, no muss. Any experienced PHP/Perl/Python coder can use the above oneliner to easily create their own aforementioned web based favicon.ico generator.
wah, gitu aja dijadiin ‘news flash’… jadi malu gw.. he he he
I always create favicon in Linux using Gimp by saving as xpm format; then converting it into ico using xpm2wico utility. Either Gimp or xmp2wico are available in Debian package, so apt-get will be enough. Because my favicon is deadly simple, I am not sure this method is sufficient for everyone.
If ImageMagick is not available but Netpbm is, then you can also use something like this:
you can also use this small commandline utility, named png2ico to create a favicon from png, nice to use on webservers with php and to build your own converter

its available for win and linux too
http://www.winterdrache.de/freeware/png2ico/