Re: Resize an Image without PIL

2005-05-09 Thread Bengt Richter
On 9 May 2005 09:51:34 -0700, [EMAIL PROTECTED] wrote: >Hi I would like to know how to resize an Image without using python >Imaging library. > You don't say how your image is represented, nor whether you require the same representation on both ends of the transformation. You don't say anything ab

Re: Resize an Image without PIL

2005-05-09 Thread James Carroll
Or if you're using wxPython, wx.Image can load, rescale and save. There's also a Python wrapper for imageMagick, which will do just about anything to medium-small files. One way or another you'll need to incorporate (depend on) something that can decode the various image file formats that you nee

Re: Resize an Image without PIL

2005-05-09 Thread Larry Bates
PIL is the best way. Or you can call some external program to do it (using os.system). Larry Bates [EMAIL PROTECTED] wrote: > Hi I would like to know how to resize an Image without using python > Imaging library. > -- http://mail.python.org/mailman/listinfo/python-list