I want make simple applications how to read .dwg files in asp.net. What are procedure to read .dwg simple files in asp.net files. How we can read autocad files in asp.net or c#
Asked
Active
Viewed 1.1k times
1
-
Already a post about it http://stackoverflow.com/questions/298622/net-cad-component-that-can-read-write-dxf-dwg-files – alexandre-rousseau Apr 11 '16 at 11:00
-
The above link is down, alexandre – Harish Patil Feb 03 '22 at 05:27
1 Answers
2
DWG is proprietary file format, I think the way to go is vendor SDK, in this case AutoCAD SDK. See if .net is supported, or else you might need to unmanaged component in c++.
But have a look into this thread,
.Net CAD component that can read/write dxf/ dwg files
Are there any libraries for parsing AutoCAD files?
For Open source C++:
http://libdwg.sourceforge.net/en/
But above all depends on external components as i said before.
-
-
1As the other thread mentions, check out https://www.woutware.com/ , the library name is CADLib and has a free trial version of 30 days. The library should have api documentation and may be even some sample. You can give it a try. – NatarajC Apr 11 '16 at 11:30