Skip to content

Instantly share code, notes, and snippets.

@centum
Created October 3, 2022 12:48
Show Gist options
  • Save centum/7fea668fa0fd606e24351950b1b2e0f5 to your computer and use it in GitHub Desktop.
Save centum/7fea668fa0fd606e24351950b1b2e0f5 to your computer and use it in GitHub Desktop.
Make animated gif from images
from PIL import Image
DURATION = 1000 # ms
im_list = [
Image.open(f)
for f in [
"center.jpeg",
"top.jpeg",
"right.jpeg",
"bottom.jpeg",
"left.jpeg",
]
]
im_list[0].save("animated.gif", save_all=True, append_images=im_list[1:])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment