Raspberry pi不会显示pil图像

时间:2015-07-05 23:39:08

标签: python image raspberry-pi

我得到了覆盆子pi相机模块,并按照示例中显示的内容将捕获保存到图像中的另一个PIL,但图像不会显示。当我在shell中引用图像时,每件事似乎工作正常但显示它。代码是http://picamera.readthedocs.org/en/latest/recipes1.html上的4.3(我没有输入代码,因为我在移动设备上写了这个代码)。在shell中输入图像时,它会返回<PIL.jpegimageplugin.jpegimagefile image mode=RGB size=1280x720 at 0x1486690>

在我调用image.show之后没有显示任何内容。

2 个答案:

答案 0 :(得分:1)

image.show()调用外部查看器程序。如果您没有或在非图形环境中运行,则不会执行任何操作。

答案 1 :(得分:0)

遇到同样的问题,通过安装ImageMagick解决了这个问题。在Ubuntu / Debian的情况下:

sudo apt install imagemagick

之后重启你的python脚本。