使用python保存AutoCAD文件(.dwg)

时间:2019-10-18 12:10:16

标签: python com autocad autocad-plugin

我正在使用win32com在autocad中自动化一些简单的任务。除了能够保存文件之外,它的运行情况一直很好。我的目标是打开一个(模板)文件,根据需要进行调整,然后将文件另存为.dwg到另一个文件夹中,同时将该模板保留为空并准备下次使用。

以下是我的代码示例:

import win32com.client


acad = win32com.client.dynamic.Dispatch("AutoCAD.Application")
acad.Visible=True

doc = acad.Documents.Open("C:\\Template_folder\\Template.dwg")
doc.SaveAs("C:\\Output_folder\\Document1.dwg")

### Adjust dwg ###

doc.Save()

加载模板文件效果很好,但是尝试保存文件(使用SaveAs method)时,出现以下错误:

    doc.SaveAs("C:\\Output_folder\\Document1.dwg")
  File "<COMObject Open>", line 3, in SaveAs
pywintypes.com_error: (-2147352567, 'Exception occurred.', (0, 'AutoCAD', 'Error saving the document', 'C:\\Program Files\\Autodesk\\AutoCAD 2019\\HELP\\OLE_ERR.CHM', -2145320861, -2145320861), None)

任何提示或资源将不胜感激!

1 个答案:

答案 0 :(得分:1)

在查看ActiveX API for AutoCAD的文档时,当您调用Documents.Open()时,它应该返回打开的文档并将其设置为活动文档。就是说,这似乎不是这里实际发生的事情。您的问题的解决方案应如下所示:

import win32com.client

acad = win32com.client.dynamic.Dispatch("AutoCAD.Application")
acad.Visible=True

# Open a new document and set it as the active document
acad.Documents.Open("C:\\Template_folder\\Template.dwg")

# Set the active document before trying to use it
doc = acad.ActiveDocument

# Save the documet
doc.SaveAs("C:\\Output_folder\\Document1.dwg")

### Adjust dwg ###

doc.Save()

您可以在此处找到文档

AutoCAD.Application

Application.Documents

Documents.Open()

Application.ActiveDocument