简体   繁体   English

PIL open()方法不能与BytesIO一起使用

[英]PIL open() method not working with BytesIO

For some reason, when I try to make an image from a BytesIO steam, it can't identify the image. 出于某种原因,当我尝试从BytesIO蒸汽制作图像时,它无法识别图像。 Here is my code: 这是我的代码:

from PIL import Image, ImageGrab
from io import BytesIO

i = ImageGrab.grab()
i.resize((1280, 720))
output = BytesIO()
i.save(output, format = "JPEG")
output.flush()
print(isinstance(Image.open(output), Image.Image))

And the stack trace of the error it throws: 它抛出的错误的堆栈跟踪:

Traceback (most recent call last):
  File "C:/Users/Natecat/PycharmProjects/Python/test.py", line 9, in <module>
    print(isinstance(Image.open(output), Image.Image))
  File "C:\Python27\lib\site-packages\PIL\Image.py", line 2126, in open
    % (filename if filename else fp))
IOError: cannot identify image file <_io.BytesIO object at 0x02394DB0>

I am using the Pillow implementation of PIL. 我正在使用PIL的Pillow实现。

Think of BytesIO as a file object, after you finish writing the image, the file's cursor is at the end of the file, so when Image.open() tries to call output.read() , it immediately gets an EOF. 将BytesIO视为文件对象,在完成图像写入后,文件的光标位于文件的末尾,因此当Image.open()尝试调用output.read() ,它会立即获得EOF。

You need to add a output.seek(0) before passing output to Image.open() . 在将output传递给Image.open()之前,需要添加output.seek(0) Image.open()

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM