Browse our Products

Aspose.CAD for Python 24.7.0 Release Notes

KeySummaryCategory
CADPYTHON-220Add support for DRC formatEnhancement
CADPYTHON-218DWG to DXF produces file impossible to openEnhancement
CADPYTHON-216Polyline is solid after export to PDFEnhancement
CADPYTHON-215Parse and export colors for STPEnhancement
CADPYTHON-214Empty export results for STP to PDF and STP to STP for some filesEnhancement
CADPYTHON-213Error during multiline text (SHX)Enhancement
CADPYTHON-212Saving colors into STPEnhancement
CADPYTHON-211Table is lost after export to PDFEnhancement
CADPYTHON-210Fix reading and writing properties and handles for entities and objectsEnhancement
CADPYTHON-209Failed to load STPEnhancement
CADPYTHON-203Update header properties for STPEnhancement
CADPYTHON-200Implement DRACO exporterEnhancement
CADPYTHON-198Recombine DXF and DWG export optionsEnhancement
CADPYTHON-192Convert Cad missing Logo and line thickness to bigEnhancement
CADPYTHON-189Implement scaling of the linetype with SHX symbolsEnhancement
CADPYTHON-187Step File ImplementationEnhancement
CADPYTHON-188Reducing the conversion time of CadMText objects into APS objects.Enhancement

Features

The first release of the product supports the following features:

  • Easy and Lightweight Deployment - Aspose.CAD for Python is written as a Python wrapper on .NET core package and is provided as a single WHL file that can easily be deployed on the machines running Python.
  • High Fidelity to Report Design - Aspose.CAD for Python exports reports in such a way that they look identical to reports exported by the built-in exporters of Python.
  • Multipage export - Aspose.CAD for Python supports multipage export to the following formats: SVG, WMF, EMF, PDF, BMP, GIF, JPEG(JPG), PNG, JPPEG2000(J2K), PSD, WEBP, DICOM, TIFF(TIF).
  • Batch export - Aspose.CAD for Python supports export reports from Python in batch mode. Each page of the report 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);