mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-13 03:26:26 +00:00
Merge pull request #221 from nendrew/develop
Check whether margin-left is set in excel file when reading
This commit is contained in:
@@ -1371,7 +1371,9 @@ class PHPExcel_Reader_Excel2007 extends PHPExcel_Reader_Abstract implements PHPE
|
||||
$hfImages[ (string)$shape['id'] ]->setResizeProportional(false);
|
||||
$hfImages[ (string)$shape['id'] ]->setWidth($style['width']);
|
||||
$hfImages[ (string)$shape['id'] ]->setHeight($style['height']);
|
||||
$hfImages[ (string)$shape['id'] ]->setOffsetX($style['margin-left']);
|
||||
if (isset($style['margin-left'])) {
|
||||
$hfImages[ (string)$shape['id'] ]->setOffsetX($style['margin-left']);
|
||||
}
|
||||
$hfImages[ (string)$shape['id'] ]->setOffsetY($style['margin-top']);
|
||||
$hfImages[ (string)$shape['id'] ]->setResizeProportional(true);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user