System.Drawing.Common 替代方案(.NET 7 及非 Windows)

This article was translated from English: Does it need improvement?
Translated
View the article in English

从 .NET6 开始,Microsoft 已停止在 Linux 和 macOS 上支持 System.Drawing.Common。 此库现在只能在Windows上运行。 有关更多详情,请参阅官方文件.

该平台不支持避免 system.drawing.common 的变通方法

.NET6

在非Windows操作系统上,会抛出一个TypeInitializationException,其内部异常为PlatformNotSupportedException。 平台分析器会在非Windows平台上发出编译时警告。 除非您设置配置选项,否则会抛出以下运行时异常:

System.TypeInitializationException : The type initializer for 'Gdip' threw an exception.

    ---- System.PlatformNotSupportedException : System.Drawing.Common is not supported on non-Windows platforms.

.NET6 中的临时解决方案:

通过在 runtimeconfig.json 文件中将 System.Drawing.EnableUnixSupport 运行时配置开关设置为 true 来启用对非Windows平台的支持:

{

    "runtimeOptions": {

        "configProperties": {

            "System.Drawing.EnableUnixSupport": true

        }

    }

}

在代码开头添加以下代码:

System.AppContext.SetSwitch("System.Drawing.EnableUnixSupport", true);

.NET7 及以上版本

从 .NET7 开始,Microsoft 已完全取消在 Linux 和 macOS 上对 System.Drawing.Common 的支持,包括之前可用的解决方法。

Iron Software发布了一个名为IronSoftware.Drawing的System.Drawing.Common的开源替代品。