如何在python中从字符串创建图像

时间:2009-11-03 02:20:39

标签: python string image sockets

我目前在Python程序中使用二进制数据字符串创建图像时遇到问题。我通过套接字接收二进制数据但是当我尝试我在here上阅读的方法时这样:

buff = StringIO.StringIO() #buffer where image is stored
#Then I concatenate data by doing a 
buff.write(data) #the data from the socket
im = Image.open(buff)

我对“图像类型无法识别”的效果有异常。我知道我正在接收数据,因为如果我将图像写入文件然后打开文件就可以了:

buff = StringIO.StringIO() #buffer where image is stored
buff.write(data) #data is from the socket
output = open("tmp.jpg", 'wb')
output.write(buff)
output.close()
im = Image.open("tmp.jpg")
im.show()

我想我在使用StringIO类时可能做错了但是我不确定

2 个答案:

答案 0 :(得分:29)

我怀疑在将StringIO对象传递给PIL之前,你不是seek - 回到缓冲区的开头。这里有一些代码演示了问题和解决方案:

>>> buff = StringIO.StringIO()
>>> buff.write(open('map.png', 'rb').read())
>>> 
>>> #seek back to the beginning so the whole thing will be read by PIL
>>> buff.seek(0)
>>>
>>> Image.open(buff)
<PngImagePlugin.PngImageFile instance at 0x00BD7DC8>
>>> 
>>> #that worked.. but if we try again:
>>> Image.open(buff)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "c:\python25\lib\site-packages\pil-1.1.6-py2.5-win32.egg\Image.py", line 1916, in open
    raise IOError("cannot identify image file")
IOError: cannot identify image file

确保在读取任何StringIO对象之前调用buff.seek(0)。否则你将从缓冲区的末尾读取,这看起来像一个空文件,可能会导致你看到的错误。

答案 1 :(得分:7)

您可以调用buff.seek(0),或者更好地使用数据StringIO.StringIO(data)初始化内存缓冲区。