View Single Post
Old April 12th, 2018, 01:36 AM   #352
halvar
Blocked!
 
Join Date: Jan 2008
Location: HH
Posts: 1,963
Thanks: 115,040
Thanked 32,801 Times in 1,955 Posts
halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+halvar 100000+
Default

If you are on Linux I recommend imagemagick. A powerful command line tool:
http://www.imagemagick.org/Usage/crop/#crop

to crop a single image to 95% width and height:
Code:
convert -gravity center -crop 95%x95+0+0 pic.jpg cropped_pic.jpg
to crop all jpg-files in a folder:
Code:
for img in $(ls *.jpg); do convert -gravity center -crop 95%x95+0+0 $img cropped${img%.*}.jpg; done;
halvar is offline   Reply With Quote