我正在使用从Web服务获取其数据的网站。我们的Android开发人员给了我这样的Base64字符串。


  iVBORw0KGgoAAAANSUhEUgAAAKAAAAB4CAYAAAB1ovlvAAAABHNCSVQICAgIf。 。 。 。 。 。 。 。 。 。


我将此字符串保存到数据库中。我想知道如何将其转换为图像。

最佳答案

这是给您的解决方案

public Image Base64ToImage(string base64String)
{
  // Convert Base64 String to byte[]
  byte[] imageBytes = Convert.FromBase64String(base64String);
  MemoryStream ms = new MemoryStream(imageBytes, 0,imageBytes.Length);

  // Convert byte[] to Image
  ms.Write(imageBytes, 0, imageBytes.Length);
  Image image = Image.FromStream(ms, true);
  return image;
}

关于c# - 将base64转换为图像并在gridview中显示,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16059206/

10-10 15:51