当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Imagick getImageProfiles()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Imagick getImageProfiles() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。