zontrakulla Posted February 23, 2009 Share Posted February 23, 2009 Hey guys, I have this code <?php header('Content-type: image/png'); $im = imagecreatefrompng ("picture.png"); $font = 'times.ttf'; $size[1] = 8; $word = "blah"; imagettftext($im, $size[1], 0, 35, 85, $color, $font, $word); imagepng($im); imagedestroy($im); ?> It prints the word on the image, however i want something like this with borders How can i do borders? Thanks for your help. Quote Link to comment Share on other sites More sharing options...
zontrakulla Posted February 23, 2009 Author Share Posted February 23, 2009 Anyone have any ideas for creating borders? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.