You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Transformations are handled using the System.Drawing.Drawing2D.Matrix class.
However, System.Drawing.Drawing2D contains some windows-only code, which generates a warning if used.
I'm using this package as a dependency in my project, but when trying to run the project on a Linux OS I get the following error:
Unhandled exception. System.TypelnitializationException: The type initializer for 'Gdip' threw an exception.
—> System.PlatformNotSupportedException: System.Drav/ing.Common is not supported on non-Windows platforms. See https://aka.ms/systemdrav/ingnonv/inc ov/s for more information.
Transformations are handled using the
System.Drawing.Drawing2D.Matrix
class.However,
System.Drawing.Drawing2D
contains some windows-only code, which generates a warning if used.I'm using this package as a dependency in my project, but when trying to run the project on a Linux OS I get the following error:
This is my code:
Accessing transformations data is essential for my project,
Am I doing something wrong? Do you have any suggestions?
If needed, I can help to transition to another cross-platform Matrix class to handle these types of transformations.
Used Versions
Svg 3.4.7 (nuget)
Debian 11
.NET 6
The text was updated successfully, but these errors were encountered: