178 lines
4.0 KiB
PHP
178 lines
4.0 KiB
PHP
<?php
|
|
/**
|
|
* PhpWord
|
|
*
|
|
* Copyright (c) 2014 PhpWord
|
|
*
|
|
* 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 PhpWord
|
|
* @package PhpWord
|
|
* @copyright Copyright (c) 2014 PhpWord
|
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
|
* @version 0.8.0
|
|
*/
|
|
|
|
namespace PhpOffice\PhpWord\Section;
|
|
|
|
use PhpOffice\PhpWord\Exceptions\InvalidImageException;
|
|
use PhpOffice\PhpWord\Exceptions\UnsupportedImageTypeException;
|
|
|
|
class Image
|
|
{
|
|
/**
|
|
* Image Src
|
|
*
|
|
* @var string
|
|
*/
|
|
private $_src;
|
|
|
|
/**
|
|
* Image Style
|
|
*
|
|
* @var PhpOffice\PhpWord\Style\Image
|
|
*/
|
|
private $_style;
|
|
|
|
/**
|
|
* Image Relation ID
|
|
*
|
|
* @var string
|
|
*/
|
|
private $_rId;
|
|
|
|
/**
|
|
* Is Watermark
|
|
*
|
|
* @var bool
|
|
*/
|
|
private $_isWatermark;
|
|
|
|
|
|
/**
|
|
* Create a new Image
|
|
*
|
|
* @param string $src
|
|
* @param mixed $style
|
|
* @param bool $isWatermark
|
|
* @throws InvalidImageException|UnsupportedImageTypeException
|
|
*/
|
|
public function __construct($src, $style = null, $isWatermark = false)
|
|
{
|
|
$supportedImageTypes = array(IMAGETYPE_JPEG, IMAGETYPE_GIF, IMAGETYPE_PNG, IMAGETYPE_BMP, IMAGETYPE_TIFF_II, IMAGETYPE_TIFF_MM);
|
|
|
|
if (!file_exists($src)) {
|
|
throw new InvalidImageException;
|
|
}
|
|
|
|
if (!in_array(exif_imagetype($src), $supportedImageTypes)) {
|
|
throw new UnsupportedImageTypeException;
|
|
}
|
|
|
|
$this->_src = $src;
|
|
$this->_isWatermark = $isWatermark;
|
|
$this->_style = new PhpOffice\PhpWord\Style\Image();
|
|
|
|
if (!is_null($style) && is_array($style)) {
|
|
foreach ($style as $key => $value) {
|
|
if (substr($key, 0, 1) != '_') {
|
|
$key = '_' . $key;
|
|
}
|
|
$this->_style->setStyleValue($key, $value);
|
|
}
|
|
}
|
|
|
|
if (isset($style['wrappingStyle'])) {
|
|
$this->_style->setWrappingStyle($style['wrappingStyle']);
|
|
}
|
|
|
|
if ($this->_style->getWidth() == null && $this->_style->getHeight() == null) {
|
|
$imgData = getimagesize($this->_src);
|
|
$this->_style->setWidth($imgData[0]);
|
|
$this->_style->setHeight($imgData[1]);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get Image style
|
|
*
|
|
* @return PhpOffice\PhpWord\Style\Image
|
|
*/
|
|
public function getStyle()
|
|
{
|
|
return $this->_style;
|
|
}
|
|
|
|
/**
|
|
* Get Image Relation ID
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getRelationId()
|
|
{
|
|
return $this->_rId;
|
|
}
|
|
|
|
/**
|
|
* Set Image Relation ID
|
|
*
|
|
* @param int $rId
|
|
*/
|
|
public function setRelationId($rId)
|
|
{
|
|
$this->_rId = $rId;
|
|
}
|
|
|
|
/**
|
|
* Get Image Source
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getSource()
|
|
{
|
|
return $this->_src;
|
|
}
|
|
|
|
/**
|
|
* Get Image Media ID
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getMediaId()
|
|
{
|
|
return md5($this->_src);
|
|
}
|
|
|
|
/**
|
|
* Get IsWatermark
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getIsWatermark()
|
|
{
|
|
return $this->_isWatermark;
|
|
}
|
|
|
|
/**
|
|
* Set IsWatermark
|
|
*
|
|
* @param bool $pValue
|
|
*/
|
|
public function setIsWatermark($pValue)
|
|
{
|
|
$this->_isWatermark = $pValue;
|
|
}
|
|
}
|