_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(); } /** * Get image resource * * @return resource */ public function getImageResource() { return $this->_imageResource; } /** * Set image resource * * @param $value resource * @return PHPExcel_Worksheet_MemoryDrawing */ public function setImageResource($value = null) { $this->_imageResource = $value; if (!is_null($this->_imageResource)) { // Get width/height $this->_width = imagesx($this->_imageResource); $this->_height = imagesy($this->_imageResource); } return $this; } /** * Get rendering function * * @return string */ public function getRenderingFunction() { return $this->_renderingFunction; } /** * Set rendering function * * @param string $value * @return PHPExcel_Worksheet_MemoryDrawing */ public function setRenderingFunction($value = PHPExcel_Worksheet_MemoryDrawing::RENDERING_DEFAULT) { $this->_renderingFunction = $value; return $this; } /** * Get mime type * * @return string */ public function getMimeType() { return $this->_mimeType; } /** * Set mime type * * @param string $value * @return PHPExcel_Worksheet_MemoryDrawing */ public function setMimeType($value = PHPExcel_Worksheet_MemoryDrawing::MIMETYPE_DEFAULT) { $this->_mimeType = $value; return $this; } /** * Get indexed filename (using image index) * * @return string */ public function getIndexedFilename() { $extension = strtolower($this->getMimeType()); $extension = explode('/', $extension); $extension = $extension[1]; return $this->_uniqueName . $this->getImageIndex() . '.' . $extension; } /** * Get hash code * * @return string Hash code */ public function getHashCode() { return md5( $this->_renderingFunction . $this->_mimeType . $this->_uniqueName . parent::getHashCode() . __CLASS__ ); } /** * Implement PHP __clone to create a deep clone, not just a shallow copy. */ public function __clone() { $vars = get_object_vars($this); foreach ($vars as $key => $value) { if (is_object($value)) { $this->$key = clone $value; } else { $this->$key = $value; } } } }