I have a WinUI app:
<Image x:Name="PixelSurface" Stretch="None" HorizontalAlignment="Left" VerticalAlignment="Top">
<Image.RenderTransform>
<ScaleTransform ScaleX="4" ScaleY="4" />
</Image.RenderTransform>
</Image>
It works, but the pixels get all fuzzy. Probably because it's doing some smoothing. Can I scale it up without any filters being added.
Thanks.