QT在QGraphicsScene上绘制丰富的文字

我正在为图形编写非常简单的矢量工具。 我在QTextEditor中编辑了丰富的文本。 我也有班级延伸QGraphicsScene所有我的图纸。 我想以某种方式在这个场景上从QTextEditor中绘制文本? 我有什么选择?

最好的祝福!


你可以使用QPainter::drawtext()方法。 基本上你会得到一个你想画的区域的画家,然后用这个方法画出你的文字。

 QPainter p(this);
 p.drawText(rect(), Qt::AlignCenter, "Hello World!");
链接地址: http://www.djcxy.com/p/49675.html

上一篇: QT painting rich text on QGraphicsScene

下一篇: Qt QListWidget performance issues