Skip to content

Instantly share code, notes, and snippets.

@terrycojones
Created September 15, 2016 16:08
Show Gist options
  • Save terrycojones/a8150af64631b6753b24209876a7041d to your computer and use it in GitHub Desktop.
Save terrycojones/a8150af64631b6753b24209876a7041d to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
from PIL import Image
# from images2gif import writeGif
from visvis.vvmovie.images2gif import writeGif
import sys
def main(images):
writeGif('out.gif', images)
if __name__ == '__main__':
images = [Image.open(f) for f in sys.argv[1:]]
main(images)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment