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


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


Imagick::shadeImage()函數是PHP中的內置函數,用於創建給定圖像的3D效果。在圖像上照射遠處的光線以創建三維效果。方位角以x軸度為單位,仰角以z-axis上方的像素為單位。

用法:

bool Imagick::shadeImage( $gray, $azimuth, $elevation )

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


  • $gray:此參數存儲除零以外的值,並陰影每個像素的強度。
  • $azimuth:此參數存儲光源方向的值。以x軸度數為單位。
  • $elevation:此參數存儲光源方向的值。以z-axis上方的像素為單位進行測量。

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

原始圖片:

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

程序:

<?php  
// require_once('path/vendor/autoload.php');  
   
// Create an Imagick Object 
   
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-12.png'); 
   
// shadeImage Function 
$imagick->shadeImage(true, 45, 20); 
   
// Image Header 
header("Content-Type: image/jpg"); 
  
// Display the image 
echo $imagick->getImageBlob(); 
?>

輸出:

相關文章:

參考: http://php.net/manual/en/imagick.shadeimage.php



相關用法


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