这个不祥的 "System.Drawing" 警告是什么意思?

What does this ominous "System.Drawing" warning mean?

我正在为 ASP.NET 网站开发一些图像处理代码,最终将作为 Web 服务公开。

在 System.Drawing 命名空间文档的底部:

https://msdn.microsoft.com/en-us/library/system.drawing.aspx

这是不祥的警告吗:

Classes within the System.Drawing namespace are not supported for use 
within a Windows or ASP.NET service. Attempting to use these classes from 
within one of these application types may produce unexpected problems, such 
as diminished service performance and run-time exceptions. For a supported 
alternative, see Windows Imaging Components.

"ASP.NET service" 是指网络服务吗?我不认为 "Windows Imaging Components" 是为了做我正在做的图像而设计的。

System.Drawing 命名空间对于 ASP.NET 网络服务中的图像处理是否安全?

该语句表示任何 ASP.NET 应用程序,包括 WebForms、MVC、Web API 和 SignalR。

System.Drawing 仅适用于在正常用户会话中 运行 的 WinForms 或控制台应用程序。

其他人可能会声称 System.Drawing 在那些 not-supported 场景中为他们工作,但 Microsoft 根本不支持。