是否从winform图片框中的url加载的图像存储在缓存中?

时间:2012-12-28 15:55:06

标签: winforms caching picturebox

在winform应用程序的表单中,我必须显示存储在webserver上的图像(多个图像)。显示图像没有问题,因为我可以简单地将URL分配给图片框。

picturebox1.ImageLocation = "http://example.com/Image.jpg";

该表单将多次打开,现在每次打开表单,每次都会下载图像。没有必要增加流量。

是否可以告诉picturebox缓存图像(如浏览器那样),因此下次请求相同的图像时,它应该快速加载。 这可能吗?

3 个答案:

答案 0 :(得分:2)


预加载图像 Image img = Image.FromFile("...");

然后你可以将图像提供给PictureBox:
pictureBox1.Image = img;

答案 1 :(得分:0)

您可以将图像存储在临时文件夹中,并在打开表单时首先检查文件夹的临时文件。

答案 2 :(得分:0)

尝试这种方式:

首先创建一个函数来检查文件是否存在。如果存在,则只需从本地路径加载文件,否则从URL下载文件并将其存储在本地。

//Function to validate the local cache file

    private Image load_image()
    {
       Image img=null;
        if(!(File.Exists(@"d:\samp.png")))
        {
            using (HttpClient httpclient= new HttpClient())
            {
                var response = httpclient.GetAsync(@"https://i.imgur.com/Jb6lTp1.png");
                if (!response.Result.IsSuccessStatusCode)
                {
                    return img;
                }
                using (var fs= new FileStream(@"d:\samp.png",FileMode.CreateNew))
                {
                    response.Result.Content.CopyToAsync(fs);
                }
              
            }
        }
        img = Image.FromFile(@"d:\samp.png");
       return img;
    }
 
 //calling the function of click event

    private void button1_Click(object sender, EventArgs e)
    {
        pictureBox1.Image = load_image();
        pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage;
    }