Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

convert text to image

Status
Not open for further replies.

richardko

Programmer
Jun 20, 2006
127
US
Hi,
is there a library that can convert text to image in php?
thanks
 
richardko,

Would this question be related to your question in thread215-1300252 ?

If that's the case, I think you may want to consider generating a pdf instead.

This works for me: and it's free too.

;-)
 
umm...the other thread was to create packing slips. I posted this thread so I could create Labels (4 x 5 inches).

I got the Gd to work but how do I change the size of the text. Basically I need the text to fill up a 4"x5" labels in landscape format but cant get it to work.

here's the sample script from Php's website that I used so far:
$im = imagecreate(800, 800);

// white background and blue text
$bg = imagecolorallocate($im, 255, 255, 255);
$textcolor = imagecolorallocate($im, 0, 0, 255);

// write the string at the top left
imagestring($im, 5, 0, 0, "Hello world!", $textcolor);
// output the image
header("Content-type: image/png");
imagepng($im);
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top