--TEST-- Imagick::setResourceLimit test --SKIPIF-- --FILE-- 100000000, // Set maximum amount of disk space in bytes permitted for use by the pixel cache. When this limit is exceeded, the pixel cache is not be created and an error message is returned. Imagick::RESOURCETYPE_DISK => 100, //Set maximum number of open pixel cache files. When this limit is exceeded, any subsequent pixels cached to disk are closed and reopened on demand. This behavior permits a large number of images to be accessed simultaneously on disk, but with a speed penalty due to repeated open/close calls. Imagick::RESOURCETYPE_FILE => 100, // Set maximum amount of memory map in bytes to allocate for the pixel cache. When this limit is exceeded, the image pixels are cached to disk Imagick::RESOURCETYPE_MAP => 10 * $g, // Set maximum amount of memory in bytes to allocate for the pixel cache from the heap. When this limit is exceeded, the image pixels are cached to memory-mapped disk Imagick::RESOURCETYPE_MEMORY => 10 * $g, ); if (defined('Imagick::RESOURCETYPE_TIME')) { $tests[Imagick::RESOURCETYPE_TIME] = 30; } if (defined('Imagick::RESOURCETYPE_THROTTLE')) { $tests[Imagick::RESOURCETYPE_THROTTLE] = 1; } if (defined('Imagick::RESOURCETYPE_THREAD')) { $tests[Imagick::RESOURCETYPE_THREAD] = 1; } if (defined('Imagick::RESOURCETYPE_WIDTH')) { $tests[Imagick::RESOURCETYPE_WIDTH] = $g; } if (defined('Imagick::RESOURCETYPE_HEIGHT')) { $tests[Imagick::RESOURCETYPE_HEIGHT] = $g; } foreach ($tests as $resourceType => $value) { Imagick::setResourceLimit($resourceType, $value); $actualValue = Imagick::getResourceLimit($resourceType); if ($actualValue != $value) { echo "Error testing $resourceType, value returned $actualValue is not $value \n"; } } echo 'success'; ?> --EXPECTF-- success