验证在运行时从 URI 加载的 WPF 位图图像

本文关键字:WPF 位图 图像 加载 URI 运行时 验证 | 更新日期: 2023-09-27 18:31:51

我正在尝试在运行时从URI加载BitmapImage。 我在 XAML 用户控件中使用默认图像,我想通过数据绑定替换该图像。 这行得通。

我遇到的问题是在将无效文件用于替换图像的情况下(可能是错误的 URI,或者 URI 指定了非图像文件)。 发生这种情况时,我希望能够检查 BitmapImage 对象以查看它是否正确加载。 如果没有,我想坚持使用默认图像。

下面是 XAML:

<UserControl x:Class="MyUserControl">
    <Grid>
        <Image
            x:Name="myIcon"
            Source="Images/default.png" />
    </Grid>
</UserControl>

以及相关的代码隐藏:

public static readonly DependencyProperty IconPathProperty =
    DependencyProperty.Register(
        "IconPath",
        typeof(string),
        typeof(MyUserControl),
        new PropertyMetadata(null, new PropertyChangedCallback(OnIconPathChanged)));
public string IconPath
{
    get { return (string)GetValue(IconPathProperty); }
    set { SetValue(IconPathProperty, value); }
}
private static void OnIconPathChanged(
    object sender,
    DependencyPropertyChangedEventArgs e)
{
    if (sender != null)
    {
        // Pass call through to the user control.
        MyUserControl control = sender as MyUserControl;
        if (control != null)
        {
            control.UpdateIcon();
        }
    }
}
public void UpdateIcon()
{
    BitmapImage replacementImage = new BitmapImage();
    replacementImage.BeginInit();
    replacementImage.CacheOption = BitmapCacheOption.OnLoad;
    // Setting the URI does not throw an exception if the URI is
    // invalid or if the file at the target URI is not an image.
    // The BitmapImage class does not seem to provide a mechanism
    // for determining if it contains valid data.
    replacementImage.UriSource = new Uri(IconPath, UriKind.RelativeOrAbsolute);
    replacementImage.EndInit();
    // I tried this null check, but it doesn't really work.  The replacementImage
    // object can have a non-null UriSource and still contain no actual image.
    if (replacementImage.UriSource != null)
    {
        myIcon.Source = replacementImage;
    }
}

下面介绍如何在另一个 XAML 文件中创建此用户控件的实例:

<!--
  My problem:  What if example.png exists but is not a valid image file (or fails to load)?
-->
<MyUserControl IconPath="C:''example.png" />

或者,也许有人可以建议一种不同的/更好的方法来在运行时加载图像。 谢谢。

验证在运行时从 URI 加载的 WPF 位图图像

好吧,BitmapImage类有两个事件,当下载或解码失败时将引发这些事件。

yourBitmapImage.DownloadFailed += delegate { /* fall to your def image */ }
yourBitmapImage.DecodeFailed += delegate { /* fall to your def img */ }

附带说明一下,如果您尝试实现回退占位符:http://www.markermetro.com/2011/06/technical/mvvm-placeholder-images-for-failed-image-load-on-windows-phone-7-with-caliburn-micro/看起来不错。

这很粗糙,但我发现无效的位图图像的宽度和高度为 0。

    BitmapImage image;
    if(image.Width > 0 && image.Height > 0) 
    {  
        //valid image 
    }     

你可以试试这个检查

        if (bitmapImage.UriSource==null || bitmapImage.UriSource.ToString()).Equals(""))
        {
            Console.WriteLine("path null");
        }
        else
        {
            bitmapImage.EndInit();
        }

这已经得到了回答。请看一下这个和这个。我认为它们都在某种程度上回答了您的问题,但我更喜欢前一种方法,因为它甚至可以检查远程资源的 contentType。

你也可以看看这篇文章。

更新:

对于本地文件,只需使用 Uri 或路径创建 Image 对象即可检查这一点。如果成功,则表示该图像是有效图像:

try
{
    Image image = Image.FromFile(uri);
    image.Dispose();
}
catch (Exception ex)
{
    //Incorrect uri or filetype.
}