如何在LocalStorage中保存图像?

时间:2015-04-15 19:14:54

标签: c# xaml windows-phone-8.1

我创建了这张图片'my'

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

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

我需要在LocalStorage中保存图像。我该怎么办?

1 个答案:

答案 0 :(得分:0)

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

这是通过位图在本地存储图像的最佳方式。