PIL无法识别图像文件

时间:2020-07-09 23:13:52

标签: python base64 python-imaging-library

对象list_of_contents [0]基于64。我正在尝试将其转换为原始图像。

image_64_decode = base64.b64decode(list_of_contents[0]) 
image_result = open('test.jpg', 'wb') 
image_result.write(image_64_decode)
img = Image.open(r'C:\Users\st-am\CANCER_APP\test.jpg')

但是,出现以下错误:

PIL.UnidentifiedImageError: cannot identify image file 'C:\\Users\\st-am\\CANCER_APP\\test.jpg'

有人知道为什么PIL无法识别图像吗?

Here is the image

0 个答案:

没有答案