public static Bitmap Base64ToImg(string strBase64)
{
byte[] bt = Convert.FromBase64String(strBase64);
System.IO.MemoryStream stream = new System.IO.MemoryStream(bt);
Bitmap bitmap = new Bitmap(stream);
return bitmap;
}
734

被折叠的 条评论
为什么被折叠?



