Imagick::getResourceLimit()函數是PHP中的內置函數,用於獲取指定的資源限製。
用法:
int Imagick::getResourceLimit( int $type )
參數:此函數接受單個參數$type,該參數持有對應於RESOURCETYPE常量之一的整數值。我們還可以像getResourceLimit(imagick::RESOURCETYPE_DISK);這樣直接傳遞常量。
下麵列出了所有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)
返回值:此函數返回一個整數值,其中包含指定的資源限製(以兆字節為單位)。
異常:該函數在錯誤時引發ImagickException。
下麵給出的程序說明了PHP中的Imagick::getResourceLimit()函數:
程序1:
<?php
// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
//Get the Resource Limit
$resourceLimit = $imagick->getResourceLimit(imagick::RESOURCETYPE_MAP);
echo $resourceLimit;
?>
輸出:
127462465536
程序2:
<?php
// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
//Get the Resource Limit
$resourceLimit = $imagick->getResourceLimit(imagick::RESOURCETYPE_AREA);
echo $resourceLimit;
?>
輸出:
127462465536
參考: https://www.php.net/manual/en/imagick.getresourcelimit.php
相關用法
- PHP Imagick distortImage()用法及代碼示例
- PHP Imagick readImage()用法及代碼示例
- PHP Imagick readImageFile()用法及代碼示例
- PHP Imagick remapImage()用法及代碼示例
- PHP Imagick readImages()用法及代碼示例
- PHP Imagick getCopyright()用法及代碼示例
- PHP Imagick extentImage()用法及代碼示例
- PHP Imagick separateImageChannel()用法及代碼示例
- PHP Imagick sepiaToneImage()用法及代碼示例
- PHP Imagick despeckleImage()用法及代碼示例
- PHP Imagick convolveImage()用法及代碼示例
- PHP Imagick setColorspace()用法及代碼示例
- PHP Imagick enhanceImage()用法及代碼示例
- PHP Imagick encipherImage()用法及代碼示例
- PHP Imagick equalizeImage()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | Imagick getResourceLimit() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。