But how could you live and have no story to tell!
访问统计 original graphics

//给数组赋值,这里用的是通过WebService返回的二进制数组
byte[] img = MyService.GetImg(textBox1.Text);

MemoryStream ms = new MemoryStream(img);
Bitmap bt = new Bitmap(ms);
pictureBox1.Image = Image.FromHbitmap(bt.GetHbitmap());

posted on 2007-11-26 19:13  nextsoft  阅读(347)  评论(0编辑  收藏  举报