当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。