Просмотрите наши продукты Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
В этом выпуске улучшена обработка файлов формата STL. Следующий фрагмент кода C# работает как конвертер STL в PNG через API:
STL
string MyDir = RunExamples.GetDataDir_ConvertingCAD(); string sourceFilePath = MyDir + "galeon.stl"; using (var cadImage = (CadImage)Image.Load(sourceFilePath)) { var rasterizationOptions = new CadRasterizationOptions(); rasterizationOptions.PageWidth = 100; rasterizationOptions.PageHeight = 100; PngOptions pngOptions = new PngOptions(); pngOptions.VectorRasterizationOptions = rasterizationOptions; string outPath = sourceFilePath + ".png"; cadImage.Save(outPath, pngOptions); }
Collada
В этом выпуске API реализована поддержка формата Collada.
Добавлена возможность получения сегментов полилинии (lwpolyline).
lwpolyline
Полный список функций, улучшений и исправлений ошибок в этом выпуске можно найти на странице Aspose.CAD for .NET 22.1 - Release Notes.