Aspose.CAD是否支持linux系统

using Aspose.CAD.FileFormats.Cad.CadConsts;
using Aspose.CAD.FileFormats.Cad.CadObjects;
using Aspose.CAD.FileFormats.Cad;
using Aspose.CAD.ImageOptions;
using Svg;
using Aspose.CAD;

string licensePath = Path.Combine(projectDirectory, “license”, “Aspose.CAD.NET.lic”);
License svgLicense = new License();
svgLicense.SetLicense(licensePath);

这个不能使用在linux上吗?

@zhukaibin

请问您能否提供更多关于您在Linux上使用Aspose.CAD时遇到的具体问题或错误信息?

代码发布在linux上报错:

Cannot initialize gdi+ libraries. This is likely to be caused by running on a non-Windows OS without proper gdi+ replacement. Please refer to the documentation for more details.

就是想问下是否支持linux

CadRasterizationOptions rasterizationOptions = new CadRasterizationOptions();

var Width = cadImage.Width;
var Height = cadImage.Height;

rasterizationOptions.PageHeight = Height;
rasterizationOptions.PageWidth = Width;

rasterizationOptions.DrawType = CadDrawTypeMode.UseObjectColor;

//// this option could be used to decrease text width
rasterizationOptions.Quality.TextThicknessNormalization = true;

rasterizationOptions.BackgroundColor = Color.Black;

rasterizationOptions.Zoom = 1;

Aspose.CAD.ImageOptions.SvgOptions svgOptions = new Aspose.CAD.ImageOptions.SvgOptions();
svgOptions.VectorRasterizationOptions = rasterizationOptions;

这里的Color.Black;是引用的Aspose.CAD下的
想知道,这个在linux上可以用吗

@zhukaibin,
你好,
是的,应该可以。环境和库版本是什么?