🐛 chop-edges: use 'magick', not 'convert'

master
neingeist 17 hours ago
parent 98b70d5716
commit c0c597ff0e

@ -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}",

Loading…
Cancel
Save