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, 30 Nov 2012

view this page in

Imagick::setResourceLimit

(PECL imagick 2.0.0)

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

Opis

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

Sets the limit for a particular resource in megabytes.

Parametry

type

limit

Zwracane wartoĊ›ci

Zwraca TRUE w przypadku sukcesu.



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