View Single Post
Old 03-02-2008, 09:20 AM   #3 (permalink)
satimis
The Wanderer
 
Join Date: Mar 2008
Posts: 8
Thanks: 0
satimis is on a distinguished road
Default

Quote:
Originally Posted by Orc View Post
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); 
Thanks for your advice.


I can't resolve how to start if without an image. I don't have alphabet images to start, such as A/a, B/b, etc. images. Unless I find them on Internet. On graphic editing I don't need to have an Alphabet image to start. I create the image on software. On PHP I don't know how to make the image.


B.R.
satimis
satimis is offline  
Reply With Quote