QGraphicsTextItem 的 QPixmap
如何将 QGraphicsTextItem 转换/绘制为 QPixmap?
How do you convert/paint a QGraphicsTextItem into a QPixmap?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何将 QGraphicsTextItem 转换/绘制为 QPixmap?
How do you convert/paint a QGraphicsTextItem into a QPixmap?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您可以将其添加到
QGraphicsScene
中(如果它尚未位于 QGraphicsScene 中),然后使用render()
将场景渲染到QPixmap
>QPainter或者,您可以省去麻烦,只需在更改画家的当前字体后使用
QPainter::drawText()
即可。 它应该提供相同的功能。也许是这样的——
You can add it to a
QGraphicsScene
(if it's not already inside one) and thenrender()
the scene to aQPixmap
using aQPainter
Or, you can save yourself the trouble and just use
QPainter::drawText()
after changing the current font of the painter. it should provide the same capabilities.Maybe something like this-
QGraphicsTextItem::document() 函数就是您正在寻找的后门:
The QGraphicsTextItem::document() function is the back door you're looking for: