I am looking for .net CAD component that can read/write dxf/dwg files. Besides vector draw, is there any other such components?
|
2
|
|
|
|
|
|
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? |
||||
|
|
|
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. |
||
|
|
