Ejemplo n.º 1
0
 public function __construct($name, $size)
 {
     parent::__construct();
     $this->setName($name);
     $this->setSize($size);
 }
Ejemplo n.º 2
0
 /**
  * Font file
  *
  * @param string $font Font file
  * @param int $size Font size
  */
 function awTTFFont($font, $size)
 {
     parent::awFont($font);
     $this->size = (int) $size;
 }
Ejemplo n.º 3
0
 public function __construct($name, $size)
 {
     parent::__construct();
     $this->name = (string) $name;
     $this->size = (int) $size;
 }
Ejemplo n.º 4
0
 /**
  * Font file
  *
  * @param string $font Font file
  * @param int $size Font size
  */
 public function __construct($font, $size)
 {
     parent::__construct($font);
     $this->size = (int) $size;
 }
Ejemplo n.º 5
0
 function awFileFont($name, $size)
 {
     parent::awFont();
     $this->setName($name);
     $this->setSize($size);
 }