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 pour .NET 22.1

Download  Support Forum 

File Details

  • Téléchargements :
  • 11
  • Taille du fichier :
  • 59.8 MB
  • Posted By:
  • vitalii.kornyliuk
  • Vues :
  • 60
  • Date d'ajout :
  • 2/5/2022

File Details

Amélioration du traitement des fichiers STL

Cette version offre des améliorations dans le traitement des fichiers au format “STL”. L’extrait de code C# suivant fonctionne comme un convertisseur STL vers PNG via l’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);
}

Prise en charge du format Collada

Cette version de l’API a implémenté la prise en charge du format Collada.

Obtenir des informations sur le segment de polyligne

Ajout de la possibilité de récupérer des segments de polyligne (lwpolyline).

Pour une liste complète des fonctionnalités, améliorations et corrections de bogues de cette version, veuillez consulter Aspose.CAD for .NET 22.1 - Release Notes.

 Français