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


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


Imagick::setImageProfile()函數是PHP中的內置函數,用於將命名配置文件設置為Imagick對象。

用法:

bool Imagick::setImageProfile( string $name, string $profile )

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


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

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

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

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

示例1:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Set the Image Profile 
$imagick->setImageProfile('color', 'cyan'); 
  
// Use the Image Profile 
$imagick->setImageBackgroundColor($imagick->getImageProfile('color')); 
$imagick->setImageAlphaChannel(Imagick::ALPHACHANNEL_SHAPE); 
  
// Display the image 
header("Content-Type: image/png"); 
echo $imagick->getImageBlob(); 
?>

輸出:

示例2:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Set the Image Profile 
$imagick->setImageProfile('borderColor', 'green'); 
  
// Use the Image Profile 
$imagick->borderImage($imagick->getImageProfile('borderColor'), 1, 1); 
  
// Display the image 
header("Content-Type: image/png"); 
echo $imagick->getImageBlob(); 
?>

輸出:

參考: https://www.php.net/manual/en/imagick.setimageprofile.php



相關用法


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