QGraphicsTextItem 的 QPixmap

发布于 2024-07-29 23:41:13 字数 44 浏览 6 评论 0原文

如何将 QGraphicsTextItem 转换/绘制为 QPixmap?

How do you convert/paint a QGraphicsTextItem into a QPixmap?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

留蓝 2024-08-05 23:41:13

您可以将其添加到 QGraphicsScene 中(如果它尚未位于 QGraphicsScene 中),然后使用 render() 将场景渲染到 QPixmap >QPainter

QPixmap pix(100, 100);
QPainter paint(&pix);
scene.render(&paint);

或者,您可以省去麻烦,只需在更改画家的当前字体后使用 QPainter::drawText() 即可。 它应该提供相同的功能。

也许是这样的——

QPixmap pix(100, 100);
QPainter paint(&pix);
paint.drawText(0, 0, "Hello World");

You can add it to a QGraphicsScene (if it's not already inside one) and then render() the scene to a QPixmap using a QPainter

QPixmap pix(100, 100);
QPainter paint(&pix);
scene.render(&paint);

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-

QPixmap pix(100, 100);
QPainter paint(&pix);
paint.drawText(0, 0, "Hello World");
酒几许 2024-08-05 23:41:13

QGraphicsTextItem::document() 函数就是您正在寻找的后门:

// pItem is a QGraphicsTextItem *
QPixmap srcPixmap(pItem->boundingRect().size().toSize());

QPainter tmpPainter(&srcPixmap);
pItem->document()->drawContents(&tmpPainter);
tmpPainter.end()

The QGraphicsTextItem::document() function is the back door you're looking for:

// pItem is a QGraphicsTextItem *
QPixmap srcPixmap(pItem->boundingRect().size().toSize());

QPainter tmpPainter(&srcPixmap);
pItem->document()->drawContents(&tmpPainter);
tmpPainter.end()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文