如何检索在 Windows Azure 中存储为 Base64String 的图像?我知道如何在 Windows Azure 中将图像保存为 Base64String,但我不知道如何检索它。
将数据作为 Base64String 保存到 Windows Azure 存储:
private MemoryStream str;
str = new MemoryStream();
WriteableBitmap wb;
wb = new WriteableBitmap(bmp);
wb.SaveJpeg(str, bmp.PixelWidth, bmp.PixelHeight, 0, 100);
Item item = new Item { ImageString = System.Convert.ToBase64String(str.ToArray()) };
App.MobileService.GetTable<Item>().InsertAsync(item);
班级:
public class Item
{
public int Id { get; set; }
public string ImageString { get; set; }
}