I'm using a simple template in wordml that my simple program populates
with some data and images at run-time.
Now my problem is that images can change own sizes, and I don't know
them until run-time.
I can't find any way in WordML to tell Word to use auto re-size or
100%.
When I open with Word 2003, it seems that Word can't recognize auto or
100% and open image with very little scale.
At run-time i substitute @@@IMAGEPATH@@@ with current path. I generate
multiple doc with multiple images.
Anyone can help me?
My template (simplified) is:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<w:wordDocument
xmlns:w="
http://schemas.microsoft.com/office/word/2003/wordml"
xmlns:v="urn:schemas-microsoft-com:vml" >
<w:body>
<w:p>
<w:r>
<w:pict>
<v:shape id="_x0000_i1025"
style="width:auto;height:auto">
<v:imagedata src="@@@IMAGEPATH@@@"/>
</v:shape>
</w:pict>
</w:r>
</w:p>
</w:body>
</w:wordDocument>