Reputation: 165
How can i convert an autocad dwg or dxf file to a more 'common' format like OBJ, FBX, 3DS, etc. ?
I have tried a free software called abviewer 10 but the exported file is always empty.
Upvotes: 2
Views: 17334
Reputation: 5201
This is possible using the new Autodesk Forge API. I created a simple PHP script for this: https://github.com/fvonellerts/AutoCADtoOBJ
If you prefer a program, use the freeware https://pcon-planner.com. It worked great for me and offers a range of export formats including obj, fbx and collada.
Upvotes: 0
Reputation: 165
At the end, I used a program called Rhino3d. You can check it here.
https://www.rhino3d.com/download
Upvotes: 0
Reputation: 8574
You can use the AutoCAD I/O web service to batch convert files. See documentation at http://developer.autodesk.com
In summary you can upload a .dwg along with script contains a -FBXEXPORT command, which will make the export. After that you can download the exported file.
Upvotes: 2