I want users to be able to add their own text on an image
me too need this,search little bit net,and link that you give to,or we can wait for GumSlone if he want's to answer[/b]
me too need this,search little bit net,and link that you give to,or we can wait for GumSlone if he want's to answer[/b]
Code:
<?php $browser = explode ('/', $HTTP_USER_AGENT); $im = @ImageCreate ( 80, 50) or die; $background_color = ImageColorAllocate ($im, 555, 0, 0); $text_color = ImageColorAllocate ($im, 0, 255, 255); ImageString ($im, 0, 25, 1, "$browser[0]", $text_color); ImageString ($im, 0, 10, 10, "$REMOTE_ADDR", $text_color); ImageString ($im, 0, 25, 20, "".date("H:i")."", $text_color); ImageString ($im, 0, 10, 29, "".date("D d M y")."", $text_color); ImageString ($im, 0, 3, 39, "$text", $text_color); header('Content-Type: image/gif'); Imagegif ($im); ?>
Comment