How Download Full size image from Google using c#

时间:2018-07-25 05:11:55

标签: c# image

Please help to find and download How Download Full size image from Google search using c#

1 个答案:

答案 0 :(得分:1)

public void SaveImage(string filename, ImageFormat format) {

    WebClient client = new WebClient();
    Stream stream = client.OpenRead(imageUrl);
    Bitmap bitmap;  bitmap = new Bitmap(stream);

    if (bitmap != null) 
      bitmap.Save(filename, format);

    stream.Flush();
    stream.Close();
    client.Dispose();
}