qt绘制彩色文本
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过将 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
, useQPainter::drawStaticText()
. It works just likedrawText
but reads rich text by default. You need to#include <QStaticText>
to use it.