Imagick::setResourceLimit()函數是PHP中的內置函數,用於設置特定資源的限製。
用法:
int Imagick::setResourceLimit( int $type, int $limit )
參數:該函數接受上述和以下描述的兩個參數:
- $type:它指定一個與RESOURCETYPE常量之一相對應的整數值。
- $limit:它指定一個包含限製的整數值。
下麵列出了所有RESOURCETYPE常量:
- imagick::RESOURCETYPE_UNDEFINED(0)
- imagick::RESOURCETYPE_AREA(1)
- imagick::RESOURCETYPE_DISK(2)
- imagick::RESOURCETYPE_FILE(3)
- imagick::RESOURCETYPE_MAP(4)
- imagick::RESOURCETYPE_MEMORY(5)
- imagick::RESOURCETYPE_THREAD(6)
返回值:成功時此函數返回TRUE。
異常:該函數在錯誤時引發ImagickException。
下麵給出的程序說明了PHP中的Imagick::setResourceLimit()函數:
程序1:
<?php
// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Set the Resource Limit
$imagick->setResourceLimit(imagick::RESOURCETYPE_AREA, 5000);
//Get the Resource Limit
$resourceLimit = $imagick->getResourceLimit(imagick::RESOURCETYPE_AREA);
echo $resourceLimit;
?>
輸出:
5000
程序2:
<?php
// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Set the Resource Limit
$imagick->setResourceLimit(imagick::RESOURCETYPE_MAP, 80000);
//Get the Resource Limit
$resourceLimit = $imagick->getResourceLimit(imagick::RESOURCETYPE_MAP);
echo $resourceLimit;
?>
輸出:
80000
參考: https://www.php.net/manual/en/imagick.setresourcelimit.php
相關用法
- PHP Imagick readImageFile()用法及代碼示例
- PHP Imagick readImage()用法及代碼示例
- PHP Imagick distortImage()用法及代碼示例
- PHP Imagick getCopyright()用法及代碼示例
- PHP Imagick getImageVirtualPixelMethod()用法及代碼示例
- PHP Imagick extentImage()用法及代碼示例
- PHP Imagick remapImage()用法及代碼示例
- PHP Imagick readImages()用法及代碼示例
- PHP Imagick separateImageChannel()用法及代碼示例
- PHP Imagick convolveImage()用法及代碼示例
- PHP Imagick despeckleImage()用法及代碼示例
- PHP Imagick sepiaToneImage()用法及代碼示例
- PHP Imagick enhanceImage()用法及代碼示例
- PHP Imagick encipherImage()用法及代碼示例
- PHP Imagick embossImage()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | Imagick setResourceLimit() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。