This might sound simple but I'v noticed that it's not to me! I want to save a simple jpg or other format image from internet to hard drive. I use the following code to get an image from the net. How do I save it to HDD ?
BitmapImage posterBitmap = new BitmapImage(new Uri(imageLocationOnNet, UriKind.Absolute));
I'd appreciate lot if someone could give me a simple code example and explain how it works.
Preferably in C# and Windows Universal App compatible, thank you.
EDIT. I'm also interested to know if it is possible to convert BitmapImage to JSON and read it back from there?