WPF Image HESREST:0x88982F72

-1

This picture can't be displayed
Anything else will do. Image URL: http://eyy250.com/132.jpg

<Grid>
    <Image Source="http://eyy250.com/132.jpg"></Image>

</Grid>
c#
wpf
asked on Stack Overflow May 31, 2019 by 901 • edited May 31, 2019 by 901

1 Answer

1

Achieve your scenario by setting CreateOptions as IgnoreColorProfile in BitMap as like below code.

        <Image Width="300" Height="300">
            <Image.Source>
                <BitmapImage CreateOptions="IgnoreColorProfile" UriSource="http://eyy250.com/132.jpg"/>
            </Image.Source>
        </Image>
answered on Stack Overflow May 31, 2019 by Muthukumar K

User contributions licensed under CC BY-SA 3.0