CR的代码文本

all for learning about the world
  订阅 订阅  :: 管理

2013年11月25日

摘要: // Read byte[] from png fileBinaryReader binReader = new BinaryReader(File.Open(filepath, FileMode.Open));FileInfo fileInfo = new FileInfo(filepath);byte[] bytes = binReader.ReadBytes((int)fileInfo.Length);binReader.Close();// Init bitmapBitmapImage bitmap = new BitmapImage();bitmap.BeginInit();//bi 阅读全文

posted @ 2013-11-25 15:32 mumuliang 阅读(542) 评论(0) 推荐(0) 编辑