我们正在开发从服务器下载图像的 C# 应用程序。截至目前,我们对 jpeg 图像工作正常,但具有透明度的 png 图像会添加白色补丁来代替透明部分。我尝试了以下代码:
public Image DownloadImage(string _URL)
{
Image _tmpImage = null;
try
{
// Open a connection
System.Net.HttpWebRequest _HttpWebRequest = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(_URL);
_HttpWebRequest.AllowWriteStreamBuffering = true;
// You can also specify additional header values like the user agent or the referer: (Optional)
_HttpWebRequest.UserAgent = "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)";
_HttpWebRequest.Referer = "http://www.google.com/";
// set timeout for 20 seconds (Optional)
_HttpWebRequest.Timeout = 40000;
_HttpWebRequest.Accept = "image/png,image/*";
// Request response:
System.Net.WebResponse _WebResponse = _HttpWebRequest.GetResponse();
// Open data stream:
System.IO.Stream _WebStream = _WebResponse.GetResponseStream();
// convert webstream to image
_tmpImage = Image.FromStream(_WebStream);
// Cleanup
_WebResponse.Close();
_WebResponse.Close();
}
catch (Exception _Exception)
{
// Error
Console.WriteLine("Exception caught in process: {0}", _Exception.ToString());
return null;
}
return _tmpImage;
}
我从带有白色补丁的 URL 下载它时得到的图像。我猜它添加白色补丁代替透明部分,但我怎么能阻止它这样做。有什么方法可以直接检测并以正确的格式下载图像而不播放图像。
我试过这个_HttpWebRequest.Accept = "image/png,image/*"; 所以它应该接受 png 图像并保持纵横比,但它似乎对我不起作用。
任何帮助都深表感谢。
谢谢你,桑托什·乌帕德哈伊。