Could you explain which are the differences between them?
I need to resize an image if its size is > $myLimit
Example (pseudocode):
$myLimit = 1MB
user uplaod an image of 1000x1000 of 2MB
2MB > $myLimit
while( $imagefilesize > $myLimit ) {
resizeImageBy 0.9%;
}
//> output 900x900 image of 900 kB
in the while should i use resizeImage of scaleImage ?
Edit1: i found something that could help: http://www.imagemagick.org/Usage/resize/ But could someone make a mini summary of that O_O ?
Thanks a lot
Imagick::scaleImage. In the second instance, it'sImagick::scaleImage– Pekka Mar 12 '11 at 20:43