📜  PHP | Gmagick profileimage()函数

📅  最后修改于: 2022-05-13 01:56:21.130000             🧑  作者: Mango

PHP | Gmagick profileimage()函数

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

句法:

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

参数:此函数接受上面提到的两个参数,如下所述:

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

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

异常:此函数在错误时抛出 GmagickException。

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

使用图像:

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

profileimage('my_profile_name', 'my_profile_value');
  
// Output the image  
echo $gmagick->getimageprofile('my_profile_name'); 
?>

输出:

my_profile_value

程序 2(删除配置文件):

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