PHP GD Colorization of image


 

PHP GD Colorization of image

This example shows how to change the color of an image in php gd.

This example shows how to change the color of an image in php gd.

<?php

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

if($im && imagefilter($im, IMG_FILTER_COLORIZE, 0, 255, 0))

{

echo 'Image successfully shaded green.';

imagejpeg($im, 'images.jpg');

imagedestroy($im);

}

else

{

echo 'Green shading failed.';

}

?>

After running the program you will get the following output

Ads