URLから画像をダウンロードする方法 質問する

URLから画像をダウンロードする方法 質問する

URL のリンクの最後に画像形式がない場合、C# で URL から直接画像をダウンロードする方法はありますか? 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

URL が画像形式で終わる場合に画像をダウンロードする方法を知っています。例:

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

ベストアンサー1

単に以下の方法を使用できます。

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 imageUrl, 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 URL---", "--- 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
}

おすすめ記事