Bug#660385: php5-imagick: ignores memory limit

2012-04-30 Thread Guillaume Delacour
Hello, The resource type RESOURCETYPE_MEMORY on php-imagick corresponds to ImageMagick MAGICK_MEMORY_LIMIT, which define how much memory could be use to reserve memory for tasks and when the limit is reached, cached memory-mapped disk is used: http://fr2.php.net/manual/en/imagick.setresourcelimit

Bug#660385: php5-imagick: ignores memory limit

2012-02-18 Thread Arkadiy Kulev
Package: php5-imagick Version: 3.0.0~rc1-1 Severity: normal No matter how big I set the memory limit to, imagick still keeps processing the image through a file on the disk. Here is my php code: $img = new Imagick(); $img->setResourceLimit(imagick::RESOURCETYPE_MEMORY, 1024*1024*1024); # i know