I am trying to convert a Bit map image in my windows 8 app (C#), to a string or a regular jpeg.
I am doing thins because I am trying to print the image in some html.
The image is stored in variable itemImage
.
When I try to print in in the HTML using the image tag it doesn't show up.
"<img src=" +itemImage + "/>"
When I print in in the html in shows up as Windows.UI.Xaml.Media.Imaging.BitmapImage
How do I show the Image in the html?