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

link|improve this question
Are you sure Word supports SVG? I wasn't aware it did. You might be able to do it with the old Adobe plugin installed - not sure if that still works. SVG is just XML - it has to be read by something that understands and supports it. – Russell Leggett May 4 '11 at 13:55
@Russell Leggett : Yeah, I considered that. So I installed svgview on my computer ... and now when I drag and drop a .svg, I can see the image and even move it around or expand it - which I wasn't able to do before. And when I look at the xml code of the word holding the .svg image, I see that a link is built to the svgview: like <o:OLEObject Type="Embed" ProgID="Adobe.SVGCtl.3" ShapeID="_x0000_i1025" DrawAspect="Content" ObjectID="_1366023371"> <o:WordFieldCodes>\s</o:WordFieldCodes> </o:OLEObject> – Jasmin May 4 '11 at 14:11
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.