Created
September 15, 2016 16:08
-
-
Save terrycojones/a8150af64631b6753b24209876a7041d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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