mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
32 lines
644 B
Python
32 lines
644 B
Python
#!/usr/bin/env python
|
|
#
|
|
# The Python Imaging Library
|
|
# $Id$
|
|
#
|
|
# convert sequence format to GIF animation
|
|
#
|
|
# history:
|
|
# 97-01-03 fl created
|
|
#
|
|
# Copyright (c) Secret Labs AB 1997. All rights reserved.
|
|
# Copyright (c) Fredrik Lundh 1997.
|
|
#
|
|
# See the README file for information on usage and redistribution.
|
|
#
|
|
|
|
from __future__ import print_function
|
|
|
|
from PIL import Image
|
|
|
|
if __name__ == "__main__":
|
|
|
|
import sys
|
|
|
|
if len(sys.argv) < 3:
|
|
print("GIFMAKER -- create GIF animations")
|
|
print("Usage: gifmaker infile outfile")
|
|
sys.exit(1)
|
|
|
|
im = Image.open(sys.argv[1])
|
|
im.save(sys.argv[2], save_all=True)
|