Hi,
I create documents with dynamic content, including images.
Some images don't have the same size. I would like to stretch them.
After a manual stretch through Word, I see the following change in document.xml :
Before stretch (default image size)
<w:drawing>
<wp:inline distT="0" distB="0" distL="0" distR="0">
<wp:extent cx="2314057" cy="666750"/>
<wp:effectExtent l="19050" t="0" r="0" b="0"/>
...
<pic:spPr><a:xfrm><a:off x="0" y="0"/>
<a:ext cx="2360591" cy="680158"/></a:xfrm>
After stretch
<w:drawing><wp:inline distT="0" distB="0" distL="0" distR="0">
<wp:extent cx="2776868" cy="800100"/>
<wp:effectExtent l="19050" t="0" r="4432" b="0"/>
...
<pic:spPr><a:xfrm><a:off x="0" y="0"/>
<a:ext cx="2832709" cy="816190"/></a:xfrm>
Word seems to have change right property of effectExtent. But I have no clue on what value to put in
the cx and cy
Any idea ?