Search found 3 matches

by jmishal
2016-01-04T14:53:35-07:00
Forum: Users
Topic: cutting the height images by percent size
Replies: 5
Views: 2625

Re: cutting the height images by percent size

snibgo wrote:"%" means both width and height are percentages. You could use:

Code: Select all

convert in.jpg -crop 100x95%+0+0 +repage out.png


Works like a charm, thanks!

Code: Select all

for i in *.jpg; do

convert $i -crop 0x95%+0+0 +repage fix_$i 
done
by jmishal
2016-01-04T12:52:10-07:00
Forum: Users
Topic: cutting the height images by percent size
Replies: 5
Views: 2625

Re: cutting the height images by percent size

See IM function -crop. It allows percents on the image size. http://www.imagemagick.org/Usage/crop/#crop_percent. Always best to provide your IM version and platform when asking questions. See http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=9620 still not got the answer of my ...
by jmishal
2016-01-04T08:49:00-07:00
Forum: Users
Topic: cutting the height images by percent size
Replies: 5
Views: 2625

cutting the height images by percent size

ok ,, cutting the height images by percent size assume i have multiples images size like 1600x1200 1200x1600 640x640 960x960 2448x3264 640x614 640x640 2448x3264 2896x2896 2448x3264 750x1334 900x1600 750x1334.. etc all those images have logo in the right bottom near to corner (( see the below example ...