开发者

Image decoder can not decode the image. Perhaps the image is damaged

开发者 https://www.devze.com 2023-01-31 02:02 出处:网络
Crash error, but it does not reach the catch \"Image decoder can not decode the image. Perhaps the image is damaged.\"

Crash error, but it does not reach the catch "Image decoder can not decode the image. Perhaps the image is damaged."

in code:

images_dynamic - List

try
{
    string path = images_dynamic[0];
    this.Dispatcher.Invoke(DispatcherPriority.ApplicationIdle, (Action)(() =>
    {
    BitmapImage bitimage = new BitmapImage(new Uri(path, UriKind.Absolute));// fly exception
    p_dynamic_image.Source = bitimage;
    }));
}
catch { }

http://depositfiles.com/files/cgmhkeebf - this is file.

I need that 开发者_Python百科that would fly in to catch

0

精彩评论

暂无评论...
验证码 换一张
取 消