From c23612e87bb737bf1630b4dbcc311073ad07f8af Mon Sep 17 00:00:00 2001 From: Julien Malik Date: Wed, 17 Feb 2016 10:54:44 +0100 Subject: [PATCH] [fix] be coherent, use -strip at the beginning of the pipeline always --- prosopopee/prosopopee.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prosopopee/prosopopee.py b/prosopopee/prosopopee.py index b3d3bd6..1551b21 100644 --- a/prosopopee/prosopopee.py +++ b/prosopopee/prosopopee.py @@ -100,7 +100,7 @@ class Image(object): shutil.copyfile(source, target) print source, "->", target else: - command = "gm convert %s -auto-orient -strip %s" % (source, target) + command = "gm convert %s -strip -auto-orient %s" % (source, target) print command os.system(command)