如何从网址下载图片


103

如果链接末尾没有图像格式,是否可以从c#中的URL直接下载图像?网址示例:

https://fbcdn-sphotos-h-a.akamaihd.net/hphotos-ak-xpf1/v/t34.0-12/10555140_10201501435212873_1318258071_n.jpg?oh=97ebc03895b7acee9aebbde7d6b002bf&oe=53C9ABB0&__gda__=1405685729_110e04e71d969d392b63b27ec4f4b24a

当网址以图片格式结尾时,我知道如何下载图片。例如:

http://img1.wikia.nocookie.net/__cb20101219155130/uncyclopedia/images/7/70/Facebooklogin.png

Answers:


134

只需 使用以下方法即可。

using (WebClient client = new WebClient()) 
{
    client.DownloadFile(new Uri(url), @"c:\temp\image35.png");
    // OR 
    client.DownloadFileAsync(new Uri(url), @"c:\temp\image35.png");
}

这些方法与DownloadString(..)和DownloadStringAsync(...)几乎相同。他们将文件存储在目录中,而不是C#字符串中,并且不需要URi中的格式扩展名

如果您不知道图像的格式(.png,.jpeg等)

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();
}

使用它

try
{
    SaveImage("--- Any Image Path ---", ImageFormat.Png)
}
catch(ExternalException)
{
    // Something is wrong with Format -- Maybe required Format is not 
    // applicable here
}
catch(ArgumentNullException)
{   
    // Something wrong with Stream
}

4
@Arsman Ahmad这是一个完全不同的问题,应该在其他地方查找或询问。该线程用于下载单个图像。
AzNjoE

79

根据您是否知道图像格式,可以通过以下方法进行操作:

将图像下载到文件,知道图像格式

using (WebClient webClient = new WebClient()) 
{
   webClient.DownloadFile("http://yoururl.com/image.png", "image.png") ; 
}

在不知道图像格式的情况下将图像下载到文件

您可以使用它Image.FromStream来加载任何常见的位图(jpg,png,bmp,gif,...),它会自动检测文件类型,您甚至不需要检查url扩展名(这不是很好)实践)。例如:

using (WebClient webClient = new WebClient()) 
{
    byte [] data = webClient.DownloadData("https://fbcdn-sphotos-h-a.akamaihd.net/hphotos-ak-xpf1/v/t34.0-12/10555140_10201501435212873_1318258071_n.jpg?oh=97ebc03895b7acee9aebbde7d6b002bf&oe=53C9ABB0&__gda__=1405685729_110e04e71d9");

   using (MemoryStream mem = new MemoryStream(data)) 
   {
       using (var yourImage = Image.FromStream(mem)) 
       { 
          // If you want it as Png
           yourImage.Save("path_to_your_file.png", ImageFormat.Png) ; 

          // If you want it as Jpeg
           yourImage.Save("path_to_your_file.jpg", ImageFormat.Jpeg) ; 
       }
   } 

}

注意:Image.FromStream如果下载的内容不是已知的图像类型,则可能引发ArgumentException 。

在MSDN上检查此参考,以找到所有可用格式。这里是WebClient和的参考Bitmap


2
请注意,您需要“使用System.Drawing;”。for Image.FromStream()
dlchambers

3
请注意,除了让图像库检测图像格式外,您还可以查看响应标头,查看源认为图像使用的格式webClient.ResponseHeaders["Content-Type"]
bikeman868

与将压缩的图像扩展为未压缩的Bitmap对象相比,这也将大大提高内存效率,并使您可以使用原始压缩等将图像保存为原始格式
。– bikeman868

20

对于任何想要下载图像而不将其保存到文件的人:

Image DownloadImage(string fromUrl)
{
    using (System.Net.WebClient webClient = new System.Net.WebClient())
    {
        using (Stream stream = webClient.OpenRead(fromUrl))
        {
            return Image.FromStream(stream);
        }
    }
}

10

不必用于System.Drawing在URI中查找图像格式。除非您下载System.Drawing.Common NuGet包System.Drawing.NET Core否则此功能不可用,,因此,我看不到此问题的任何跨平台的好答案。

另外,System.Net.WebClient由于Microsoft明确禁止使用System.Net.WebClient,因此我的示例没有使用。

我们不建议您将该WebClient类用于新开发。而是使用System.Net.Http.HttpClient类。

下载图像并将其写入文件而无需扩展名(跨平台)*

*没有旧System.Net.WebClientSystem.Drawing

此方法将使用异步下载图片(或只要URI具有文件扩展名的任何文件)System.Net.Http.HttpClient,然后使用与URI中图片相同的文件扩展名将其写入文件。

获取文件扩展名

获取文件扩展名的第一步是从URI中删除所有不必要的部分。
我们使用Uri.GetLeftPart()与UriPartial.Path得到一切从SchemePath
换句话说,https://www.example.com/image.png?query&with.dots成为https://www.example.com/image.png

之后,我们使用Path.GetExtension()仅获取扩展名(在我的上一个示例中.png)。

var uriWithoutQuery = uri.GetLeftPart(UriPartial.Path);
var fileExtension = Path.GetExtension(uriWithoutQuery);

下载图像

从这里开始应该是直截了当的。使用HttpClient.GetByteArrayAsync下载图像,创建路径,确保目录存在,然后使用File.WriteAllBytesAsync()将字节写入路径(File.WriteAllBytes如果您使用的是.NET Framework)

private async Task DownloadImageAsync(string directoryPath, string fileName, Uri uri)
{
    using var httpClient = new HttpClient();

    // Get the file extension
    var uriWithoutQuery = uri.GetLeftPart(UriPartial.Path);
    var fileExtension = Path.GetExtension(uriWithoutQuery);

    // Create file path and ensure directory exists
    var path = Path.Combine(directoryPath, $"{fileName}{fileExtension}");
    Directory.CreateDirectory(directoryPath);

    // Download the image and write to the file
    var imageBytes = await _httpClient.GetByteArrayAsync(uri);
    await File.WriteAllBytesAsync(path, imageBytes);
}

请注意,您需要以下using指令。

using System;
using System.IO;
using System.Threading.Tasks;
using System.Net.Http;

用法示例

var folder = "images";
var fileName = "test";
var url = "https://cdn.discordapp.com/attachments/458291463663386646/592779619212460054/Screenshot_20190624-201411.jpg?query&with.dots";

await DownloadImageAsync(folder, fileName, new Uri(url));

笔记

  • HttpClient为每个方法调用创建一个新的方法是不好的做法。应该在整个应用程序中重用它。我写了一个简短的示例ImageDownloader(50行),其中包含更多文档,可以正确重用HttpClient和正确处理它,您可以在这里找到。

5

.net Framework允许PictureBox控件从url加载图像

并在Laod Complete Event中保存图像

protected void LoadImage() {
 pictureBox1.ImageLocation = "PROXY_URL;}

void pictureBox1_LoadCompleted(object sender, AsyncCompletedEventArgs e) {
   pictureBox1.Image.Save(destination); }

4

试试这个对我有用

写在你的控制器

public class DemoController: Controller

        public async Task<FileStreamResult> GetLogoImage(string logoimage)
        {
            string str = "" ;
            var filePath = Server.MapPath("~/App_Data/" + SubfolderName);//If subfolder exist otherwise leave.
            // DirectoryInfo dir = new DirectoryInfo(filePath);
            string[] filePaths = Directory.GetFiles(@filePath, "*.*");
            foreach (var fileTemp in filePaths)
            {
                  str= fileTemp.ToString();
            }
                return File(new MemoryStream(System.IO.File.ReadAllBytes(str)), System.Web.MimeMapping.GetMimeMapping(str), Path.GetFileName(str));
        }

这是我的看法

<div><a href="/DemoController/GetLogoImage?Type=Logo" target="_blank">Download Logo</a></div>

1

我发现的大多数帖子在第二次迭代后都会超时。特别是如果您像一堆图片一样循环浏览。因此,为了改善上述建议,这里是整个方法:

public System.Drawing.Image DownloadImage(string imageUrl)
    {
        System.Drawing.Image image = null;

        try
        {
            System.Net.HttpWebRequest webRequest = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(imageUrl);
            webRequest.AllowWriteStreamBuffering = true;
            webRequest.Timeout = 30000;
            webRequest.ServicePoint.ConnectionLeaseTimeout = 5000;
            webRequest.ServicePoint.MaxIdleTime = 5000;

            using (System.Net.WebResponse webResponse = webRequest.GetResponse())
            {

                using (System.IO.Stream stream = webResponse.GetResponseStream())
                {
                    image = System.Drawing.Image.FromStream(stream);
                }
            }

            webRequest.ServicePoint.CloseConnectionGroup(webRequest.ConnectionGroupName);
            webRequest = null; 
        }
        catch (Exception ex)
        {
            throw new Exception(ex.Message, ex);

        }


        return image;
    }
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.