60 lines
1.8 KiB
PHP
Raw Normal View History

<?php
/**
* This file is part of PHPWord - A pure PHP library for reading and writing
* word processing documents.
*
* PHPWord is free software distributed under the terms of the GNU Lesser
* General Public License version 3 as published by the Free Software Foundation.
*
* For the full copyright and license information, please read the LICENSE
* file that was distributed with this source code. For the full list of
* contributors, visit https://github.com/PHPOffice/PHPWord/contributors.
*
* @link https://github.com/PHPOffice/PHPWord
* @copyright 2010-2014 PHPWord contributors
2014-05-04 21:03:28 +04:00
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
*/
namespace PhpOffice\PhpWord\Writer\HTML\Element;
use PhpOffice\PhpWord\Element\Image as ImageElement;
2014-04-26 11:14:27 +07:00
use PhpOffice\PhpWord\Writer\HTML\Style\Image as ImageStyleWriter;
/**
* Image element HTML writer
*
* @since 0.10.0
*/
class Image extends Text
{
/**
* Write image
*
* @return string
*/
public function write()
{
2014-05-15 14:41:08 +07:00
if (!$this->element instanceof ImageElement) {
return '';
2014-05-11 19:41:48 +07:00
}
/** @var \PhpOffice\PhpWord\Writer\HTML $parentWriter Type hint */
2014-05-12 14:24:13 +07:00
$parentWriter = $this->parentWriter;
2014-05-11 19:41:48 +07:00
$content = '';
2014-05-12 14:24:13 +07:00
if (!$parentWriter->isPdf()) {
2014-05-23 18:32:56 +07:00
$imageData = $this->element->getImageStringData(true);
if ($imageData !== null) {
2014-04-26 11:14:27 +07:00
$styleWriter = new ImageStyleWriter($this->element->getStyle());
$style = $styleWriter->write();
2014-05-23 18:32:56 +07:00
$imageData = 'data:' . $this->element->getImageType() . ';base64,' . $imageData;
2014-04-26 11:14:27 +07:00
$content .= $this->writeOpening();
$content .= "<img border=\"0\" style=\"{$style}\" src=\"{$imageData}\"/>";
$content .= $this->writeClosing();
}
}
return $content;
}
}