在 ubuntu 中访问 python 的图像模块

在 ubuntu 中访问 python 的图像模块

如何在 ubuntu 12.4 中访问 Python 的 ImageOps 模块。我想使用内置的图像处理功能,但无法访问它们。有人能告诉我如何访问该模块吗?出现导入错误,例如缺少 ImageOps 模块。我该怎么办?

答案1

首先,确保您已经python-imaging安装了该包:

sudo apt-get install python-imaging

然后,在 Python 提示符下输入

from PIL import ImageOps

如果您没有收到任何错误,则表示一切都已正确安装,并且您可以在程序中使用 PIL/Pillow。

相关内容