WMF graphics are not displaying the PDF output. When viewing the FO output, I see it specified but the images does not display in the PDF. Are WMF/Vector images supported in Aspose.PDF?
The following is a snippet of the stylesheet that specifies the WMF graphic:
<xsl:template match="path">
<fo:block xsl:use-attribute-sets="NavigationPathSpacing">
<fo:table xsl:use-attribute-sets="Table">
<fo:table-column column-number="1" column-width="20mm"/>
<fo:table-column column-number="2"/>
<fo:table-body>
<fo:table-row xsl:use-attribute-sets="TableRow">
<fo:table-cell>
<fo:external-graphic src="http://we4kmstg01/kmss_images/current/en-us/327050b9-b183-4b54-91c6-1e2cd7f6957a/e79d0c34-73a9-4a41-9b00-1f8a3bdb93e6/1dadd92f-15c3-4839-8d7c-2bdb7751078c.wmf"/>
</fo:table-cell>
<fo:table-cell>
<fo:block xsl:use-attribute-sets="NavigationArrowSpacing">
<xsl:apply-templates select="navigation"/>
</fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
</fo:block>
</xsl:template>
The following is a snippet of the FO output that specifies the WMF graphic:
<fo:table-cell>
<fo:external-graphic src="http://we4kmstg01/kmss_images/current/en-us/327050b9-b183-4b54-91c6-1e2cd7f6957a/e79d0c34-73a9-4a41-9b00-1f8a3bdb93e6/1dadd92f-15c3-4839-8d7c-2bdb7751078c.wmf" />
</fo:table-cell>