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?
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?
bitmap.Save("C:/Users/folderName/imageName.jpeg");
This is the best way to store image locally in your folder by bitmap.