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>
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>
User contributions licensed under CC BY-SA 3.0