QGraphicsScene 中的文本
如何在QGraphicsScene中的某个坐标上写入文字?我试图这样做,但没有成功。文本有黑色边框,但字母内部是白色的,我无法将其变成黑色。
QPainterPath path;
QFont font;
font.setPixelSize(50);
path.addText(100, 50, font, tr("Hello World!!!"));
path.setFillRule();
m_graphScen->addPath(path);
How to write text in a certain cordinate in QGraphicsScene? I was trying to do like this, but with no success. Text has black borders but inside the letters it is white, and I can't make it black.
QPainterPath path;
QFont font;
font.setPixelSize(50);
path.addText(100, 50, font, tr("Hello World!!!"));
path.setFillRule();
m_graphScen->addPath(path);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
变体 1(不是好的版本):
变体 2(好的版本):
Variant 1 (not a good one):
Variant 2 (fine version):