我使用以下代码打开TextBox
并收到一些错误:
1.png
但我可以使用macOS >>> from PIL import Image
>>> im = Image.open("1.png")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python3.6/site-packages/PIL/Image.py", line 2519, in open
% (filename if filename else fp))
OSError: cannot identify image file '1.png'
成功打开1.png
。
我在Python 3.6.2中使用Pillow 4.2.1。
答案 0 :(得分:0)
当我从Save link as
下载链接时,我下载了一个损坏的文件。我无法从PIL Image
打开它,但也无法使用Preview
应用。
当我第一次在Chrome中打开文件,然后点击Dropbox中的Download
时,该文件没有损坏,我也可以在PIL Image
中成功打开它。