up vote 4 down vote favorite
share [g+] share [fb]

I'm looking to create favicon.ico files programatically from Python, but PIL only has support for reading ico files.

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

According to Wikipedia modern browsers can handle favicons in PNG format, so maybe you could just generate that?

Alternatively the ICO article describes the format...

link|improve this answer
feedback

Perhaps the following would work:

  • Generate your icon image using PIL
  • Convert the image to .ico format using the python interface to ImageMagick, PythonMagick

I have not tried this approach. The ImageMagick convert command line program was able to convert a .png file to .ico format, so at least ImageMagick supports the .ico format.

link|improve this answer
feedback

I don't know if this applies for all cases, but on WinXP an .ico can be a bmp of size 16x16, 32x32 or 64x64. Just change the extension to ico from bmp and you're ready to go.

Hope this helps

thing2k

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.