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


PHP Gmagick removeimageprofile()用法及代碼示例


Gmagick::removeimageprofile()函數是PHP中的內置函數,用於刪除命名的圖像配置文件並返回它。此函數的作用類似於堆棧數據結構的pop函數,因為它提供了配置文件的值並將其從映像中刪除。

用法:

string Gmagick::removeimageprofile( string $name )

參數:此函數接受單個參數$name,該參數保存要刪除的配置文件的名稱。


返回值:該函數返回一個包含配置文件圖像值的字符串值。

異常:此函數在錯誤時引發GmagickException。

下麵給出的程序說明了PHP中的Gmagick::removeimageprofile()函數:

使用的圖片:

程序1:

<?php 
  
// Create a new Gmagick object 
$gmagick = new Gmagick('geeksforgeeks.png'); 
  
// Create a profile 
$gmagick->setimageprofile('profile_name', 'profile_value'); 
  
echo '<b>Before removing:</b> <br>'; 
  
// Test it using the function 
testProfile($gmagick, 'profile_name'); 
  
// Remove the profile 
$gmagick->removeimageprofile('profile_name'); 
  
echo '<b>After removing:</b> <br>'; 
// Test again if it is removed or not. 
testProfile($gmagick, 'profile_name'); 
  
// Function to check if a profile is removed or not 
function testProfile($gmagick, $name) { 
  
    try { 
        $value = $gmagick->getimageprofile('profile_name'); 
        echo 'Profile is available with name <i>' . $name . 
                ' </i>and value <i>' . $value . '</i><br>'; 
  
    } catch (Exception $e) { 
        echo 'Profile is not available.<br>'; 
    } 
} 
?>

輸出:

Before removing:
Profile is available with name profile_name and value profile_value
After removing:
Profile is not available.

程序2:

<?php 
  
// Create a new Gmagick object 
$gmagick = new Gmagick('geeksforgeeks.png'); 
  
// Set the Image Profiles 
$gmagick->setimageprofile('borderColor1', 'green'); 
$gmagick->setimageprofile('borderColor2', 'red'); 
  
// Use the Image Profile 
$gmagick->borderImage($gmagick->getImageProfile('borderColor1'), 6, 6); 
  
// Use the Image Profile 
$gmagick->borderImage($gmagick->getImageProfile('borderColor2'), 6, 6); 
  
// Removing the profiles after use for memory efficiency 
$gmagick->removeimageprofile('borderColor1'); 
$gmagick->removeimageprofile('borderColor2'); 
  
// Display the image 
header("Content-Type:image/png"); 
echo $gmagick; 
?>

輸出:

參考: https://www.php.net/manual/en/gmagick.removeimageprofile.php



相關用法


注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | Gmagick removeimageprofile() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。