Exemplo n.º 1
0
 /**
  * Image_Graph_Font [Constructor]
  */
 function Image_Graph_Font($name = false, $size = false)
 {
     parent::Image_Graph_Common();
     if ($name !== false) {
         $this->_name = $name;
     }
     if ($size !== false) {
         $this->_size = $size;
     }
 }
Exemplo n.º 2
0
 /**
  * Image_Graph_SolidLine [Constructor]
  *
  * @param mixed $color The color of the line
  */
 function Image_Graph_Line_Solid($color)
 {
     parent::Image_Graph_Common();
     $this->_color = $color;
 }