I am using Imagick latest version & PHP 5.3. When I try to create a thumbnail for images (code below), the script uses too much CPU. How can I set limits on resource consumption on Imagick?
$thumb = new Imagick();
$thumb->readImage($this->tmp_file);
$thumb->thumbnailImage(200, null);
$thumb->writeImage($this->thumb_file);
$thumb->destroy();
Thanks.
