Re: [Zope-dev] Zope 2.7.0 and Pythom Image Library

2004-07-09 Thread Dieter Maurer
John Ziniti wrote at 2004-7-6 20:44 -0400: > ... >I've had problems using PIL-based products in Zope because Zope >has its own module called "ImageFile" and Zope does some sys.path >munging so that when certain PIL modules do "import ImageFile", >they import the Zope version, instead of the ImageFi

Re: [Zope-dev] Zope 2.7.0 and Pythom Image Library

2004-07-06 Thread John Ziniti
Tor Oskar Wilhelmsen wrote: I'm trying to get the PIL(last version on python 2.3) working with Zope, but it seems that it's not working. I use the code: file = StringIO.StringIO(data) im = Image.open(file) im.show() where data is datafrom a blob in a db. This code is working outside Zope

Re: [Zope-dev] Zope 2.7.0 and Pythom Image Library

2004-07-04 Thread Tor Oskar Wilhelmsen
: Monday, July 05, 2004 8:33 AM Subject: Re: [Zope-dev] Zope 2.7.0 and Pythom Image Library > If the code works in pure Python then it must work in Zope especially when > you call > the code from an external method or other filesystem-based code as long as > you are using > the same

[Zope-dev] Zope 2.7.0 and Pythom Image Library

2004-07-04 Thread Tor Oskar Wilhelmsen
Hi I'm trying to get the PIL(last version on python 2.3)  working with Zope, but it seems that it's not working.   I use the code:  file = StringIO.StringIO(data) im = Image.open(file) im.show()    where data is datafrom a blob in a db. This code is working outside Zope, but at once when i t