如何通过滚动显示来自IPython笔记本的大图像?

时间:2016-04-21 09:57:06

标签: ipython jupyter-notebook

如何在IPython笔记本输出单元格中显示带有滚动条的大图像?下面的示例缩小图像以适合单元格,width没有任何效果。

from IPython.core.display import Image, display display(Image('https://i.ytimg.com/vi/j22DmsZEv30/maxresdefault.jpg', width=1900))

1 个答案:

答案 0 :(得分:1)

使用unconfined=True禁用图像的最大宽度限制:

from IPython.core.display import Image, display display(Image('https://i.ytimg.com/vi/j22DmsZEv30/maxresdefault.jpg', width=1900, unconfined=True))