Switch to full style
:read: Start PHP with us. Includes topics to help you in php
Post a reply

Bounding Box to Center Text by php

Sun Oct 26, 2008 10:55 pm

Code:
<?php
     header
("Content-type: image/png");
   
     
$text = "Bounding Box!";
     
$font_size = 15;
     
$height = 500;
     
$width = 300;
   
     
$im = ImageCreate ($width, $height);
     
$grey = ImageColorAllocate ($im, 230, 230, 230);
     
$black = ImageColorAllocate ($im, 0, 0, 0);
   
     
$text_bbox = ImageTTFBBox($font_size, 0, "ARIALBD.TTF", $text);
     
$image_center = $width / 2;
     
$text_x = $image_center - round(($text_bbox[4]/2));
   
     
ImageTTFText($im, $font_size, 0, $text_x, 10, $black, "ARIALBD.TTF", $text);
     
ImagePng ($im);
     
ImageDestroy ($im);
?>




Post a reply
  Related Posts  to : Bounding Box to Center Text by php
 Center logo     -  
 Move content to center of the page     -  
 invalid argument on IE with script to center objects     -  
 Able to Copy Text from Uneditable Text Boxes(JTextfields)     -  
 Java- Copy text area into disabled text area     -  
 Flaming Text     -  
 Get Text Field value by php     -  
 Transparent Text     -  
 text like a curve     -  
 Aligning the text within the div tag     -  

Topic Tags

PHP Graphics