我尝试使用Jupyter Notebook在Python 3.6中导入png文件但没有成功。 我已经看到一些不起作用的例子,至少现在不行了,即
import os,sys
import Image
jpgfile = Image.open("picture.jpg")
没有名为Image的模块我可以安装: conda安装图片 要么 pip install Image
非常感谢任何简单的解决方案!
答案 0 :(得分:1)
您可以按如下方式在Jupyter Notebook中显示文件中的图像:
from IPython.display import Image
img = 'fig31_Drosophila.jpg'
Image(url=img)
其中img = 'fig31_Drosophila.jpg'
是您想要的图像的路径和文件名。 (此处,图像与主脚本位于同一文件夹中)
或者:
from IPython.display import Image
img = 'fig31_Drosophila.jpg'
Image(filename=img)
您可以指定可选的参数(例如width
和height
:
from IPython.display import Image
img = 'fig31_Drosophila.jpg'
Image(url=img, width=100, height=100)