RSS

Text To Image - PHP

Tue, Aug 26, 2008

PHP, Tutorials

In this tutorial I will show you how to transform text into an image using PHP.

To show the text you need to go to the php file in your web browser and type ?text=words on the end of it. For example: www.yoursite.com/pageurl.php?text=words” This will then show “words” as an image.

You can be lazy and just copy and paste the code below or you can look at a code breakdown below.

header("Content-type: image/png");
$text = stripslashes($_GET['text']);
$number = strlen($text);
$number = ($number*7)+9;
$im = imagecreate($number, 24);
$colour1 = imagecolorallocate($im, 0, 0, 0);
$colour2 = imagecolorallocate($im, 255, 255, 255);
imagestring($im, 3, 5, 5, $text, $colour2);
imagepng($im);
imagedestroy($im);

Code Breakdown

Code Breakdown

header("Content-type: image/png");

Tells the browser to show an image, not a .php file.

$text = stripslashes($_GET['text']);

Take the text and stop it from messing up with ‘

$number = strlen($text);

This counts the amount of characters in the text.

$number = ($number*7)+9;

Times this by 7 and add 9 to make it look the right size.

$im = imagecreate($number, 24);

Create the basic size, $number x 24

$colour1 = imagecolorallocate($im, 0, 0, 0);

Makes the background black (RGB) Change these to change the background colour to what ever you like.

$colour2 = imagecolorallocate($im, 255, 255, 255);

Makes the text white. Again, change these numbers to get the colour you want.

imagestring($im, 3, 5, 5, $text, $colour2);

Adds the text to the image

imagepng($im);

Creates and displays the image

imagedestroy($im);

This destroys the image after it has been used. If this is not used after a while your server will begin to lag.

Demo: Link

Source: Download

Demo: Link

Source: Download

Rating: 8.0/10 (8 votes cast)
Share and Enjoy:
  • Digg
  • Google
  • Technorati
  • del.icio.us
  • Facebook
  • StumbleUpon
  • Furl
  • Live
  • Reddit
  • Spurl

  • Subscribe
    • XML
    • Google Reader or Homepage
    • Add to My Yahoo!
    • Subscribe with Bloglines
    • Subscribe in NewsGator Online
    • BittyBrowser
    • Add to My AOL
    • Convert RSS to PDF
    • Subscribe in Rojo
    • Subscribe in FeedLounge
    • Subscribe with Pluck RSS reader
    • Solosub
    • MultiRSS
    • R|Mail
    • Rss fwd
    • Blogarithm
    • Eskobo
    • gritwire
    • BotABlog
    • Simpify!
    • Add to Technorati Favorites!
    • Add to netvibes
    • Add this site to your Protopage
    • Subscribe in NewsAlloy
    • Subscribe in myEarthlink
    • Add to your phone
    • Get RSS Buttons

, , , , ,



This post was written by:

admin - who has written 41 posts on Unreal Media.


Contact the author

3 Comments For This Post

  1. Php Image Says:

    anybody here know of a good site to find more info on php image? I’ve got this site bookmarked and im gonna keep checking it out, but i still would like to find a site that covers php image a little more thoroughly..thanks

    Rating: 0.0/5 (0 votes cast)
  2. ppaelkos Says:

    [size=7][b][u]Play Casino Online![/u][/b][/size]

    - [size=6][url=http://www.mtc-hn.md/umaxium/Casino]LuckyAceCasino.com, Sign Up today and receive a [b]100% Sign Up bonus, up to $200[/b][/url][/size]

    - [size=6][url=http://www.mtc-hn.md/umaxium/Casino][b]Play FREE[/b] casino games at LuckyAceCasino.com[/url][/size]

    - [size=6][url=http://www.mtc-hn.md/umaxium/Casino]Win Real Money, [b]get up to $200 Sign Up Bonus[/b] at LuckyAceCasino.com[/url][/size]

    [size=7][b][u]Play Poker Online![/u][/b][/size]

    - [size=6][url=http://www.mtc-hn.md/umaxium/Poker]LuckyAcePoker.com, Sign Up today and receive a 100% first deposit bonus, [b]up to $400[/b][/url][/size]

    - [size=6][url=http://www.mtc-hn.md/umaxium/Poker]Play Poker with tens of thousands of players from all around the globe at LuckyAcePoker.com! 24/7 action, up to[b] $400 bonus![/b][/url][/size]

    Rating: 0.0/5 (0 votes cast)
  3. ppaelkos Says:

    Viagra are often the first treatment tried for erectile dysfunction — the inability to achieve or sustain an adequate erection for sexual activity.What Viagra® does is simple: When it works as intended, [url=http://www.livevideo.com/blog/ViagraOnline]Buy Viagra Online[/url] causes a man who is sexually stimulated to get an erection.
    Cialis is taken orally and helps men suffering from erectile dysfunction achieve and maintain an erection. [url=http://www.livevideo.com/blog/CialisOnline]Buy Cialis Online[/url] (Tadalafil) works in much the same way as Sildenafil Citrate, but is much faster, lasting up to 36 hours.High quality CIALIS pills!Use of this drug does not protect against sexually transmitted diseases.
    When you go online to order Levitra (also sold under the generic name Vardenafil)Buying Levitra online avoids any of the possible embarrassment if you go to collect this medication from your neighbourhood pharmacy. When [url=http://www.livevideo.com/blog/LevitraOnlinePills]Buy Levitra Online[/url] was launched, they tried to create a tough guy,macho image for Levitra.
    Phentermine is a weight loss medication prescribed by doctors for overweight patients. [url=http://www.livevideo.com/blog/PhentermineDiet]Buy Phentermine Online[/url] falls under the category of central nervous system stimulant, with similar traits to amphetamines.

    Rating: 0.0/5 (0 votes cast)

Leave a Reply