Source for file Shape.php
Documentation is available at Shape.php
* Copyright (c) 2009 - 2010 PHPPowerPoint
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* @category PHPPowerPoint
* @package PHPPowerPoint_Shape
* @copyright Copyright (c) 2009 - 2010 PHPPowerPoint (http://www.codeplex.com/PHPPowerPoint)
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
* @version 0.1.0, 2009-04-27
/** PHPPowerPoint_IComparable */
require_once 'PHPPowerPoint/IComparable.php';
/** PHPPowerPoint_Slide */
require_once 'PHPPowerPoint/Slide.php';
/** PHPPowerPoint_Style_Fill */
require_once 'PHPPowerPoint/Style/Fill.php';
/** PHPPowerPoint_Shape_Shadow */
require_once 'PHPPowerPoint/Shape/Shadow.php';
* @category PHPPowerPoint
* @package PHPPowerPoint_Shape
* @copyright Copyright (c) 2009 - 2010 PHPPowerPoint (http://www.codeplex.com/PHPPowerPoint)
* @var PHPPowerPoint_Slide
* @var PHPPowerPoint_Style_Fill
* @var PHPPowerPoint_Shape_Shadow
* Create a new PHPPowerPoint_Shape
* @return PHPPowerPoint_Slide
* @param PHPPowerPoint_Slide $pValue
* @param bool $pOverrideOld If a Slide has already been assigned, overwrite it and remove image from old Slide?
public function setSlide(PHPPowerPoint_slide $pValue = null, $pOverrideOld = false) {
// Add drawing to PHPPowerPoint_Slide
$this->_slide->getShapeCollection()->append($this);
// Remove drawing from old PHPPowerPoint_Slide
$iterator = $this->_slide->getShapeCollection()->getIterator();
while ($iterator->valid()) {
if ($iterator->current()->getHashCode() == $this->getHashCode()) {
$this->_slide->getShapeCollection()->offsetUnset( $iterator->key() );
// Set new PHPPowerPoint_Slide
throw new Exception("A PHPPowerPoint_Slide has already been assigned. Shapes can only exist on one PHPPowerPoint_Slide.");
* Set width and height with proportional resize
* @example $objDrawing->setWidthAndHeight(160,120);
* @return PHPPowerPoint_Style_Fill
* @return PHPPowerPoint_Shape_Shadow
* @param PHPPowerPoint_Shape_Shadow $pValue
public function setShadow(PHPPowerPoint_Shape_Shadow $pValue = null) {
* @return string Hash code
* Note that this index may vary during script execution! Only reliable moment is
* while doing a write of a workbook and when changes are not allowed.
* @return string Hash index
* Note that this index may vary during script execution! Only reliable moment is
* while doing a write of a workbook and when changes are not allowed.
* @param string $value Hash index
* Implement PHP __clone to create a deep clone, not just a shallow copy.
foreach ($vars as $key => $value) {
$this->$key = clone $value;
|