在我们的应用程序中,基于某些输入数据,将呈现图像。图像是一些图表。作为测试自动化的一部分,我需要下载这些图表。
我只有图片源网址。如何从源下载图像并将其保存到磁盘。
我尝试使用不同的方法并能够下载该文件。但是,当我尝试打开文件时,收到一条消息,说“不是有效的位图文件,或者当前不支持它的格式。”
这是我的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>
答案 0 :(得分: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);
}
答案 1 :(得分: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();
}
}
}