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
For my use case in Imageflow, I want to support round-tripping transparent (background+delta) animated gifs (while doing operations like resizing/etc on them in 32-bit BGRA mode and then re-quantizing). I see a dispose_only method that mentions this case, but no examples. I'm currently migrating my custom fork of dispose/gif to use your crates, and was wondering if you have any examples of this kind of task.
The text was updated successfully, but these errors were encountered:
After dispose_only() the image is the exact canvas that the next frame will be painted on, so it can be used to find minimum difference between the canvas and the next full frame. This can be more precise than tracking of "dirty" rectangles.
For my use case in Imageflow, I want to support round-tripping transparent (background+delta) animated gifs (while doing operations like resizing/etc on them in 32-bit BGRA mode and then re-quantizing). I see a
dispose_only
method that mentions this case, but no examples. I'm currently migrating my custom fork of dispose/gif to use your crates, and was wondering if you have any examples of this kind of task.The text was updated successfully, but these errors were encountered: