Home Tutorial Php Phpgd PHP GD image convolution

 
 

PHP GD image convolution
Posted on: November 12, 2009 at 12:00 AM
This example shows how to convolution an image in php gd.

<?php

$image = imagecreatefromjpeg('images.jpg');

$emboss = array(array(2, 0, 0), array(0, -1, 0), array(0, 0, -1));

imageconvolution($image, $emboss, 1, 127);

header('Content-Type: image/jpeg');

imagejpeg($image, null, 9);

?>

After running the program you will get the following output

Related Tags for PHP GD image convolution:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.