仅当url返回图像类型时创建图像
本文关键字:图像 创建 类型 仅当 返回 url | 更新日期: 2023-09-27 18:28:47
我正在尝试从url中获取图像。如果该url中不存在图像,那么该url将返回一个静态html页面。
这是我用来创建图像的代码
img_profile.ImageSource = new BitmapImage(new Uri("www.someurl.com/xyz.jpg"));
img_profile是我的图像控制id。
如果url返回静态html页面,那么我想显示静态图像。
我正在创建windows通用应用程序。
您可以使用ContentType
来检查它是图像还是静态html内容。
创建一个方法来检查ContentType。
public static bool IsValidImage(string url)
{
var request = (HttpWebRequest)HttpWebRequest.Create(url);
request.Method = "HEAD";
using (var response = request.GetResponseAsync().Result)
{
return response.ContentType.ToLower().StartsWith("image/");
}
}
如果此方法返回false,则可以显示默认图像。
尝试下面的代码。
您的代码
string url = @"www.someurl.com/xyz.jpg";
if (IsImageUrl(url))
img_profile.ImageSource = new BitmapImage(new Uri(url));
else
img_profile.ImageSource = new BitmapImage(new Uri("default_image.jpg"));
创建一个可以检查url是否用于图像的函数?
using System.Net;
using System.Globalization;
bool IsImageUrl(string URL)
{
var req = (HttpWebRequest)HttpWebRequest.Create(URL);
req.Method = "HEAD";
using (var resp = req.GetResponse())
{
return resp.ContentType.ToLower(CultureInfo.InvariantCulture)
.StartsWith("image/");
}
}
请参阅此问题在C#/.NET 中检测图像URL
**BitmapImage bmp = new BitmapImage(new Uri("www.someurl.com/xyz.jpg"));
if(File.Exists("www.someurl.com/xyz.jpg"))
{
img_profile.ImageSource=bmp;
}
else
{
img_profile.ImageSource= new BitmapImage(new Uri("Static image path"));
}
I hope it will work...**