#!/bin/sh input_file="$1" output_base="${input_file%.*}-crop.png" magick "$input_file" \ -gravity North -chop 0x20 \ -crop 256x192 \ "$output_base"