當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。