我在Ubuntu上使用python,我(正如我的名字所示)就是一个完整的菜鸟。我想插入一个非常基本的图像,我环顾四周,复制编码等,但似乎有什么工作。我想插入一个图像,没有别的,所以当我在shell中运行它时,它只会出现在屏幕上。请帮忙?请简单解释一下,我想知道我在做什么!提前谢谢你。
答案 0 :(得分:2)
你可以安装PIL imagemagick
然后:
import Image
im = Image.open("your_image")
im.show()
答案 1 :(得分:1)
我会尝试类似的事情:
import webbrowser
webbrowser.open('file:///path/to/my/file.jpg')