使用c#下载并保存图像

download and save image using c#

我从维基百科生成了三张图片api.Now我想将它们存储在我当前的目录中。使用以下代码,我可以使用 name.But 成功创建文件夹,它只保存一张图像,最后一张。我正在尝试很多。但是无法解决如何相应地保存三张图片

      public static void Load_Image1(string name1, string name2, string name3,string LocationName)
    {
        var startPath = Application.StartupPath;
        string Imagefolder = Path.Combine(startPath, "Image");
        string subImageFolder = Path.Combine(Imagefolder, LocationName);
        System.IO.Directory.CreateDirectory(subImageFolder);
        //string Jpeg = Path.Combine(Environment.CurrentDirectory, subImageFolder);

        List<PictureBox> pictureBoxes = new List<PictureBox>();
        pictureBoxes.Add(Image1);
        pictureBoxes.Add(Image2);
        pictureBoxes.Add(Image3);

        using (var wc = new System.Net.WebClient())
        {
            var uri = ("https://en.wikipedia.org/w/api.php?action=query&prop=imageinfo&format=json&iiprop=url&iiurlwidth=400&titles="+name1+"|"+name2+"|"+name3);
            var response = wc.DownloadString(new Uri(uri));
            var responseJson = JsonConvert.DeserializeObject<RootObject>(response);

            List<string> urls = new List<string>();
            foreach (KeyValuePair<string, Pageval> entry in responseJson.query.pages)
            {
                var url = entry.Value.imageinfo.First().thumburl;
                urls.Add(url);
                var hash = uri.GetHashCode();
                string Jpeg = Path.Combine(Environment.CurrentDirectory, subImageFolder);
                var path = Path.Combine(Jpeg, hash.ToString("X") + ".jpg");
                wc.DownloadFile(url, path);

            }

            for (int i = 0; i < pictureBoxes.Count; i++)
            {
                Image1.SizeMode = PictureBoxSizeMode.StretchImage;
                Image2.SizeMode = PictureBoxSizeMode.StretchImage;
                Image3.SizeMode = PictureBoxSizeMode.StretchImage;
                pictureBoxes[i].Load(urls[i]);

                var hash = uri.GetHashCode();
                string Jpeg = Path.Combine(Environment.CurrentDirectory, subImageFolder);
                var path = Path.Combine(Jpeg, hash.ToString("X") + ".jpg");
                wc.DownloadFile(urls[i], path);

            }

        }
    }
}

您正在将所有图像下载到磁盘上的同一文件名 - 导致前两个图像被最后一个图像覆盖。 问题是你的基本文件名是基于

var hash = uri.GetHashCode();

这个 returns 相同的值,因为它基于所有 3 张图像的 url。 更改为:

var hash = url.GetHashCode();

您实际上保存了所有图片,但名称相同,这就是为什么只有最后一张保留在文件系统中(您不断覆盖图像)。你应该在你的变量路径中使用一个唯一的标识符,这样你就可以区分图像,用不同的名称保存它们以避免覆盖

 public static void Load_Image1(string name1, string name2, string name3,string LocationName)
{
    var startPath = Application.StartupPath;
    string Imagefolder = Path.Combine(startPath, "Image");
    string subImageFolder = Path.Combine(Imagefolder, LocationName);
    System.IO.Directory.CreateDirectory(subImageFolder);
    //string Jpeg = Path.Combine(Environment.CurrentDirectory, subImageFolder);

    List<PictureBox> pictureBoxes = new List<PictureBox>();
    pictureBoxes.Add(Image1);
    pictureBoxes.Add(Image2);
    pictureBoxes.Add(Image3);

    using (var wc = new System.Net.WebClient())
    {
        var uri = ("https://en.wikipedia.org/w/api.php?action=query&prop=imageinfo&format=json&iiprop=url&iiurlwidth=400&titles="+name1+"|"+name2+"|"+name3);
        var response = wc.DownloadString(new Uri(uri));
        var responseJson = JsonConvert.DeserializeObject<RootObject>(response);

        List<string> urls = new List<string>();
        foreach (KeyValuePair<string, Pageval> entry in responseJson.query.pages)
        {
            var url = entry.Value.imageinfo.First().thumburl;
            urls.Add(url);
            var hash = url.GetHashCode();
            string Jpeg = Path.Combine(Environment.CurrentDirectory, subImageFolder);
            var path = Path.Combine(Jpeg, hash.ToString("X") + ".jpg");
            wc.DownloadFile(url, path);

        }

        for (int i = 0; i < pictureBoxes.Count; i++)
        {
            Image1.SizeMode = PictureBoxSizeMode.StretchImage;
            Image2.SizeMode = PictureBoxSizeMode.StretchImage;
            Image3.SizeMode = PictureBoxSizeMode.StretchImage;
            pictureBoxes[i].Load(urls[i]);



          }

       }
    }
 }