I got this script
Header ("Content-type: image/png");
$img_handle = imageCreateFromPNG("banner.png");
$color = ImageColorAllocate ($img_handle, 100, 100, 100);
ImageString ($img_handle, 3, 10, 9, "TESTING", $color);
ImagePng ($img_handle);
ImageDestroy ($img_handle);
?>
how can I change the script like that people can enter a text in a input box and the text will be showed on the dynamic image???
2007-07-15
21:49:55
·
2 answers
·
asked by
marks
2
in
Computers & Internet
➔ Programming & Design