getStyle(); if (!$style instanceof \PhpOffice\PhpWord\Style\Image) { return ''; } $css = []; $width = $style->getWidth(); $height = $style->getHeight(); $css['width'] = $this->getValueIf(is_numeric($width), $width . 'px'); $css['height'] = $this->getValueIf(is_numeric($height), $height . 'px'); return $this->assembleCss($css); } }