QT在场景中利用freetype实现独立的文字绘制子类QxFreeTypeTextItem

本文主要是介绍QT在场景中利用freetype实现独立的文字绘制子类QxFreeTypeTextItem,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

QT在场景中利用freetype实现独立的文字绘制子类QxFreeTypeTextItem,继上一章节讲过qt中如何编译freetype

Qt编译和使用freetype矢量字库方法icon-default.png?t=N7T8https://blog.csdn.net/wangningyu/article/details/138927379#QT利用freetype提取字库图片_qt freetype-CSDN博客文章浏览阅读1.2k次。这是某个项目中要用到的片段,结合上一篇文章#QT从字体名获取字库文件路径使用// 保存位图int SaveBitmapToFile(HBITMAP hBitmap, LPSTR lpFileName){HDC hDC;int iBits;WORD wBitCount; DWORD dwPaletteSize=0,dwBmBitsSize,dwDIBSize_qt freetypehttps://blog.csdn.net/wangningyu/article/details/109743104MFC/QT利用COM组件接口从字体名称、粗体、斜体获取到字体文件路径的方法-CSDN博客文章浏览阅读239次。【代码】MFC/QT利用COM组件接口从字体名称、粗体、斜体获取到字体文件路径的方法。https://blog.csdn.net/wangningyu/article/details/138802620

这里将不使用qt默认的QGraphicsSimpleTextItem与QGraphicsTextItem实现一下自定义的文字图形类:

#include "mainwindow.h"
#include "ui_mainwindow.h"#include <QGridLayout>
#include <QPushButton>#include <QGraphicsScene>
#include <QGraphicsItem>
#include <QDebug>
#include <QPainter>
#include <QFont>
#include <QString>
#include <QColor>
#include <QTextDocument>
#include <ft2build.h>
#include FT_FREETYPE_Hclass QxFreeTypeTextItem : public QGraphicsItem
{
public:QxFreeTypeTextItem(const QString& text, int fontSize, const QString& ttfFile, const QColor& textColor, QGraphicsItem* parent = nullptr): QGraphicsItem(parent), m_strText(text), m_iFontSize(fontSize), m_strTtfFile(ttfFile), m_textColor(textColor){m_ftLibrary = NULL;m_ftFace = NULL;if (FT_Init_FreeType(&m_ftLibrary)){qDebug() << "FT_Init_FreeType failed.";return;}if (FT_New_Face(m_ftLibrary, m_strTtfFile.toStdString().c_str(), 0, &m_ftFace)){qDebug() << "FT_New_Face failed: " << m_strTtfFile;return;}FT_Set_Pixel_Sizes(m_ftFace, 0, m_iFontSize);}~QxFreeTypeTextItem(){if(m_ftFace){FT_Done_Face(m_ftFace);m_ftFace = NULL;}if(m_ftLibrary){FT_Done_FreeType(m_ftLibrary);m_ftLibrary = NULL;}}QRectF boundingRect() const override{return m_rect;}void setRect(qreal left, qreal top, qreal width, qreal height){m_rect = QRectF(left, top, width, height);update();}void paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget = nullptr) override{int x = m_rect.left();int y = m_rect.top();Q_UNUSED(option);Q_UNUSED(widget);// 开始利用freetype绘制文字painter->setRenderHint(QPainter::Antialiasing);painter->setPen(m_textColor);for (int i = 0; i < m_strText.length(); ++i){QChar   ucode = m_strText.at(i);ushort  unicode = ucode.unicode();if (FT_Load_Char(m_ftFace, unicode, FT_LOAD_RENDER)){continue;}FT_GlyphSlot    glyph = m_ftFace->glyph;QImage          glyphImage(glyph->bitmap.width, glyph->bitmap.rows, QImage::Format_ARGB32);glyphImage.fill(Qt::transparent);for (unsigned int j = 0; j < glyph->bitmap.rows; ++j){for (unsigned int k = 0; k < glyph->bitmap.width; ++k){int alpha = glyph->bitmap.buffer[j * glyph->bitmap.width + k];glyphImage.setPixel(k, j, qRgba(m_textColor.red(), m_textColor.green(), m_textColor.blue(), alpha));}}painter->drawImage(QPointF(x + glyph->bitmap_left, y - glyph->bitmap_top), glyphImage);x += (glyph->advance.x >> 6);}}private:QString     m_strText;int         m_iFontSize;QString     m_strTtfFile;QColor      m_textColor;FT_Library  m_ftLibrary;FT_Face     m_ftFace;QRectF      m_rect;
};MainWindow::MainWindow(QWidget *parent): QMainWindow(parent), ui(new Ui::MainWindow)
{ui->setupUi(this);QGraphicsScene  *pScene = new QGraphicsScene(this);pScene->setSceneRect(QRect(0, 0, 800, 500));ui->graphicsView->setScene(pScene);ui->graphicsView->setRenderHint(QPainter::Antialiasing);//ui->graphicsView->setCacheMode(QGraphicsView::CacheBackground);//ui->graphicsView->setViewportUpdateMode(QGraphicsView::BoundingRectViewportUpdate);ui->graphicsView->setAlignment(Qt::AlignVCenter | Qt::AlignHCenter);ui->graphicsView->setMouseTracking(true);ui->graphicsView->setStyleSheet(QString("background:%1").arg(QColor(255, 255, 176).name()));QColor              clr(0, 0, 255);QxFreeTypeTextItem  *pItem = new QxFreeTypeTextItem("FreeType: Hello-Normal by wangningyu", 32, "C:/ArialUMS.TTF", clr);pItem->setRect(10, 10, 300, 100);pItem->setFlag(QGraphicsItem::ItemIsMovable, true);pItem->setFlag(QGraphicsItem::ItemIsSelectable, true);pScene->addItem(pItem);pItem = new QxFreeTypeTextItem("FreeType: Hello-Bold by wangningyu", 32, "C:/Windows/Fonts/Arialbd.ttf", clr);pItem->setRect(10, 50, 300, 100);pItem->setFlag(QGraphicsItem::ItemIsMovable, true);pItem->setFlag(QGraphicsItem::ItemIsSelectable, true);pScene->addItem(pItem);pItem = new QxFreeTypeTextItem("FreeType: Hello-Italic by wangningyu", 32, "C:/Windows/Fonts/Ariali.ttf", clr);pItem->setRect(10, 90, 300, 100);pItem->setFlag(QGraphicsItem::ItemIsMovable, true);pItem->setFlag(QGraphicsItem::ItemIsSelectable, true);pScene->addItem(pItem);pItem = new QxFreeTypeTextItem("FreeType: Hello-Bold-Italic by wangningyu", 32, "C:/Windows/Fonts/Arialbi.ttf", clr);pItem->setRect(10, 130, 300, 100);pItem->setFlag(QGraphicsItem::ItemIsMovable, true);pItem->setFlag(QGraphicsItem::ItemIsSelectable, true);pScene->addItem(pItem);
}MainWindow::~MainWindow()
{delete ui;
}

测试效果:

这篇关于QT在场景中利用freetype实现独立的文字绘制子类QxFreeTypeTextItem的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/994372

相关文章

Redis分片集群的实现

《Redis分片集群的实现》Redis分片集群是一种将Redis数据库分散到多个节点上的方式,以提供更高的性能和可伸缩性,本文主要介绍了Redis分片集群的实现,具有一定的参考价值,感兴趣的可以了解一... 目录1. Redis Cluster的核心概念哈希槽(Hash Slots)主从复制与故障转移2.

springboot+dubbo实现时间轮算法

《springboot+dubbo实现时间轮算法》时间轮是一种高效利用线程资源进行批量化调度的算法,本文主要介绍了springboot+dubbo实现时间轮算法,文中通过示例代码介绍的非常详细,对大家... 目录前言一、参数说明二、具体实现1、HashedwheelTimer2、createWheel3、n

使用Python实现一键隐藏屏幕并锁定输入

《使用Python实现一键隐藏屏幕并锁定输入》本文主要介绍了使用Python编写一个一键隐藏屏幕并锁定输入的黑科技程序,能够在指定热键触发后立即遮挡屏幕,并禁止一切键盘鼠标输入,这样就再也不用担心自己... 目录1. 概述2. 功能亮点3.代码实现4.使用方法5. 展示效果6. 代码优化与拓展7. 总结1.

Mybatis 传参与排序模糊查询功能实现

《Mybatis传参与排序模糊查询功能实现》:本文主要介绍Mybatis传参与排序模糊查询功能实现,本文通过实例代码给大家介绍的非常详细,感兴趣的朋友跟随小编一起看看吧... 目录一、#{ }和${ }传参的区别二、排序三、like查询四、数据库连接池五、mysql 开发企业规范一、#{ }和${ }传参的

Docker镜像修改hosts及dockerfile修改hosts文件的实现方式

《Docker镜像修改hosts及dockerfile修改hosts文件的实现方式》:本文主要介绍Docker镜像修改hosts及dockerfile修改hosts文件的实现方式,具有很好的参考价... 目录docker镜像修改hosts及dockerfile修改hosts文件准备 dockerfile 文

kotlin中const 和val的区别及使用场景分析

《kotlin中const和val的区别及使用场景分析》在Kotlin中,const和val都是用来声明常量的,但它们的使用场景和功能有所不同,下面给大家介绍kotlin中const和val的区别,... 目录kotlin中const 和val的区别1. val:2. const:二 代码示例1 Java

基于SpringBoot+Mybatis实现Mysql分表

《基于SpringBoot+Mybatis实现Mysql分表》这篇文章主要为大家详细介绍了基于SpringBoot+Mybatis实现Mysql分表的相关知识,文中的示例代码讲解详细,感兴趣的小伙伴可... 目录基本思路定义注解创建ThreadLocal创建拦截器业务处理基本思路1.根据创建时间字段按年进

SpringBoot3实现Gzip压缩优化的技术指南

《SpringBoot3实现Gzip压缩优化的技术指南》随着Web应用的用户量和数据量增加,网络带宽和页面加载速度逐渐成为瓶颈,为了减少数据传输量,提高用户体验,我们可以使用Gzip压缩HTTP响应,... 目录1、简述2、配置2.1 添加依赖2.2 配置 Gzip 压缩3、服务端应用4、前端应用4.1 N

SpringBoot实现数据库读写分离的3种方法小结

《SpringBoot实现数据库读写分离的3种方法小结》为了提高系统的读写性能和可用性,读写分离是一种经典的数据库架构模式,在SpringBoot应用中,有多种方式可以实现数据库读写分离,本文将介绍三... 目录一、数据库读写分离概述二、方案一:基于AbstractRoutingDataSource实现动态

Python FastAPI+Celery+RabbitMQ实现分布式图片水印处理系统

《PythonFastAPI+Celery+RabbitMQ实现分布式图片水印处理系统》这篇文章主要为大家详细介绍了PythonFastAPI如何结合Celery以及RabbitMQ实现简单的分布式... 实现思路FastAPI 服务器Celery 任务队列RabbitMQ 作为消息代理定时任务处理完整