在 PythonMagick 中绘制文本?
如何在 PythonMagick 中绘制文本?我需要向 JPG 文件添加水印,但我在 Python 上找不到任何示例。
How can I drawing text in PythonMagick? I need add watermark to JPG files, but I can't find any example on Python.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您需要使用
Image.composite()
方法将水印图像分层在目标图像之上:编辑
更仔细地查看 PythonMagick 后,我会强烈建议不要使用它,因为它的 API 很难使用,而且没有 Python 友好的文档。相反,我建议使用 Python 成像库。这是一个基本的水印示例:
It looks like you need to use the
Image.composite()
method to layer the watermark image on top of the target image:EDIT
After looking more closely at PythonMagick, I would strongly advise against using it, as its API is quite hard to use and there is no python-friendly documentation. Instead, I would recommend using the Python Imaging Library. Here's a basic watermarking example: