Using a Bounding Box to Center Text : Draw String : Graphics Image PHP Source Code


PHP Source Code » Graphics Image » Draw String »

 

Using a Bounding Box to Center Text



<?php
     header ("Content-type: image/png");
   
     $text = "Bounding Box!";
     $font_size = 15;
     $height = 500;
     $width = 300;
   
     $im = ImageCreate ($width, $height);
     $grey = ImageColorAllocate ($im, 230230230);
     $black = ImageColorAllocate ($im, 000);
   
     $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);
?>
           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Graphics Image
» Draw String