图片是 www.google.com/images/a.jpg. 实际物理路径不知道。
我想对其编辑保存怎么处理?

解决方案 »

  1.   

    原来是这样的:
    filepath=“d:\images\a.jpg”  物理路径,
     Bitmap b = new Bitmap(filePath);我现在想:
    url="www.xxx.com/images/a.jpg";然后弄成bitmap .请高手指点下,最后有点源码。
      

  2.   

      WebClient web = new WebClient();
      byte []buff= web.DownloadData("http://www.xxx.com/images/a.jpg");
      web.Dispose();
      System.IO.MemoryStream ms = new System.IO.MemoryStream(buff);
      Bitmap bmp = new Bitmap(ms);