Explore nuestros productos

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

Descargar  Foro de soporte 

detalles del archivo

  • Descargas:
  • 11
  • Tamaño del archivo:
  • 59.8 MB
  • Posted By:
  • vitalii.kornyliuk
  • Vistas:
  • 60
  • Fecha de adición:
  • 2/5/2022

detalles del archivo

Procesamiento de archivos STL mejorado

Esta versión ofrece mejoras en el procesamiento de los archivos de formato STL. El siguiente fragmento de código C# funciona como un convertidor de STL a PNG a través de la 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);
}

Soporte de formato Collada

Esta versión de la API ha implementado el soporte para el formato Collada.

Obtener información del segmento de polilínea

Se agregó la capacidad de obtener segmentos de polilínea (lwpolyline).

Para obtener una lista completa de funciones, mejoras y correcciones de errores en esta versión, visite Aspose.CAD for .NET 22.1 - Release Notes.

 Español