WPF图像,如何去除模糊?

发布于 2024-10-15 19:34:31 字数 670 浏览 1 评论 0原文

我有 在此处输入图像描述

我需要 在此处输入图像描述

XAML:

<Image Height="500"
       MouseLeftButtonDown="image_MouseLeftButtonDown"
       MouseRightButtonDown="image_MouseRightButtonDown"
       Name="image"
       Stretch="Fill"
       Width="500" />`

C#:

  wbmap = new WriteableBitmap(50, 50, 500, 500, PixelFormats.Indexed8, palette);
  wbmap.WritePixels(new Int32Rect(0, 0, wbmap.PixelWidth, wbmap.PixelHeight), pixels, wbmap.PixelWidth * wbmap.Format.BitsPerPixel / 8, 0);
  image.Source = wbmap;

I have enter image description here

I need enter image description here

XAML:

<Image Height="500"
       MouseLeftButtonDown="image_MouseLeftButtonDown"
       MouseRightButtonDown="image_MouseRightButtonDown"
       Name="image"
       Stretch="Fill"
       Width="500" />`

C#:

  wbmap = new WriteableBitmap(50, 50, 500, 500, PixelFormats.Indexed8, palette);
  wbmap.WritePixels(new Int32Rect(0, 0, wbmap.PixelWidth, wbmap.PixelHeight), pixels, wbmap.PixelWidth * wbmap.Format.BitsPerPixel / 8, 0);
  image.Source = wbmap;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

把昨日还给我 2024-10-22 19:34:31

正如 tkerwin 提到的,将 BitmapScalingMode 更改为 < XAML 图像代码中的 code>NearestNeighbor :

RenderOptions.BitmapScalingMode="NearestNeighbor"

As tkerwin mentioned, change the BitmapScalingMode to NearestNeighbor in you XAML Image code:

RenderOptions.BitmapScalingMode="NearestNeighbor"
不如归去 2024-10-22 19:34:31

也许您需要将位图缩放模式更改为最近邻居。

RenderOptions.BitmapScalingMode="NearestNeighbor" 添加到您的 Image 标记中。

Perhaps you need to change the bitmap scaling mode to nearest neighbor.

Add RenderOptions.BitmapScalingMode="NearestNeighbor" to your Image tag.

伪心 2024-10-22 19:34:31

提高分辨率/比例而不进行抗锯齿。

发生的情况是 WPF 正在缩放图像,但“平均”像素,而不是进行更块状的缩放。

请参阅这篇文章:

像在 MS Paint 中一样调整位图大小

Increase resolution / scale without anti-aliasing.

Whats happening is WPF is scaling the image but "averaging" the pixels, rather than doing a more blocky scale.

See this post:

Resize bitmap like in MS Paint

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文