如何在IPython笔记本输出单元格中显示带有滚动条的大图像?下面的示例缩小图像以适合单元格,width
没有任何效果。
from IPython.core.display import Image, display
display(Image('https://i.ytimg.com/vi/j22DmsZEv30/maxresdefault.jpg', width=1900))
答案 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))