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. Link to comment https://forums.phpfreaks.com/topic/146576-imagettftext/ 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? Link to comment https://forums.phpfreaks.com/topic/146576-imagettftext/#findComment-769528 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.