DWT Drawings

Support for DWT Files

Aspose.CAD for Python allows developers to load and save DWT files. Sample code is given below to achieve this feature.

Sample Code

import aspose.cad as cad;
cadImage = cad.Image.load("file.dwt");
//do your work here
cadImage.save("result.dwt")