mouse77e Posted February 1, 2010 Share Posted February 1, 2010 I thought I had this sorted but obviously not. The idea was to centre the text, in this cast Christopher in the centre of the badge, In stead of centring the text in the middle of the badge the text starts as of the middle of the badge. The Code: <?php $image = ImageCreateFromPNG("nametag.png"); $color = imagecolorallocate($image, 0x255, 0x255, 0x255); $colorShadow = imagecolorallocate($image, 0x66, 0x66, 0x66); $font = 'font1.ttf'; $fontSize = "24"; $fontRotation = "0"; $str = "Christopher"; $width = 180; $height = 144; $font_width = ImageFontWidth($font); $font_height = ImageFontHeight($font); /* Text Width */ $text_width = $font_width * strlen($text); /* Position to align in center */ $position_center = ceil(($width - $text_width) / 2); /* Text Height */ $text_height = $font_height; /* Position to align in abs middle */ $position_middle = ceil(($height - $text_height) / 2 + 30); /* Top Level */ ImageTTFText($image, $fontSize, $fontRotation, $position_center, $position_middle, $color, $font, $str); header("Content-Type: image/PNG"); ImagePng ($image); imagedestroy($image); ?> [attachment deleted by admin] Link to comment https://forums.phpfreaks.com/topic/190524-text-placement-on-image-in-gd-library/ Share on other sites More sharing options...
MasterACE14 Posted February 1, 2010 Share Posted February 1, 2010 just offset it a little, change $position_middle to + or - however many pixels until you're satisfied with its position Link to comment https://forums.phpfreaks.com/topic/190524-text-placement-on-image-in-gd-library/#findComment-1004937 Share on other sites More sharing options...
mouse77e Posted February 1, 2010 Author Share Posted February 1, 2010 Indeed that would work but i need the prossess to be automatic, the name will not always bee the same so auto centring is vital. Many thanks tho Link to comment https://forums.phpfreaks.com/topic/190524-text-placement-on-image-in-gd-library/#findComment-1004954 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.