Home > other >  Loading an embedded resource SVG image wont appear
Loading an embedded resource SVG image wont appear

Time:02-02

Loading an embedded resource PNG image into any view works fine, but when i try to load an embedded resource SVG image it wont appear any reasons why !

this code works fine

 Image devimage= new Image() { Source = ImageSource.FromResource("DOTFORMS3.Icons.developers.png") };

but this code wont make the svg image appears

Image devimage= new Image() { Source = ImageSource.FromResource("DOTFORMS3.Icons.developers.svg") };

i even tried this code still nathing !

 SvgCachedImage devimage= new SvgCachedImage() { Source = ImageSource.FromResource("DOTFORMS3.Icons.developers.svg") };

CodePudding user response:

if you want to load an SVG, use SvgImageSource with SvgCachedImage

  •  Tags:  
  • Related