Python problem with resize animate GIF
- by gigimon
Hello!
I'm want to resize animated GIF with save animate. I'm try use PIL and PythonMagickWand (ImageMagick) and with some GIF's get bad frame.
When I'm use PIL, it mar frame in read frame. For test, I'm use this code:
from PIL import Image
im = Image.open('d:/box_opens_closes.gif')
im.seek(im.tell()+1)
im.seek(im.tell()+1)…