If you'd like to upload plug-ins or post comments, please create an account below. Otherwise (e.g. for download) you do not need one! Enjoy :-)
I need a "batch"script to crop photos whether I change the size manually or it be a UI menu. Thanks A BILLION.
what u want?
for a in *.jpg; do convert "$a" -gravity center -crop 250x350+0+0 "outdir/$a"; done
for a in *.jpg; do convert "$a" -shave 100x100 "outdir/$a"; done
Be more specific bro...
what u want?
- u have photos open in gimp and want all 250x350 pix from center?
- u have photos open in gimp and want 100 pix border cut off?
- u have dir full of photos? If you linux, type like
hthfor a in *.jpg; do convert "$a" -gravity center -crop 250x350+0+0 "outdir/$a"; done
orfor a in *.jpg; do convert "$a" -shave 100x100 "outdir/$a"; done
ImageMagick betta for batch as gimp.