DWT Drawings
Contents
[
Hide
]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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import aspose.cad as cad; | |
cadImage = cad.Image.load("file.dwt"); | |
//do your work here | |
cadImage.save("result.dwt") |