Created
December 16, 2015 02:35
-
-
Save rutcreate/a8e6bfb31225a52c860f to your computer and use it in GitHub Desktop.
Using ImageMagick crop images in folders.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# convert Input/*.png -crop [width]x[height]+[pos.x]+[pos.y] -set filename:fname '%t_tn' +adjoin 'Output/[filename:fname].png' | |
convert Input/*.png -crop 1136x640+418+138 -set filename:fname '%t_tn' +adjoin 'Output/[filename:fname].png' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment