Browse our Products

Aspose.CAD for Python 24.6.0 Release Notes

KeySummaryCategory
CADPYTHON-179Add reading and writing for the required remaining sectionsEnhancement
CADPYTHON-175Flipped MLeaders after DWG to PDF exportEnhancement
CADPYTHON-174DWG to DXF can not be opened and result is incorrectEnhancement
CADPYTHON-173Chinese symbol is replacedEnhancement
CADPYTHON-171Creating DWG with polyline throws exceptionEnhancement
CADPYTHON-165Parse STP predefined colorsEnhancement
CADPYTHON-156Continue porting new MTEXT renderEnhancement
CADPYTHON-155How to add or replace bitmap images in CAD .NET and save back to DXFEnhancement
CADPYTHON-154High memory consumption for DWG to PNG exportEnhancement
CADPYTHON-146After modifying the dwg file, the export cannot be opened with auto cad 2019Enhancement
CADPYTHON-29Exception for DWG to PDF - “Index was outside the bounds of the array”Enhancement
CADPYTHON-18DWG to DXF without options produces incorrect fileEnhancement
CADPYTHON-163Exception during FBX to STP conversionEnhancement
CADPYTHON-162Exception during IFC to STP conversion issueEnhancement
CADPYTHON-150Exception during IFC to STP conversionEnhancement

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);