⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qanimationwriter.h

📁 linux下 minigui用的 qvfb 1.1插件
💻 H
字号:
/******************************************************************************** Qt/Embedded virtual framebuffer**** Created : 20000605**** Copyright (C) 1992-2000 Trolltech AS.  All rights reserved.**** This file is part of the Qt GUI Toolkit.**** Licensees holding valid Qt Professional Edition licenses may use this** file in accordance with the Qt Professional Edition License Agreement** provided with the Qt Professional Edition.**** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for** information about the Professional Edition licensing.*******************************************************************************/#ifndef QANIMATIONWRITER_H#define QANIMATIONWRITER_H#include <qimage.h>class QAnimationWriterData;class QAnimationWriter{public:    QAnimationWriter( const QString& filename, const char* format="MNG" );    ~QAnimationWriter();    bool okay() const;    void setFrameRate(int);    void appendBlankFrame();    void appendFrame(const QImage&);    void appendFrame(const QImage&, const QPoint& offset);private:    QImage prev;    QIODevice* dev;    QAnimationWriterData* d;};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -