猿问

为什么 PIL 的 image.show() 在 google collab notebook

我正在使用 PIL 库在 google collab notebook 中显示图像。但它不起作用。谁能告诉我显示图像的原因和方式。我把我的代码放在下面。


from PIL import Image

Im=Image.open('image_name.png')

Im.show()


Cats萌萌
浏览 153回答 1
1回答

慕丝7291255

这个问题出现在 Jupyter Notebooks 的情况下。使用 show() 不显示图像。所以像下面的代码一样放弃调用 show() 。这将在单元格的输出中显示图像。from PIL import Imageim = Image.open("lists.jpg")im
随时随地看视频慕课网APP

相关分类

Python
我要回答