I am looking for .net CAD component that can read/write dxf/dwg files. Besides vector draw, is there any other such components?
closed as not constructive by casperOne♦ Jul 12 '12 at 16:03
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
I answered a similar question here. DXF & DWG are 2 different animals. The DXF format is not as comprehensive as DWG but it is a lot easier to get at - it is basically a variation on an XML format using dotted lists (also used in LISP) to document object properties. DWG files are compressed and encrypted and the format changes every 3 years. There are basically 3 ways (that I know of) that you can read/write AutoCAD DWG drawings programmatically.
I have heard cases of people managing to automate the AutoCAD viewer which is free. I haven't tried and I don't imagine it would be easy or legal and it probably wouldn't write to DWGs either. Your approach will also depend on whether you want to display drawings or not. This is tricker and the RealDWG library will generally perform better at this. AutoDesk will not license RealDWG for anything that would compete with them. The ODA encourages that sort of behaviour and is the basis for IntelliCAD and other similar programs. There are plenty of programs about that can render a PDF from a DWG if that's all you want to do. So, what did you want to do? |
|||||||||
|
|
Check out WoutWare: http://www.woutware.com/ We use it to read/write/convert DXF and DWG files. It's 100% .NET code. |
|||
|
|
|
If you are also interested in 3D, give a try to Eyeshot: www.devdept.com |
||||
|
|
Auodesk has a viewer product called Voloview that can be embedded as an ActiveX control. Apparently this is now out of date (I used this in a VB6 App in about 2000) and has been replaced with Design Review but the blurb on the web page doesn't say if this can be embedded within another application. A quick search for 'DXF Viewer ActiveX' turns up DWGViewX, DwGSee and DWG2ImageX amongst others. Unfortunately I haven't used any of these but you might want to evaluate them as well. |
|||||
|