QtGifImage
QtGifImage copied to clipboard
QImages to/from an animated .gif file
" Documentation: http://qtgifimage.debao.me " The above link is not working anymore
Wonderful library! But I have a question. How can I remove these strange dots on frames? 
```cpp bool QGifImagePrivate::save(QIODevice *device) const { int error; GifFileType *gifFile = EGifOpen(device, writeToIODevice, &error); if (!gifFile) { qWarning(GifErrorString(error)); return false; } QSize _canvasSize = getCanvasSize(); gifFile->SWidth = _canvasSize.width(); gifFile->SHeight =...