浏览我们的产品

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.

 

Aspose.CAD for .NET 22.1

下载  支持论坛 

文件详情

  • 下载:
  • 11
  • 文件大小:
  • 59.8 MB
  • Posted By:
  • vitalii.kornyliuk
  • 浏览量:
  • 60
  • 添加日期:
  • 2/5/2022

文件详情

改进的 STL 文件处理

此版本改进了“STL”格式文件的处理。以下 C# 代码片段通过 API 用作 STL 到 PNG 转换器:

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)段的功能。

有关此版本中的功能、增强功能和错误修复的完整列表,请访问 Aspose.CAD for .NET 22.1 - Release Notes

 简体中文