System.drawing.common support for linux

dwijay 0 Reputation points
2023-02-12T19:36:08.4366667+00:00

our app has a graphics/image generator dll that uses drawing classes, but System.drawing.common is not supported on other platforms, we can switch to use aspose.drawing, which is supported on windows and linux. the problem we face is windows forms app uses System.drawing.common classes and this we cannot use our image generator dll, conflicts are there since aspose.drawing has the same name space as system.drawing, any ideas?

thanks

.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,263 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Pavel Melnikov 0 Reputation points
    2023-03-23T15:49:15.2066667+00:00

    Aspose has a separate package with different namespace. You can get it from NuGet.

    Aspose.Drawing.Common - https://www.nuget.org/packages/Aspose.Drawing.Common/22.9.0

    in this package all the classes are in the namespace Aspose.Drawing so you can use both libraries without any conflicts.

    0 comments No comments