C&C++   发布时间:2022-04-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了c – 如何使用QOpenGLWidget渲染文本大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
在旧版本的Qt中有 QGLWidget,有一个很好的函数叫做 renderText.现在我使用 QOpenGLWidget类,并且缺少渲染文本的功能.

有没有简单的方式来渲染文本使用QOpenGLWidget?我不想从头开始用OpenGL构建整个文本渲染

解决方法

@H_674_7@ 我最终做了一个类似于@jaba写的解决方案.我也注意到一些图形损坏,除非我在方法的结尾调用了painter.end().
void MapCanvas::renderText(double x,double y,double z,const QString &str,const QFont & font = QFont()) {
    // Identify x and y LOCATIOns to render text within widget
    int height = this->height();
    GLdouble textposx = 0,textposy = 0,textPosZ = 0;
    project(x,y,0f,&textposx,&textposy,&textPosz);
    textposy = height - textposy; // y is inverted

    // Retrieve last OpenGL color to use as a font color
    GLdouble glColor[4];
    glGetDoublev(GL_CURRENT_COLOR,glColor);
    QColor fontColor = QColor(glColor[0],glColor[1],glColor[2],glColor[3]);

    // Render text
    QPainter painter(this);
    painter.setPen(fontColor);
    painter.setFont(font);
    painter.drawText(textposx,textposy,text);
    painter.end();
}

大佬总结

以上是大佬教程为你收集整理的c – 如何使用QOpenGLWidget渲染文本全部内容,希望文章能够帮你解决c – 如何使用QOpenGLWidget渲染文本所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。