dbzhang800 / QtGifImage

QImages to/from an animated .gif file
38 stars 21 forks source link

Documentation: http://qtgifimage.debao.me

Qt Gif Image is a Qt library that can read and write Gif files.

Getting Started

Usage(1): Use Qt Gif Image as Qt5's addon module

Note: Perl is needed.

    qmake
    make
    make install

The library, the header files, and others will be installed to your system.

    QT += gifimage

Usage(2): Use source code directly

The package contains a qtgifimage.pri file that allows you to integrate the component into applications that use qmake for the build step.

    |-- project.pro
    |-- ....
    |-- 3rdparty\
    |     |-- qtgifimage\
    |     |
    include(3rdparty/qtgifimage/src/gifimage/qtgifimage.pri)

References