python – PIL open()方法不能使用BytesIO

前端之家收集整理的这篇文章主要介绍了python – PIL open()方法不能使用BytesIO前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
由于某种原因,当我尝试从BytesIO蒸汽制作图像时,它无法识别图像.这是我的代码
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))

并且它抛出的错误的堆栈跟踪:

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>

我正在使用枕头实施PIL.

解决方法

将BytesIO视为文件对象,完成图像编辑后,文件的光标位于文件末尾,因此当Image.open()尝试调用output.read()时,它会立即获得EOF.

在将输出传递给Image.open()之前,需要添加一个output.seek(0).

原文链接:https://www.f2er.com/python/186424.html

猜你在找的Python相关文章