Search found 2 matches

by skiiiks
2011-02-25T11:01:53-07:00
Forum: Users
Topic: why is faster to resize horizontally than vertically ?
Replies: 6
Views: 11897

Re: why is faster to resize horizontally than vertically ?

is there a faster way to do a simple resize ?

i need the image to be as much 720 in X or Y keeping aspect ratio ... that's because I use one or other command depending width > height or viceversa
by skiiiks
2011-02-25T10:46:18-07:00
Forum: Users
Topic: why is faster to resize horizontally than vertically ?
Replies: 6
Views: 11897

why is faster to resize horizontally than vertically ?

$ time /usr/bin/convert -size "720x>" photo1.jpg -thumbnail "720x>" photo2.jpg

real 0m1.248s
user 0m0.472s
sys 0m0.048s

$ time /usr/bin/convert -size "x720>" photo1.jpg -thumbnail "x720>" photo2.jpg

real 0m2.555s
user 0m0.932s
sys 0m0.160s