Replies: 1 comment 1 reply
-
There is no defined conversion process for the Other possibility, you could convert the HTML to After the conversion, you can query the SvgDocument, for the foreign tags as |
Beta Was this translation helpful? Give feedback.
-
hi,
I am using FileSvgConverter to convert my svg file to axml, my svg file content as below:
<svg viewBox="500 500 "> <foreignObject> <text x="0" y="15" fill="red">I love SVG</text> </foreignObject> </svg>
it has a foreignObject tag that include html elements , and the converted xaml as below:
<DrawingGroup x:Name="_SvgDrawingLayer"> <DrawingGroup.ClipGeometry> <RectangleGeometry Rect="0,0,500,500" /> </DrawingGroup.ClipGeometry> </DrawingGroup>
so I can't get the html content in xaml, is it possible to support the html tags?
Beta Was this translation helpful? Give feedback.
All reactions