Python图像处理库

时间:2014-02-05 00:22:56

标签: python image-processing scikit-image

我想通过在特定区域中添加文本来修改图像文件(bmp,jpg和png)。例如,如果我要为一个信封画一张图片,并在指定区域的顶部打印不同的地址,并指定使用哪种图库和颜色?

我正在寻找像这样的东西http://python-catalin.blogspot.com/2010/06/add-text-on-image-with-pil-module.html 但是,由于我刚刚切换,因此使用BSD许可证可以使用Python 3进行numpy和scipy。

这是Scikit-image或Pillow的工作(不确定它是否是BSD)?如果不是我可以使用什么以及库的哪个部分?

1 个答案:

答案 0 :(得分:1)

这可以使用freetype-py来实现。请参阅此处的示例:https://code.google.com/p/freetype-py/source/browse/trunk/examples/hello-world.py

这也非常适合skimage.draw模块,我们当然可以考虑添加它。