.NET
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Read dwg extents
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi!
I would like to make windows service (.NET C#), which would watch directory changes and read dwg extents, if file extension was .dwg.
Is this possible to make on machine, where autocad isn't installed?
Re: Read dwg extents
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
You would have to use RealDWG or OpenDesign
http://usa.autodesk.com/adsk/servlet/index?siteID=

“We don’t have a snowball’s chance in a blast furnace of surviving this attack unless every one of our units gets into the fight right now!”
Re: Read dwg extents
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Is there no free alternative?
Re: Read dwg extents
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Could you elaborate on the reasoning behind this? There may be "in drawing" solutions that could fulfull the requirements.
If you are going to fly by the seat of your pants, expect friction burns.
Adopt. Adapt. Overcome. Or be overcome.

Re: Read dwg extents
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I am working on application, which creates database with information of extents of DWG, TIF and other geolocated files.
Then user can click on some location on the map and check which files are under that location.
I solved all other formats, but not dwg. I can read DWG extents only inside autocad.
If there is no free solution to do this without AutoCAD, is this possible on machine that has AutoCAD installed without running autocad?
Thank you in advance!
Re: Read dwg extents
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
If you don't want to pay for a solution then you will have to create an instance of AutoCAD to be able to run your code,

“We don’t have a snowball’s chance in a blast furnace of surviving this attack unless every one of our units gets into the fight right now!”
Re: Read dwg extents
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Yes. You can search here for "out of process" or "unmanaged". There should be several examples. What version of acad are you targeting?
Re: Read dwg extents
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I'd like to know what your referring to...
You will still have to connect to AutoCAD to run your application via ActiveX API and create an instance of AutoCAD.
You don't need to show autocad on the screen but it's still running.

“We don’t have a snowball’s chance in a blast furnace of surviving this attack unless every one of our units gets into the fight right now!”
Re: Read dwg extents
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Scratch that - sorry. I was taking out-ot-process too literally.
Re: Read dwg extents
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
hi borut
autodesk publish dxf code references as pdf file by autocad version here:
http://usa.autodesk.com/adsk/servlet/item?linkID=1
it's introduction says that "The DXF™ format is a tagged data representation of all the information contained in an AutoCAD® drawing file. Tagged data means that each data element in the file is preceded by an integer number that is called a group code."
so therefore i think that once you have a .dwg file saved as a .dxf file, you could write a .net application that searches this .dxf file for respective group codes and associated values; e.g. the dxf 'header variables' for drawing extents are given on p19 (i.e. from the acad2011 ref). unfortunately, i haven't done this myself, but .dxf files can be used by non-acad software.
felix
