0

I created this image 'my'

BitmapImage bImage = new BitmapImage();
bImage.UriSource = new Uri(muss.Immagine, UriKind.Relative);

Image my = new Image();
my.Source = bImage;

I need to save the image in LocalStorage. how could I do?

G111
  • 29
  • 7
  • possible duplicate of [Saving and loading an image from localStorage](http://stackoverflow.com/questions/19158887/saving-and-loading-an-image-from-localstorage) – rom99 Apr 15 '15 at 19:21
  • I think you may find some help in [this answer](http://stackoverflow.com/a/24809020/2681948) ot [this one](http://stackoverflow.com/a/25995145/2681948). – Romasz Apr 15 '15 at 19:52

1 Answers1

0

bitmap.Save("C:/Users/folderName/imageName.jpeg");

This is the best way to store image locally in your folder by bitmap.

Alexan
  • 8,165
  • 14
  • 74
  • 101