downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

Imagick::setSamplingFactors> <Imagick::setResolution
[edit] Last updated: Fri, 24 May 2013

view this page in

Imagick::setResourceLimit

(PECL imagick 2.0.0)

Imagick::setResourceLimitSets the limit for a particular resource in megabytes

说明

bool Imagick::setResourceLimit ( int $type , int $limit )

Sets the limit for a particular resource in megabytes.

参数

type

limit

返回值

成功时返回 TRUE



add a note add a note User Contributed Notes Imagick::setResourceLimit - [2 notes]
up
0
Arkadiy Kulev
1 year ago
This list should help setting the limits:

imagick::RESOURCETYPE_AREA (integer)   //equivalent of MAGICK_AREA_LIMIT
imagick::RESOURCETYPE_DISK (integer)   //equivalent of MAGICK_DISK_LIMIT
imagick::RESOURCETYPE_FILE (integer)   //equivalent of MAGICK_FILE_LIMIT
imagick::RESOURCETYPE_MAP (integer)    //equivalent of MAGICK_MAP_LIMIT
imagick::RESOURCETYPE_MEMORY (integer) //equivalent of MAGICK_MEMORY_LIMIT
up
0
rodneyrehm
1 year ago
IMagick::RESOURCETYPE_THREADS is missing, yet you're still able to limit the number of thready ImageMagick should use:

<?php
// IMagick::setResourceLimit(IMagick::RESOURCETYPE_THREADS, 2);
IMagick::setResourceLimit(6, 2);

 
show source | credits | stats | sitemap | contact | advertising | mirror sites