Quick Search:
 
 PHP Code: Make grayscaled image Jump to:  
Category: >> PHP Code >> Make grayscaled image  

<< lastnext >>

Snippet Name: Make grayscaled image

Description: Makes a grayscaled image on the fly.

Also see:
» GD barchart demo
» Simple image scaling
» Create thumbnails with PHP
» Write text onto an image
» CAPTCHA with GD Image Library

Comment: (none)

Language: PHP
Highlight Mode: PHP
Last Modified: March 16th, 2009

<?PHP
 
HEADER("content-type: image/jpeg");
$image = imagecreatefromjpeg("image.jpg");
imagefilter($image,IMG_FILTER_GRAYSCALE);
imagejpeg($image);
imagedestroy($image);
 
?>


 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2024 psoug.org