03-02-2008, 09:20 AM
|
#3 (permalink)
|
|
The Wanderer
Join Date: Mar 2008
Posts: 8
Thanks: 0
|
Quote:
Originally Posted by Orc
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);
|
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
|
|
|
|