I have generated an image using PIL. How can I save it to a string in memory?
The Image.save() method requires a file.
I'd like to have several such images stored in dictionary.
|
I have generated an image using PIL. How can I save it to a string in memory?
The I'd like to have several such images stored in dictionary. |
||||
|
|
|
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:
This might lead to a
|
|||||||||||||
|
|
save() can take a file-like object as well as a path, so you can use an in-memory buffer like a StringIO:
|
|||
|
sth's solution didn't work for me
It was trying to detect the format from the extension in the filename , which doesn't exist in StringIO case You can bypass the format detection by setting the format yourself in a parameter
|
|||
|
|
|
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 If you're going to write your dictionary to a file, you might want to look at http://www.pythonware.com/library/pil/handbook/image.htm
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. |
|||||
|