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

link|improve this question

6  
Is it me, or you wrote the same method name twice ? – Pascal MARTIN Mar 12 '11 at 20:42
1  
@Pascal it is you. In the first instance, he clearly wrote Imagick::scaleImage. In the second instance, it's Imagick::scaleImage – Pekka Mar 12 '11 at 20:43
(just messin' with ya) – Pekka Mar 12 '11 at 20:44
@Pekka ergh :-D I checked and re-checked several times before pressing F5 and seing your second comment ^^ – Pascal MARTIN Mar 12 '11 at 20:45
@Pekka: LOL!!!! You drove me crazy for a sec! :P – ifaour Mar 12 '11 at 20:45
show 8 more comments
feedback

2 Answers

up vote 2 down vote accepted

The difference between the two seems to be that scaleImage does a raw, pixel based resize, while resizeImage can use an interpolation filter:

imagick::INTERPOLATE_AVERAGE
imagick::INTERPOLATE_BICUBIC
imagick::INTERPOLATE_BILINEAR
...

that is likely to produce better results.

More on the various interpolation methods on Wikipedia.

link|improve this answer
Pekka I am using this to resize down to 90% the image, I heard FILTER_LANCZOS is the better-quality tool. $im->resizeImage($im->getImageWidth() * 0.9, $im->getImageHeight() * 0.9, imagick::FILTER_LANCZOS, 1); is that a good way? – yes123 Mar 12 '11 at 21:07
@yes I don't know, I don't know these filters in depth. I would try each one, and judge by the quality of the results – Pekka Mar 12 '11 at 21:07
for the size part? $im->getImageWidth() * 0.9 ? – yes123 Mar 12 '11 at 21:10
2  
@yes123: Here you will find a paper saying that lanczos is indeed a good choice :). Just read the langzos section, it has the conclusion in there! edit Hmm the paper IS from 1990, might be fairly outdated. And come to think of it.. Since you are LOWERING the resolution, it doesn't need all that much. You might even use the BOX filter, just test a few images to be sure. – Yuri Mar 12 '11 at 21:11
@yes I don't know what problem you are trying to solve with the scaling - file size or resolution. I think you should ask a new question about that, and explain what your goal is – Pekka Mar 12 '11 at 21:11
feedback

Brilliant, their own documentation is awful... But ok: It looks to me like resizeImage is more powerful, and therefore the better choice... This link shows the usage along with some measurements for different filters.

link|improve this answer
ye .. the docu here lacks.. probabily is because GD are "built-in" and everyone use that (even tho they sux) – yes123 Mar 12 '11 at 21:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.