当我在其上放置大尺寸图像时,图像模糊。我在各种网站上搜索了一个" RenderOptions.BitmapScalingMode",而我看来的选项只是" RenderTransform"和" RenderTransformOrigin"。
<Image Width="249" Height="400" Stretch="Fill">
<Image.Source>
<BitmapImage UriSource="http://example.com/example.jpeg" />
</Image.Source>
</Image>
答案 0 :(得分:0)
你试试这个吗?
<Image Width="249" Height="400" Stretch="Fill" RenderOptions.BitmapScalingMode="NearestNeighbor">
<Image.Source>
<BitmapImage UriSource="http://example.com/example.jpeg" />
</Image.Source>
</Image>