View Single Post
Old 03-02-2008, 08:53 AM   #2 (permalink)
Orc
The Prestige
 
Orc's Avatar
 
Join Date: Dec 2007
Posts: 1,044
Thanks: 193
Orc is on a distinguished road
Default

To blur images you can do imagefilter
PHP Code:

 header
("Content-Type: image/jpeg");
 
$file "yourImage.jpg";
 
$im imagecreatefromjpeg($file);
 
imagefilter($imIMG_FILTER_GAUSSIAN_BLUR);
 
imagejpeg($im); 
__________________
VillageIdiot can have my babbies ;d
Orc is offline  
Reply With Quote