Use TrueType Fonts : TrueType Fonts : Graphics Image PHP Source Code


PHP Source Code » Graphics Image » TrueType Fonts »

 

Use TrueType Fonts



<?php
     header ("Content-type: image/png");
   
     $im = ImageCreate (30040);
     $grey = ImageColorAllocate ($im, 230230230);
     $black = ImageColorAllocate ($im, 000);
   
     ImageTTFText($im, 2001025, $black, "ARIALBD.TTF""TrueType Fonts!");
     ImagePng ($im);
     ImageDestroy ($im);
?>
           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Graphics Image
» TrueType Fonts