From c0c597ff0ed5763d3628a7c478751a5b9184d076 Mon Sep 17 00:00:00 2001 From: neingeist Date: Sun, 20 Apr 2025 08:55:54 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20chop-edges:=20use=20'magick',=20?= =?UTF-8?q?not=20'convert'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- chop-edges | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chop-edges b/chop-edges index a56c598..eb21575 100755 --- a/chop-edges +++ b/chop-edges @@ -19,7 +19,7 @@ def chop(top, bottom, left, right, image): image_out = image.stem + ".out" + image.suffix print(image_out) subprocess.run([ - "convert", + "magick", image, "-gravity", "North", "-chop", f"0x{top}", "-gravity", "South", "-chop", f"0x{bottom}",