摘要: public static byte[] BitmapToBytes(Bitmap Bitmap) { MemoryStream ms = null; try { ms = new MemoryStream(); Bitmap.Save(ms, Bitmap.RawFormat); byte[] byteImage = new Byte[ms.Length]; byteImage = ms... 阅读全文
posted @ 2012-05-02 11:41 kerry.lin 阅读(140) 评论(0) 推荐(0) 编辑