• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    .NET

    Reply
    Member
    borut.slatinsek
    Posts: 3
    Registered: ‎07-01-2011

    Read dwg extents

    264 Views, 9 Replies
    07-01-2011 06:29 AM

    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?

    Please use plain text.
    *Expert Elite*
    arcticad
    Posts: 1,250
    Registered: ‎06-21-2004

    Re: Read dwg extents

    07-01-2011 08:24 AM in reply to: borut.slatinsek

    You would have to use RealDWG or OpenDesign

     

    http://usa.autodesk.com/adsk/servlet/index?siteID=123112&id=770257

     

    http://www.opendesign.com/

     

    ---------------------------



    “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!”
    Please use plain text.
    Member
    borut.slatinsek
    Posts: 3
    Registered: ‎07-01-2011

    Re: Read dwg extents

    07-01-2011 09:22 AM in reply to: arcticad

    Is there no free alternative?

    Please use plain text.
    *Expert Elite*
    dgorsman
    Posts: 3,278
    Registered: ‎10-12-2006

    Re: Read dwg extents

    07-04-2011 09:22 AM in reply to: borut.slatinsek

    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.


    Please use plain text.
    Member
    borut.slatinsek
    Posts: 3
    Registered: ‎07-01-2011

    Re: Read dwg extents

    01-26-2012 01:49 AM in reply to: borut.slatinsek

    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!

    Please use plain text.
    *Expert Elite*
    arcticad
    Posts: 1,250
    Registered: ‎06-21-2004

    Re: Read dwg extents

    01-26-2012 11:01 AM in reply to: borut.slatinsek

    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!”
    Please use plain text.
    Valued Mentor
    Posts: 297
    Registered: ‎03-31-2005

    Re: Read dwg extents

    01-26-2012 01:05 PM in reply to: borut.slatinsek

    Yes.  You can search here for "out of process" or "unmanaged".  There should be several examples.  What version of acad are you targeting?

    Please use plain text.
    *Expert Elite*
    arcticad
    Posts: 1,250
    Registered: ‎06-21-2004

    Re: Read dwg extents

    01-26-2012 02:37 PM in reply to: borut.slatinsek

    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!”
    Please use plain text.
    Valued Mentor
    Posts: 297
    Registered: ‎03-31-2005

    Re: Read dwg extents

    01-26-2012 03:09 PM in reply to: fieldguy

    Scratch that - sorry.  I was taking out-ot-process too literally.

    Please use plain text.
    Valued Contributor
    FFlix
    Posts: 87
    Registered: ‎11-15-2011

    Re: Read dwg extents

    01-26-2012 03:43 PM in reply to: borut.slatinsek

    hi borut

     

    autodesk publish dxf code references as pdf file by autocad version here:

    http://usa.autodesk.com/adsk/servlet/item?linkID=10809853&id=12272454&siteID=123112

     

    it's introduction says that "The DXFformat 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

     

     

    Please use plain text.