111,126
社区成员
发帖
与我相关
我的任务
分享
String xxx = Convert.ToBase64String(System.IO.File.ReadAllBytes("path"));
byte[] path = Convert.FromBase64String(xxx);
using (MemoryStream ms = new MemoryStream(path))
{
Image outputImg = Image.FromStream(ms);
}