Frames Of Transparent Gif Overlapping With Each Other
I'm trying to create a transparent gif through pillow in python through this code frames[0].save(path+'/final.gif', format='GIF', append_images=frames[1:], save_all=True, duration=
Solution 1:
I solved this problem by setting disposal = 2
, you can edit your code as:
frames[0].save(path+'/final.gif', format='GIF', append_images=frames[1:], save_all=True, duration=33, loop=0,transparency=0, disposal = 2)
Post a Comment for "Frames Of Transparent Gif Overlapping With Each Other"