Hello, I am using the advanced 6.5 version of the license and I have a problem that happens with some images. I use the addImage method with width = 288 and height = 216 but some images appear larger in the docx I generate.
This image: https://dev-or.s3.amazonaws.com/dev/Slide/9379/iconlist.jpg?1331844575 works well
This image: https://dev-or.s3.amazonaws.com/dev/Slide/9380/iconlist.jpg?1331844575 works bad.
I download images to a temporary path before using it.
$thumb = array('src' => "/var/tmp/image.jpg", 'imageAlign' => 'center', 'height' => 216, 'width' => 288);
$docx->addImage($thumb);
Any idea what's going on?
Thank you.