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


PHP Imagick profileImage()用法及代碼示例


Imagick::profileImage()函數是PHP中的內置函數,可用於在圖像中添加或刪除配置文件。如果配置文件為NULL,則將其從圖像中刪除,否則將其添加。

關於ICC圖像配置文件:在顏色管理中,ICC配置文件是根據國際色彩協會(ICC)頒布的標準描述色彩輸入或輸出設備或色彩空間的一組數據。色彩空間是指特定的色彩組織。

用法:


bool Imagick::profileImage( $name, $profile )

參數:該函數接受上述和以下描述的兩個參數:

  • $name:此參數保存圖像的配置文件的名稱。
  • $profile:此參數保存配置文件的內容。

返回值:成功時此函數返回true。

以下示例程序旨在說明PHP中的Imagick::profileImage()函數:

程序:

<?php 
  
// Create an Imagick object 
$image = new Imagick( 
"https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png"); 
  
// Get profiles attached to the image  
$profiles = $image->getImageProfiles('*', false); 
  
// Checking for any icc profile added to the image  
$has_icc_profile = (array_search('icc', $profiles) !== false);  
  
  
if ($has_icc_profile === false) { 
  
    // If image does not have ICC profile, then add one 
    $icc = file_get_contents('D:\\Merawamp\\www\\New\\to\\icc\\CMYK.icc'); 
      
    // Use Imagick::profileimage() function to add the 
    // profile to an image the profile added to the  
    // image is the file D:\\Merawamp\\www\\New\\to\\icc\\CMYK.icc 
    $trip1 = $image->profileImage('icc', $icc); 
} 
  
// If method runs successfully it retuens true 
if($trip1 == true) { 
    echo "Profile added to image successfully"; 
} 
  
?>

輸出:



相關用法


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