41 lines
822 B
PHP
Raw Normal View History

2014-04-26 11:14:27 +07:00
<?php
/**
* PHPWord
*
* @link https://github.com/PHPOffice/PHPWord
* @copyright 2014 PHPWord
2014-05-04 21:03:28 +04:00
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
2014-04-26 11:14:27 +07:00
*/
namespace PhpOffice\PhpWord\Writer\HTML\Style;
/**
* Paragraph style HTML writer
*
* @since 0.10.0
*/
class Image extends AbstractStyle
{
/**
* Write style
*
* @return string
*/
public function write()
{
if (!($this->style instanceof \PhpOffice\PhpWord\Style\Image)) {
return;
}
2014-04-26 11:14:27 +07:00
$css = array();
if ($this->style->getWidth()) {
$css['width'] = $this->style->getWidth() . 'px';
}
if ($this->style->getWidth()) {
$css['height'] = $this->style->getHeight() . 'px';
}
return $this->assembleCss($css);
}
}