Blader door onze producten

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 für .NET 22.1

Downloaden  Helpforum 

Bestandsdetails

  • Downloads:
  • 11
  • Dateigröße:
  • 59.8 MB
  • Posted By:
  • vitalii.kornyliuk
  • Ansichten:
  • 60
  • Hinzugefügt am:
  • 2/5/2022

Bestandsdetails

Verbesserte STL-Dateiverarbeitung

Diese Version bietet Verbesserungen bei der Verarbeitung von Dateien im STL-Format. Das folgende C#-Code-Snippet funktioniert als STL-zu-PNG-Konverter über die 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);
}

Unterstützung des Collada-Formats

Diese Version der API hat die Unterstützung für das „Collada“-Format implementiert.

Informationen zu Polyliniensegmenten erhalten

Möglichkeit zum Abrufen von Polyline-Segmenten (lwpolyline) hinzugefügt.

Eine vollständige Liste der Funktionen, Verbesserungen und Fehlerbehebungen in dieser Version finden Sie unter Aspose.CAD for .NET 22.1 - Release Notes.

 Deutsch