其他分享
首页 > 其他分享> > 【722】jupyter图像内部显示

【722】jupyter图像内部显示

作者:互联网

正常我们调用下面代码的时候,会直接跳出来一个窗体

from PIL import Image

img = Image.open(file_path)
img.show()

为了让图片在网页内部显示,我们可以调用 display() 函数,如下所示:

display(img)

 

标签:调用,jupyter,img,show,Image,722,file,图像,display
来源: https://www.cnblogs.com/alex-bn-lee/p/16362004.html