qt绘制彩色文本

发布于 2025-01-04 14:05:57 字数 225 浏览 1 评论 0原文

我使用 QPainter 在 QPrinter 上绘制文本;然而,有一个问题。我希望我能画出彩色的文字。例如,绘制“Hello World”,其中“H”为绿色,“ello”为黄色,“World”为蓝色。
目前,我调用drawText 3次并使用不同的QPen来改变颜色。而且,我必须计算3次绘制的位置。最后,我无法在 QRect 中对齐字符串,因为我没有绘制完整的句子。有没有办法用简单的方法解决呢?任何提示表示赞赏!谢谢!

I use QPainter to drawText on QPrinter; however, there is a problem. I hope I can draw a colorful text. For example, drawing "Hello World" where the "H" is green, "ello" is yellow, "World" is blue.
For the time being, I call drawText 3 times and using different QPen to change color. Moreover, I must calculate the position where to draw at 3 times. Finally, I couldn't align a string in a QRect because I don't draw a complete sentence. Is there a way to solve it with a simple way? Any hint is appreciated! Thanks!

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

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

发布评论

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

评论(1

夜光 2025-01-11 14:05:57

您可以通过将 html 直接写入文本字符串来完成此操作,包括颜色的 CSS 规范。

小部件文本中的 Html

html 中的 CSS 使用 html style 标签来访问它。

编辑:要在 QPaintDevice 上获取此内容,请使用 QPainter::drawStaticText()。它的工作方式与drawText类似,但默认读取富文本。您需要#include 才能使用它。

You can do this by writing html right into your text string, including CSS specifications for color.

Html in widget text

CSS within the html Use the html style tag to access this.

Edit: To get this on a QPaintDevice, use QPainter::drawStaticText(). It works just like drawText but reads rich text by default. You need to #include <QStaticText> to use it.

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