日期:2014-05-20 浏览次数:20794 次
private void button1_Click(object sender, EventArgs e)
{
WebClient wc=new WebClient();
wc.DownloadFile("http://www.baidu.com/img/baidu_sylogo1.gif","temp");
Bitmap b = new Bitmap("temp");
MessageBox.Show(b.Height.ToString());
}