如何使用 Python 打开 DWG 文件扩展名?
我有一个扩展名为 .dwg (AutoCAD) 的文件,我想从 Python 控制台调用该文件并将其呈现在 Web 上。是否有 .dwg 扩展名的模块或其他解决方案?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我有一个扩展名为 .dwg (AutoCAD) 的文件,我想从 Python 控制台调用该文件并将其呈现在 Web 上。是否有 .dwg 扩展名的模块或其他解决方案?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
GNU LibreDWG (GitHub 镜像) 是 2021 年底的规范答案。从 中记录的现已不复存在的 LibDWG 项目中搞笑地分叉出来...等等< /em> 世界语,LibreDWG:
说真的,天气很热。 LibreDWG 是唯一仍然重要的明智选择。大家,让我们拥抱理智吧。
GNU LibreDWG (GitHub mirror) is the canonical answer in late 2021. Hilariously forked from the now defunct LibDWG project documented in ...wait for it Esperanto, LibreDWG:
Seriously, it's hot. LibreDWG is the only sane choice that still matters. Let's embrace sanity, everybody.
在线显示这些内容的最佳格式(我认为)肯定是 SVG。
最近的浏览器原生支持 SVG 渲染;较旧的(例如 IE6)可能需要 SVG 插件
所以您最好的选择可能是使用命令行转换工具,例如 cad2svg (这是一个免费的 Linux 命令行工具),它将 DWG 文件转换为 SVG。您可以轻松地从 Python 程序中执行此操作(使用
subprocess
)。The best format for displaying these online would (imo) definitely be SVG.
Recent browsers support SVG rendering natively; older ones (think IE6) may require an SVG plugin
So your best bet is probably using a command line convert tool like cad2svg (this is a free linux command line tool) which converts the DWG files to SVG. You can easily do this that from your Python program (using
subprocess
).仅从 .dwg 文件获取数据并不容易,但从 .dxf 文件获取数据要容易得多。因此,我选择将 .dwg 文件转换为 .dxf 文件,并仅处理 .dxf 文件。这并不快,但它也是一种替代方法,因为没有其他简单的方法来处理 .dwg 文件。
该转换器位于 https://www.opendesign.com/guestfiles/TeighaFileConverter。
我的操作系统是 CentOS 6.5 (GCC 4.4.7),因此我选择Teigha File Converter for Linux 64-bit (RPM)。
如果你想使用图形界面,你需要安装Qt 5,或者你可以在终端中使用它,或者在你的程序中将它用作shell命令。
It's not easy to get data just from .dwg file, but much more easier from a .dxf file. So I choose to convert a .dwg file to a .dxf file, and just handle the .dxf file. This is not fast, but it is also an alternative, since there is no other easy way to handle .dwg files.
The converter is at https://www.opendesign.com/guestfiles/TeighaFileConverter.
My OS is CentOS 6.5 (GCC 4.4.7), so I choose Teigha File Converter for Linux 64-bit (RPM).
If you want to use the graphical interface, you need to install Qt 5, or you can just use it in terminal or use it as shell commands in your program.
也许您可以从这个 Summer Of Code 项目
http://groups.fsf 中使用一些东西。 org/wiki/LibreDWG/SummerOfCode
http://groups.fsf.org/wiki/LibreDWG
Maybe there will be something you can use from this Summer Of Code project
http://groups.fsf.org/wiki/LibreDWG/SummerOfCode
http://groups.fsf.org/wiki/LibreDWG