Imagick::getImageProfiles()函數是PHP中的內置函數,用於獲取圖像配置文件。
用法:
array Imagick::getImageProfiles( string $pattern = "*", bool $include_values = TRUE )
參數:該函數接受上述和以下描述的兩個參數:
- $pattern:它指定概要文件名稱的模式。其默認值為*,它將獲取所有可用的配置文件。
- $include_values:它指定是否僅返回配置文件名稱。默認值是true。如果為FALSE,則僅返回配置文件名稱。
返回值:此函數返回一個包含圖像配置文件或僅配置文件名稱的數組。
以下示例程序旨在說明PHP中的Imagick::getImageProfiles()函數:
程序1:
<?php
// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Set the Image Profile
$imagick->setImageProfile('borderColor', 'green');
$imagick->setImageProfile('borderWidth', '20');
// Get the Image Profiles
$profiles = $imagick->getImageProfiles();
print("<pre>".print_r($profiles, true)."</pre>");
?>
輸出:
Array ( [bordercolor] => green [borderwidth] => 20 )
程序2:
<?php
// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Set the Image Profile
$imagick->setImageProfile('borderColor', 'green');
$imagick->setImageProfile('borderWidth', '20');
// Get the Image Profiles without values
$profiles = $imagick->getImageProfiles("*", false);
print("<pre>".print_r($profiles, true)."</pre>");
?>
輸出:
Array ( [0] => bordercolor [1] => borderwidth )
參考: https://www.php.net/manual/en/imagick.getimageprofiles.php
相關用法
- PHP Imagick distortImage()用法及代碼示例
- PHP Imagick readImage()用法及代碼示例
- PHP Imagick readImageFile()用法及代碼示例
- PHP Imagick getCopyright()用法及代碼示例
- PHP Imagick extentImage()用法及代碼示例
- PHP Imagick remapImage()用法及代碼示例
- PHP Imagick separateImageChannel()用法及代碼示例
- PHP Imagick sepiaToneImage()用法及代碼示例
- PHP Imagick convolveImage()用法及代碼示例
- PHP Imagick despeckleImage()用法及代碼示例
- PHP Imagick readImages()用法及代碼示例
- PHP Imagick enhanceImage()用法及代碼示例
- PHP Imagick encipherImage()用法及代碼示例
- PHP Imagick embossImage()用法及代碼示例
- PHP Imagick gaussianBlurImage()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | Imagick getImageProfiles() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。