摘要:private Byte[] Image2Bytes(string imagefilename) { System.IO.FileStream stream = new System.IO.FileStream(imagefilename, System.IO.FileMode.OpenOrCreate); byte[] bytes = new byte[stream.Length]; if (s...
阅读全文
03 2009 档案
摘要:private Byte[] Image2Bytes(string imagefilename) { System.IO.FileStream stream = new System.IO.FileStream(imagefilename, System.IO.FileMode.OpenOrCreate); byte[] bytes = new byte[stream.Length]; if (s...
阅读全文
|