Object has no attribute 'Read' Error: PIL Library

Object has no attribute 'Read' Error: PIL Library

我正在尝试使用 PIL 库中的 Image.Open() 方法从特定 URL 加载图像,但是我收到以下错误:

'Response' object has no attribute 'read'

我的代码如下:

image1 = Image.open(requests.get(URL))

这在 requests Quickstart 中得到解决:

from PIL import Image
from io import BytesIO

i = Image.open(BytesIO(r.content))

其中 r 是一个 Response 对象,使得 r = requests.get(URL).