Re: [Pythonmac-SIG] Packaging Imagemagick into wxPython standalones.

2007-10-15 Thread Larry Meyn
Jeremy, You should include the error trace when posting problems and preferably snippets of the misbehaving code. I had a similar problem with a py2app attempt that turned out be my not having a resource data directory included in the bundle that was built. Larry On Oct 15, 2007, at 9:4

Re: [Pythonmac-SIG] Packaging Imagemagick into wxPython standalones.

2007-10-15 Thread Christopher Barker
Jeremy Gibbs wrote: > Has anyone had any experience using ImageMagick or PIL in a > standalone application to convert image types? PIL works fine in a stand-alone in general, but both ImageMagik and PIL are raster format packages. EPS is a vector format, so I think both PIL and ImageMagik

[Pythonmac-SIG] Packaging Imagemagick into wxPython standalones.

2007-10-15 Thread Jeremy Gibbs
I am creating a very simple front end to a vector graphics package that one of my professors wrote. His package writes the images out in .eps format. So in my code I just call ImageMagick's 'convert' function to jpeg. From jpeg I can use wxPython's ConvertToBitmap() feature to display the