Browse our Products

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

Download  Support Forum 

File Details

  • Downloads:
  • 11
  • File Size:
  • 59.8 MB
  • Posted By:
  • vitalii.kornyliuk
  • Views:
  • 60
  • Date Added:
  • 2/5/2022

File Details

Improved STL File Processing

This release offers improvements in the processing of the STL format files. The following C# code snippet works as a STL to PNG converter via API:

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 Format Support

This release of the API has implemented the support for the Collada format.

Get Polyline Segment Information

Added the ability to fetch Polyline (lwpolyline) segments.

For a complete list of features, enhancements, and bug fixes in this release please visit, Aspose.CAD for .NET 22.1 - Release Notes.

 English