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


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


Imagick::functionImage()函數是PHP中的內置函數,用於對偽圖像應用算術,關係或邏輯表達式。

用法:

bool Imagick::functionImage( int $function, array $arguments,
                     int $channel = Imagick::CHANNEL_DEFAULT )

參數:此函數接受上述和以下所述的三個參數:


  • $function:此參數保存要應用的函數。
  • $arguments:此參數保存要傳遞給函數的數組。
  • $channel:該參數保存Imagick通道常數,該常數提供對通道模式有效的任何通道常數。可以使用按位運算符組合多個通道。通道常數的默認值為CHANNEL_DEFAULT。

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

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

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

示例1:

<?php 
  
// Create a new Imagick object 
$imagick = new Imagick(); 
  
// Create the pseudo image 
$imagick->newPseudoImage(800, 200, 'gradient:green-white'); 
  
// Apply the functionImage() functions 
$imagick->functionImage(Imagick::FUNCTION_SINUSOID, array(1, -90)); 
  
header("Content-Type: image/png"); 
  
// Display the output image 
$imagick->setImageFormat("png"); 
echo $imagick->getImageBlob(); 
  
?>

輸出:

示例2:

<?php 
  
// Create a new Imagick object 
$imagick = new Imagick(); 
  
// Create the pseudo image 
$imagick->newPseudoImage(800, 200, 'gradient:yellow-blue'); 
  
// Apply the functionImage() functions 
$imagick->functionImage(Imagick::FUNCTION_POLYNOMIAL, array(6, -3, 1)); 
  
header("Content-Type: image/png"); 
  
// Display the output image 
$imagick->setImageFormat("png"); 
echo $imagick->getImageBlob(); 
  
?>

輸出:

示例3:

<?php 
  
// Create a new Imagick object 
$imagick = new Imagick(); 
  
// Create the pseudo image 
$imagick->newPseudoImage(800, 200, 'gradient:white-blue'); 
  
// Apply the functionImage() functions 
$imagick->functionImage(Imagick::FUNCTION_SINUSOID, array(3, -90)); 
  
header("Content-Type: image/png"); 
  
// Display the output image 
$imagick->setImageFormat("png"); 
echo $imagick->getImageBlob(); 
  
?>

輸出:

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



相關用法


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