QtGifImage icon indicating copy to clipboard operation
QtGifImage copied to clipboard

QImages to/from an animated .gif file

Results 3 QtGifImage issues
Sort by recently updated
recently updated
newest added

" 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? ![demo1](https://cloud.githubusercontent.com/assets/5395316/17080997/11828da2-514e-11e6-86e5-c258e79a84d7.gif)

```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 =...