vote up 2 vote down star

I have genereated image by PIL. How can I save it to string in memory? Image.save() method requires file.

I'd like to have number of such images stored in dictionary.

flag

70% accept rate

3 Answers

vote up 5 vote down check

You can probably use the StringIO class to get a wrapper around strings that behaves like a file. The StringIO object provides the same interface as a file, but saves the contents just in memory:

import StringIO

output = StringIO.StringIO()
image.save(output)
contents = output.getvalue()
output.close()
link|flag
vote up 2 vote down

save() can take a file-like object as well as a path, so you can use an in-memory buffer like a StringIO:

buf= StringIO.StringIO()
im.save(buf, format= 'JPEG')
jpeg= buf.getvalue()
link|flag
Thank you. StringIO - thats what I need. – maxp Mar 15 at 5:47
vote up 2 vote down

When you say "I'd like to have number of such images stored in dictionary", it's not clear if this is an in-memory structure or not.

You don't need to do any of this to meek an image in memory. Just keep the image object in your dictionary.

If you're going to write your dictionary to a file, you might want to look at im.tostring() method and the Image.fromstring() function

http://www.pythonware.com/library/pil/handbook/image.htm

im.tostring() => string

Returns a string containing pixel data, using the standard "raw" encoder.

Image.fromstring(mode, size, data) => image

Creates an image memory from pixel data in a string, using the standard "raw" decoder.

The "format" (.jpeg, .png, etc.) only matters on disk when you are exchanging the files. If you're not exchanging files, format doesn't matter.

link|flag
It sounds like he wants to retain the PNG format, not reduce it to raw pixel data. – Ben Blank Mar 14 at 17:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.