PIL and windows ico files

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Pieter Claerhout

    PIL and windows ico files

    Hi all,

    I'm trying to use PIL to convert windows icon files to PNG. This mostly
    works, but it doesn't preserve the transparancy. Any tips or tricks on how
    to preserve the transparancy?

    Currently, my code looks as follows:

    from PIL import Image
    from PIL import IcoImagePlugin
    from PIL import GifImagePlugin
    Image._initiali zed = 1
    im = Image.open( 'xplane.ico' )
    im.save( 'xplane.gif' )

    thanks in advance,


    pieter


Working...