Browse our Products

Aspose.CAD for Python 23.6.0 Release Notes

KeySummaryCategory
CADPYTHON-78Wrongly exported hungarian special characters from DWG to PDFEnhancement
CADPYTHON-77Export IfcOpeningElementEnhancement
CADPYTHON-75Null reference when applying SHXEnhancement
CADPYTHON-73Enrich file formats with metadata about input/output applicabilityEnhancement
CADPYTHON-72BUG: MText.FullClearTextEnhancement
CADPYTHON-71Some parts of source image are not exported.Enhancement
CADPYTHON-70Garbled SHX characters when converting to PDFEnhancement
CADPYTHON-69Exception “file format not supported” thrown while loading pcl files.Enhancement
CADPYTHON-64Design unified conversion mechanism to keep information about objects structureEnhancement
CADPYTHON-53Improve export to OBJEnhancement
CADPYTHON-52Use array instead of ReadOnlyCollection on public APIEnhancement
CADPYTHON-51Research export of u3d to 3D PDFEnhancement
CADPYTHON-49Update etalons after DGN text width fixEnhancement
CADPYTHON-48Fix problem with resolution of block referencesEnhancement
CADPYTHON-47Implement export of U3D to 3D PDFEnhancement
CADPYTHON-42DGN reading failureEnhancement
CADPYTHON-39Saving to OBJ produces additional linesEnhancement
CADPYTHON-41IFC to PDF conversion issueEnhancement
CADPYTHON-35DWF document is rendered in vertical orientation that is not correctEnhancement
CADPYTHON-33Exception throws when opening DWF documentEnhancement
CADPYTHON-79Support CGM formatFeature
CADPYTHON-66Implement writing properties of CadPdfUnderlay and CadPdfDefinition objectsFeature
CADPYTHON-63Implement writing properties of CadDwfUnderlay and CadDwfDefinition objectsFeature
CADPYTHON-55Implement writing the properties of the CadPlaneSurface objectFeature
CADPYTHON-46Implement reading properties of SOLID_BACKGROUND and GRADIENT_BACKGROUND objectsFeature

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