放大 Windows API - 如何添加 Smoothing/Anti 别名

Magnification Windows API - How to add Smoothing/Anti Aliasing

上下文

自从 Windows 10 版本 2004 更新后,放大镜 windows 应用程序已更新。 与每次更新一样,它也存在一些问题。

由于这些问题可能需要很长时间才能解决,我决定实现我自己的小项目全屏放大镜。

我一直在使用 windows magnification.dll 中的放大 API 在 c#、.Net 4.6 中进行开发。 一切顺利,现在主要功能已经实现。但是缺少一件事,像素化内容的平滑模式... Windows 放大镜对放大的内容实施抗锯齿/平滑。

我已经检查过,放大倍数 API 似乎没有提供该选项。

如何在 windows 倍率 API 上为放大镜添加平滑模式?

我知道像素平滑方法,但不熟悉 win32 API 想知道在屏幕刷新之前将平滑方法挂钩到哪里。

编辑:

感谢@IInspectable 的回答,经过小规模搜索后,我在 python 项目中找到了对放大 API 的调用。

基于此,我在我的 C# 应用程序中编写了这段代码,并且它按预期工作!

[DllImport("Magnification.dll")]
private static extern bool MagSetFullscreenUseBitmapSmoothing(bool useSmoothing);

...

var isMagnifierInitialized = MagInitialize();
var isSmoothingActive = MagSetFullscreenUseBitmapSmoothing(true);

Magnification API that allows clients to apply filtering (other than color transforms). This used to be possible, but the MagSetImageScalingCallback 中没有 public 接口 API 在 Windows 7 中被弃用:

This function works only when Desktop Window Manager (DWM) is off.

即使它仍然可用,也将不再按设计工作。来自 Desktop Window Manager is always on:

In Windows 8, Desktop Window Manager (DWM) is always ON and cannot be disabled by end users and apps.

这样一来,如果您尝试使用放大 API.

来复制放大镜应用程序的放大器的结果,您就很不走运了

放大镜应用程序似乎在使用未记录的 API 调用来实现放大效果。 运行 dumpbin /IMPORTS magnify.exe | findstr "Mag" 列出了一些 public API 以及以下内容:

  • MagSetLensUseBitmapSmoothing
  • MagSetFullscreenUseBitmapSmoothing

除非您愿意 reverse-engineer 那些 API 电话,否则您将不得不把时间花在另一个项目上,或者研究不同的解决方案。


关于放大算法的说明:如果仔细观察,您会发现放大后的图像没有任何与平滑算法相关的伪像。

图像没有任何模糊。相反,它到处都显示出锋利的边缘。我不知道这里的放大算法是什么。维基百科在 Pixel-art scaling algorithms 上的条目列出了一些具有非常相似属性的条目。它很可能是其中之一,或其修改版本。