//调
public Bitmap Base64toImage(string Strbase64)
{
byte[] byDep = Convert.FromBase64String(Strbase64);
MemoryStream msDep = new MemoryStream(byDep);
Bitmap bitDep = new Bitmap(msDep);
return bitDep;
}
Base64toImage
最新推荐文章于 2024-08-11 12:00:00 发布