Library for wmf/emf to png conversion?

Joonas Paalasmaa joonas at olen.to
Fri Mar 15 16:11:47 EST 2002


dominikush wrote:
> 
> Hi,
> 
> does anybody know of a python library that enables
> conversion from a
> 
>    (Enhanced) Windows Metafile
> to
>    png

Python Imaging Library supports Wmf atleast partitially.
Maybe this works?

import Image
Image.open("pic.wmf").save("pic.png")



More information about the Python-list mailing list