add option to render using imagemagick

This commit is contained in:
derchris 2019-01-20 06:41:57 +01:00
parent 43f08547f0
commit f3b8deb63b
4 changed files with 24 additions and 10 deletions

View file

@ -48,6 +48,10 @@ parser.add_argument('--skip-frames', action="store", default=None, type=int, hel
Skip first n frames e.g. to quickly rerender during debugging.
Usage: ./make.py yourproject/ --debug --skip-frames 300
''')
parser.add_argument('--imagemagick', action="store_true", default=False, help='''
Render frames using ImageMagick instead of Inkscape.
Usage: ./make.py yourproject/ --imagemagick
''')
if len(sys.argv) < 2:
parser.print_help()