I am stuck with the following task:
I am generating a WordML data via xsl. And it works perfectly.
But the problem occurs when I want to insert a .svg file's filepath in it - it simply doesn't show the image! If I use a filepath for a image data of type .png or .gif, it functions fine and shows the image. But only in case of .svg I can't figure out the problem.
<w:p wsp:rsidR="004B3424" wsp:rsidRDefault="004B3424">
<w:r>
<w:pict>
<v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
<v:stroke joinstyle="miter"/>
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
<v:f eqn="sum @0 1 0"/>
<v:f eqn="sum 0 0 @1"/>
<v:f eqn="prod @2 1 2"/>
<v:f eqn="prod @3 21600 pixelWidth"/>
<v:f eqn="prod @3 21600 pixelHeight"/>
<v:f eqn="sum @0 0 1"/>
<v:f eqn="prod @6 1 2"/>
<v:f eqn="prod @7 21600 pixelWidth"/>
<v:f eqn="sum @8 21600 0"/>
<v:f eqn="prod @7 21600 pixelHeight"/>
<v:f eqn="sum @10 21600 0"/>
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
<o:lock v:ext="edit" aspectratio="t"/>
</v:shapetype>
<v:shape id="_x0000_i1025" type="#_x0000_t75" style="width:453pt;height:102.75pt">
<v:imagedata src="diagramspec.gif"/>
</v:shape>
</w:pict>
</w:r>
</w:p>
this is the part with .gif file.
Any suggestion?
Thanks. Jasmin