Ejemplo n.º 1
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.º 2
0
 function awFileFont($name, $size)
 {
     parent::awFont();
     $this->setName($name);
     $this->setSize($size);
 }