Browse our Products

Aspose.CAD for JavaScript 23.1 Release Notes

Features

The first release of the product supports the following features:

  • Easy and Lightweight Deployment - Aspose.CAD for JavaScript is written purely in JavaScript and also supports TypeScript and most popular UI frameworks like Angular, Vue, React and others.
  • High Fidelity to Report Design - Aspose.CAD for JavaScript exports CAD and BIM drawings in such a way that they look identical to images can be seen on original viewers.
  • Multipage export - Aspose.CAD for JavaScript supports multipage export to the following formats: Gif, Tiff, Pdf.
  • Batch export - Aspose.CAD for JavaScript supports export drawing files from JavaScript in batch mode. Each page of or layout of a drawing will be saved as a separate file.

Usage Examples

import aspose.cad as cad

cadImage = cad.image.load("drawing.dxf");

rasterizationOptions = cad.CadRasterizationOptions();
pdfOptions = cad.PdfOptions();

cadImage.Save("output.pdf", pdfOptions);