03-02-2008, 08:53 AM
|
#2 (permalink)
|
|
The Prestige
Join Date: Dec 2007
Posts: 1,044
Thanks: 193
|
To blur images you can do imagefilter
PHP Code:
header("Content-Type: image/jpeg"); $file = "yourImage.jpg"; $im = imagecreatefromjpeg($file); imagefilter($im, IMG_FILTER_GAUSSIAN_BLUR); imagejpeg($im);
__________________
VillageIdiot can have my babbies ;d
|
|
|
|