Skip to content

Instantly share code, notes, and snippets.

@rutcreate
Created December 16, 2015 02:35
Show Gist options
  • Save rutcreate/a8e6bfb31225a52c860f to your computer and use it in GitHub Desktop.
Save rutcreate/a8e6bfb31225a52c860f to your computer and use it in GitHub Desktop.
Using ImageMagick crop images in folders.
# 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