简体   繁体   English

将 Base64 字符串转换为图片框

[英]Converting Base64 String to PictureBox

Im able to convert an image into Base64.我能够将image转换为 Base64。 But now im trying to convert it back and store it in a PictureBox但现在我试图将其转换回来并将其存储在一个PictureBox

var pic = Convert.FromBase64String(product.Picture);

using (System.Drawing.Image image = System.Drawing.Image.FromStream(new System.IO.MemoryStream(pic)))
{ 
      //NOT SURE WHAT TO DO HERE
      pictureBox1.Image =????;
}

Edit 1;编辑 1; Firstly Thanks to everyone, i have tried all the solutions below and they all work.首先感谢大家,我已经尝试了以下所有解决方案,它们都有效。 But i have multiple images, What if there is no image in Poduct.Picture ?但是我有多个图像,如果Poduct.Picture没有图像Poduct.Picture办?

Try to use something like:尝试使用类似的东西:

using (MemoryStream ms = new MemoryStream(pic))
{
     pictureBox1.Image = Image.FromStream(ms);
}
 // Convert base 64 string to byte[]
byte[] imageBytes = Convert.FromBase64String(base64String);
// Convert byte[] to Image
using (var ms = new MemoryStream(imageBytes, 0, imageBytes.Length))
{
    pictureBox1.Image = Image.FromStream(ms, true);
}

just do it like this:只是这样做:

var pic = Convert.FromBase64String(product.Picture);

using (System.Drawing.Image image = System.Drawing.Image.FromStream(new  System.IO.MemoryStream(pic)))
{ 
  //NOT SURE WHAT TO DO HERE
  pictureBox1.Image =image;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM