摘要: public class ImageHelper { /// <summary> /// 将Bitmap图片转换成byte字节数组 /// </summary> /// <param name="bmp"></param> /// <returns></returns> public static byte[] BitmapToBytes(Bitmap bmp) { MemoryStream ms = new MemoryStream(); bmp... 阅读全文
posted @ 2012-06-11 17:00 stone87654321 阅读(1312) 评论(1) 推荐(0) 编辑