如何在 pyCairo 中进行文本换行 +潘戈?
我需要 pyCairo 做的是:
- 生成一个大小为 100x100 的图像,其中包含一些文本和来自文件系统的图像作为背景,
- 文本应该位于一个文本框内,该框的文本换行大小为 20x20,左下角位于 (40,40)。
- 保存此图像
What I need pyCairo to do is :
- generate an image of size 100x100 containing some text and an image from filesystem as background
- the text should be within a box which has text wrapping of size 20x20 with bottom left corner at (40,40).
- save this image
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要找到一种方法来获取 Pango 上下文并设置
pango.Layout.set_wrap()
和pango.Layout.set_width()
。You need to find a way to get the Pango context and set
pango.Layout.set_wrap()
andpango.Layout.set_width()
.