example
1 <?php 2 /** 3 * @package core_gfx 4 * @subpackage text_examples 5 */ 6 7 require_once($_SERVER['DOCUMENT_ROOT'] . '../global.conf.php'); 8 require_once($APP['path']['core'] . 'gfx/text/Bs_TextType.class.php'); 9 10 $defaults = array( 11 'fontDir' => 'c:/winnt/fonts/', 12 ); 13 $tt =& new Bs_TextType(); 14 $tt->doItYourself($defaults); 15 ?>
|