TalkPHP

TalkPHP (http://www.talkphp.com/forums.php)
-   Absolute Beginners (http://www.talkphp.com/absolute-beginners/)
-   -   About PHP on blur - alphabet image (http://www.talkphp.com/absolute-beginners/2394-about-php-blur-alphabet-image.html)

satimis 03-02-2008 08:37 AM

About PHP on blur - alphabet image
 
Hi folks,


Just start learning PHP on image.

Re blur on image, if I need blurring an alphabet how can I start on alphabet typed on editor instead of googling an alphabet.jpg on Internet to start. Could you please shed me some light? TIA


B.R.
satimis

Orc 03-02-2008 08:53 AM

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); 


satimis 03-02-2008 09:20 AM

Quote:

Originally Posted by Orc (Post 11811)
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

Orc 03-02-2008 09:51 AM

Quote:

Originally Posted by satimis (Post 11812)
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

You could make an array of letters, then use a for loop, and loop all the letters through the function imagettfont, and it should display the whole alphabet, just a thought.


All times are GMT. The time now is 07:12 AM.

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0