txt2img

On September 22, 2009, in LAMP, PHP, Tips, Tricks, by Sandeep Verma

Hits: 46  

Here is the code to convert text to image or simply write text on image….

<?php
$img=ImageCreate (100,20);
$background_color=ImageColorAllocate($img,255,205,255);
$textcolor=ImageColorAllocate ($img,203,14,91);
ImageString($img,3,5,5,”svnlabs.com!”,$textcolor);
ImagePNG ($img, “svnlabs.png”);
$img2 = imagerotate ($img, 100, 0);
ImagePNG($img2,”svnlabs.png”);
ImageDestroy($img);
ImageDestroy($img2);
?>



Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!

Visit our friends!

A few highly recommended friends...