在我們的應用程序中,基於一些輸入數據,圖像將被渲染。圖像是一些圖表。作爲我們測試自動化的一部分,我需要下載這些圖表。從HTML源文件下載並保存圖像
我只是有圖片源的網址。我如何從源下載圖像並將其保存到磁盤。
我試過使用不同的方法並能夠下載文件。但是,當我嘗試打開文件時,收到一條消息,指出'不是有效的位圖文件,或其格式目前不受支持。'
這裏是我的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>
可能重複:http://stackoverflow.com/questions/932390/how-do-i-save-an-image-from-an-url?rq=1 – aquinas