On 10/26/05, Armin <[EMAIL PROTECTED]> wrote:
> The world is different when you have a custom manipulator. It's more
> beautiful, except I can't find any docs on them anywhere.

Agreed on both counts. They're much better than the default
manipulators -- and they need to be better documented. :)

> 1. How do I actually save this into a file?

Use Python file objects, like so:

"""
f = open('/path/to/output/file.jpg', 'wb') # wb = write binary
f.write(request.FILES['photo']['content'])
f.close()
"""

> 2. I need to resize the image and play with it with PIL. Is it possible
> to transfer the image to an image object without saving it and then
> giving it's full path to load it?

I haven't tested this, but PIL's Image.open() function takes any
file-like object, so you might be able to pass it a StringIO proxy.

Adrian

--
Adrian Holovaty
holovaty.com | djangoproject.com | chicagocrime.org

Reply via email to