JPEG Image to grayscale - PHP Views : 279
Tagged in : PHP
0 0
Send mail

Convert JPEG Image to Grayscale
<?php
header("content-type: image/jpeg");
$Img = imagecreatefromjpeg("ferrari.jpg");
imagefilter($Img,IMG_FILTER_GRAYSCALE);
imagejpeg($Img);
imagedestroy($Img);
?>

By raveendran, On - 2010-01-29



    Login to add Comments .