2

在我们的应用程序中,基于一些输入数据,将呈现图像。图片是一些图表。作为我们测试自动化的一部分,我需要下载这些图表。

我只有图像源网址。如何从源下载图像并将其保存到磁盘。

我尝试使用不同的方法并能够下载文件。但是当我尝试打开文件时,收到一条消息说“不是有效的位图文件,或者它的格式目前不受支持。”

这是我的html

<div id="chart">
    <img id="c_12" src="Bonus/ModelChartImage?keys%5B0%5D=UKIrelandEBIT&values%5B0%5D=100&privacyModeServer=False&modelId=Bonus" alt="" usemap="#c_12ImageMap" style="height:300px;width:450px;border-width:0px;" />
<map name="c_12ImageMap" id="c_12ImageMap">

    <area shape="rect" coords="255,265,357,266" class="area-map-section" share="Core Bonus" alt="" />
    <area shape="rect" coords="128,43,229,265" class="area-map-section" share="Core Bonus" alt="" />
</map>    
</div> 
4

2 回答 2

3

找到了答案。我们必须根据您的请求从网站设置 cookie 容器。

public static Stream DownloadImageData(CookieContainer cookies, string siteURL)
{
    HttpWebRequest httpRequest = null;
    HttpWebResponse httpResponse = null;

    httpRequest = (HttpWebRequest)WebRequest.Create(siteURL);

    httpRequest.CookieContainer = cookies;
    httpRequest.AllowAutoRedirect = true;

    try
    {
        httpResponse = (HttpWebResponse)httpRequest.GetResponse();
        if (httpResponse.StatusCode == HttpStatusCode.OK)
        {
            var httpContentData = httpResponse.GetResponseStream();

            return httpContentData;
        }
        return null;
    }
    catch (WebException we)
    {
        return null;
    }
    finally
    {
        if (httpResponse != null)
        {
            httpResponse.Close();
        }
    }
}
于 2012-06-15T15:10:29.577 回答
3

从网站下载图像有很多方法(WebClient 类、HttpWebRequest、HttpClient 类,顺便说一句,其中新的HttpClient是最简单的方法)。

这是类 HttpClient 的示例:

HttpClient httpClient = new HttpClient();
Task<Stream> streamAsync = httpClient.GetStreamAsync("http://www.simedarby.com.au/images/SD.Corp.3D.4C.Pos.jpg");

Stream result = streamAsync.Result;
using (Stream fileStream = File.Create("downloaded.jpg"))
{
    result.CopyTo(fileStream);
}
于 2012-06-13T12:14:09.010 回答