Beispiel #1
0
 /**
  * Create a new Worksheet_Drawing
  */
 public function __construct()
 {
     // Initialise values
     $this->_path = '';
     // Initialize parent
     parent::__construct();
 }
 /**
  * Create a new Worksheet_MemoryDrawing
  */
 public function __construct()
 {
     // Initialise values
     $this->_imageResource = null;
     $this->_renderingFunction = self::RENDERING_DEFAULT;
     $this->_mimeType = self::MIMETYPE_DEFAULT;
     $this->_uniqueName = md5(rand(0, 9999) . time() . rand(0, 9999));
     // Initialize parent
     parent::__construct();
 }