You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unsure if this is the correct project to report this bug, but the problem is that transparent pixels are allocated, but never initialised to any value for the first frame in a gif file. This can be fixed by inserting the line memset(FrmPict, 0, Width * Height * sizeof(tPixel));
at line 47 of tImageGif.cpp.
Incorrect, garbage background:
Correct, clean background:
The text was updated successfully, but these errors were encountered:
It's a fine place to report this -- plus you supplied the fix which is even better. It's fixed in the tacent library. You'll probably need to reconfigure to get cmake to fetch the latest tacent lib.
Unsure if this is the correct project to report this bug, but the problem is that transparent pixels are allocated, but never initialised to any value for the first frame in a gif file. This can be fixed by inserting the line
memset(FrmPict, 0, Width * Height * sizeof(tPixel));
at line 47 of tImageGif.cpp.
Incorrect, garbage background:
Correct, clean background:
The text was updated successfully, but these errors were encountered: