Command line to automatically crop an image?
--------------------------------------------------
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
and get $2,000 discount on your first invoice
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Flying Over Ancient Lands
--
Chapters
00:00 Command Line To Automatically Crop An Image?
00:26 Answer 1 Score 4
01:19 Accepted Answer Score 51
01:34 Thank you
--
Full question
https://superuser.com/questions/216177/c...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#gimp #imagemagick #crop
#avk47
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
and get $2,000 discount on your first invoice
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Flying Over Ancient Lands
--
Chapters
00:00 Command Line To Automatically Crop An Image?
00:26 Answer 1 Score 4
01:19 Accepted Answer Score 51
01:34 Thank you
--
Full question
https://superuser.com/questions/216177/c...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#gimp #imagemagick #crop
#avk47
ACCEPTED ANSWER
Score 51
By using ImageMagick:
convert -trim image.jpg image.jpg
To trim/autocrop the whole directory:
for a in *.jpg; do convert -trim "$a" "$a"; done
Or using find
:
find -name "*.jpg" -exec convert -trim "{}" "{}" \;
ANSWER 2
Score 4
I haven't used this in a while but hopefully it will help. Make a gimp batch script (I call mine crop-png.scm), and put it in ~/.gimp-2.6/scripts/).
(define (crop-png filename)
(let*
(
(image (car (gimp-file-load RUN-NONINTERACTIVE filename filename)))
(drawable (car (gimp-image-get-active-layer image)))
)
; crop the image
(plug-in-autocrop RUN-NONINTERACTIVE image drawable)
; save in original png format
(file-png-save RUN-NONINTERACTIVE image drawable filename filename
0 6 0 0 0 1 1)
; clean up the image
(gimp-image-delete image)
)
)
Then save this shell scrip (e.g., pngcrop.sh) and call it on the png files like this: 'pngcrop.sh *.png'
#!/bin/bash
if [ $# -le 0 ]; then
echo
echo "Usage: $(basename $0) file1.png [file2.png ...]"
echo
echo " This script uses gimp to autocrop PNG files and"
echo " save them to PNG format. You must have"
echo " crop-png.scm installed in your gimp "
echo " scripts directory."
echo
exit 1
fi
# set the filelist
files=$*
# # set the base command
# CMD="gimp -i -b "
# loop and add each file
for i in ${files[*]} ; do
# #echo $i
# ARGS="\"(crop-png \\\"$i\\\")\""
# CMD="$CMD $ARGS"
gimp -i -b "(crop-png \"$i\")" -b "(gimp-quit 0)"
done
# # add the end to quit
# TAIL="-b \"(gimp-quit 0)\""
# CMD="$CMD $TAIL"
#
# #echo $CMD
# eval $CMD