Qt通过图片组绘制动态图片
脚本之家 / 编程助手:解决程序员“几乎”所有问题!
脚本之家官方知识库 → 点击立即使用
本文实例为大家分享了Qt通过图片组绘制动态图片的具体代码,供大家参考,具体内容如下
任务实现:
通过定时器的使用来依次调用资源文件中的静态图片文件,从而达到是图片中内容动起来的效果;
效果实现:
实现过程:
1.通过paintEvent()函数进行每一张图片的导入平铺绘制;
2.通过timerEvent()函数对每一张图片按照设定的时间进行重复的调用,从而达到动图的效果;
3.通过自定义InitPixmap()函数来对每一张图片进行初始化,将其导入到Pixmap[ 64 ]组中;
整体代码:
dialog.h
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | #ifndef DIALOG_H #define DIALOG_H #include <QDialog> QT_BEGIN_NAMESPACE namespace Ui { class Dialog; } QT_END_NAMESPACE class Dialog : public QDialog { Q_OBJECT public : Dialog(QWidget *parent = nullptr); ~Dialog(); void paintEvent(QPaintEvent *event); void timerEvent(QTimerEvent *event); int curIndex; void InitPixmap(); private : QPixmap pixmap[64]; Ui::Dialog *ui; }; #endif // DIALOG_H |
dialog.cpp
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | #include "dialog.h" #include "ui_dialog.h" #include <QPainter> #include <QPixmap> Dialog::Dialog(QWidget *parent) : QDialog(parent) , ui( new Ui::Dialog) { ui->setupUi( this ); resize(160,182); startTimer(100); curIndex = 0; InitPixmap(); } Dialog::~Dialog() { delete ui; } void Dialog::paintEvent(QPaintEvent *event) { QPainter painter( this ); QRect q(0,0,80,91); QRect q2(0,0,2*80,2*91); painter.drawPixmap(q2,pixmap[curIndex],q); } void Dialog::timerEvent(QTimerEvent *event) { curIndex++; if (curIndex>=64) { curIndex=0; } repaint(); } void Dialog::InitPixmap() { for ( int i=0;i<64;i++) { QString filename = QString( ":/Res/Resourse/1_%1.png" ).arg(i+1,2,10,QLatin1Char( '0' )); QPixmap map(filename); pixmap[i]=map; } } |
调用过程
1.通过InitPixmap()函数将六十四张图片保存在Pixmap数组中;
2.通过paintEvent()函数依次调用图片;
3.通过timerEvent()函数来设定调用的循环;
4在主函数中通过定时器设定调用间隔为100ms;
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
微信公众号搜索 “ 脚本之家 ” ,选择关注
程序猿的那些事、送书等活动等着你
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权/违法违规/事实不符,请将相关资料发送至 reterry123@163.com 进行投诉反馈,一经查实,立即处理!
相关文章
QT线程池的使用(QThreadPool类和QRunnable类)
本文主要介绍了QT线程池的使用(QThreadPool类和QRunnable类),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2023-04-04
最新评论