我创建了这张图片'my'
BitmapImage bImage = new BitmapImage();
bImage.UriSource = new Uri(muss.Immagine, UriKind.Relative);
Image my = new Image();
my.Source = bImage;
我需要在LocalStorage中保存图像。我该怎么办?
答案 0 :(得分:0)
bitmap.Save("C:/Users/folderName/imageName.jpeg");
这是通过位图在本地存储图像的最佳方式。