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


PHP imageconvolution()用法及代碼示例


imageconvolution()函數是PHP中的內置函數,用於修改圖像內容。它使用給定的係數和偏移量在圖像中應用3 x 3卷積矩陣。成功時此函數返回true,失敗時返回false。

用法:

bool imageconvolution ( $image, $matrix, $div, $offset )

參數:該函數接受上述和以下所述的四個參數:


  • $image:它由圖像創建函數之一(例如imagecreatetruecolor())返回。它用於創建圖像的尺寸。
  • $matrix:它包含一個3 x 3(3 x 3矩陣)浮點數的數組。
  • $div:它是卷積結果的因數,用於歸一化。
  • $offset:用於設置顏色偏移。

返回值:如果成功,則此函數返回True;如果失敗,則返回False。

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

程序1:

<?php 
  
// Create a gif image  
$image = imagecreatefromgif( 
'https://media.geeksforgeeks.org/wp-content/uploads/animateImages.gif'); 
   
// Declare a 3X3 matrix 
$matrix = array( 
        array(2, 0, 0),  
        array(0, -1, 0),  
        array(0, 0, -1) 
); 
   
// imageconvolution function to modify image elements 
imageconvolution($image, $matrix, 1, 127); 
   
// Output of image content 
header('Content-Type: image/png'); 
imagepng($image, null, 9); 
?>

輸出:
image

程序2:

<?php 
  
// Create a gif image  
$image = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'); 
   
// Declare a 3X3 matrix 
$emboss = array(         
        array(0, -1, 2),  
        array(2, 0, 0), 
        array(2, 0, -2) 
); 
   
// imageconvolution function to modify image elements 
imageconvolution($image, $emboss, 1, 127); 
  
// Output of image content 
header('Content-Type: image/png'); 
imagepng($image, null, 9); 
?>

輸出:
image

相關文章:

參考: http://php.net/manual/en/function.imageconvolution.php



相關用法


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