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


PHP Gmagick profileimage()用法及代码示例


Gmagick::profileimage()函数是PHP中的内置函数,用于添加或删除映像中的配置文件。

用法:

Gmagick Gmagick::profileimage( float $name, float $profile )

参数:该函数接受上述和以下所述的两个参数:


  • $name:它指定配置文件的名称。
  • $profile:它指定配置文件的值。

返回值:此函数返回带有配置文件的Gmagick对象。

异常:此函数在错误时引发GmagickException。

下面给出的程序说明了PHP中的Gmagick::profileimage()函数:

使用的图片:

程序1(添加配置文件):

<?php 
  
// Create a new Gmagick object 
$gmagick = new Gmagick('geeksforgeeks.png'); 
  
// Add profile to the image 
$gmagick->profileimage('my_profile_name', 'my_profile_value'); 
  
// Output the image   
echo $gmagick->getimageprofile('my_profile_name');  
?>

输出:

my_profile_value

程序2(删除个人资料):

<?php 
  
// Create a new Gmagick object 
$gmagick = new Gmagick('geeksforgeeks.png'); 
  
// Add profile to the image 
$gmagick->profileimage('my_profile_name', 'my_profile_value'); 
  
// Remove all profiles 
$gmagick->profileimage('*', NULL); 
  
try { 
    $profileValue = $gmagick->getimageprofile('my_profile_name');  
} catch (\Throwable $e) { 
    echo "No such profile exists"; 
} 
?>

输出:

No such profile exists

参考: https://www.php.net/manual/en/gmagick.profileimage.php



相关用法


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