commit ab5d59fd6568a48e65e49027ec35e3646c669f18 Author: Robert Johnson Date: Wed Aug 30 19:25:46 2023 -0400 Initial commit. diff --git a/cut_counters.sh b/cut_counters.sh new file mode 100755 index 0000000..d417829 --- /dev/null +++ b/cut_counters.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +# To use this program, pleas supply an initial image, then the number of cuts +# You want. + +width=`identify -ping -format '%w' $1` +height=`identify -ping -format '%h' $1` +no_v_slices=$2 +no_h_slices=$3 +file_prefix=$4