图像模糊 - XAML

时间:2015-07-01 19:36:58

标签: c# .net image xaml render

当我在其上放置大尺寸图像时,图像模糊。我在各种网站上搜索了一个" RenderOptions.BitmapScalingMode",而我看来的选项只是" RenderTransform"和" RenderTransformOrigin"。

<Image Width="249" Height="400" Stretch="Fill">
<Image.Source>
    <BitmapImage UriSource="http://example.com/example.jpeg" />
</Image.Source>
</Image>

1 个答案:

答案 0 :(得分:0)

你试试这个吗?

<Image Width="249" Height="400" Stretch="Fill" RenderOptions.BitmapScalingMode="NearestNeighbor">
    <Image.Source>
        <BitmapImage UriSource="http://example.com/example.jpeg" />
    </Image.Source>
</Image>