如何将Bitmap对象转换成字符串_百度知道
如何将Bitmap对象转换成字符串Bitmap bmp = new Bitmap(@"d:\a.jpg");System.IO.MemoryStream ms = new System.IO.MemoryStream();bmp.Save(...
将字符串转换成Bitmap类型 或者 将Bitmap转换成字符串
public static Bitmap stringtoBitmap(String string) { // 将字符串转换成Bitmap类型 Bitmap bitmap = null; try { byte[] bitmapArray; bitmapArray = Base64...