Questions tagged [dwg]

DWG is proprietary file format for storing 2d and 3d design data, owned by Autodesk. Native format for various CAD applications.

157 questions
2
votes
0 answers

Model Derivative API revit to dwg

I wanted to convert the Revit file to DWG file, so I created a job using the Model Derivative API, When I check the Manifest, Progress will succeed at 0%. The following json was used to create the job { "input" : { "urn" :…
2
votes
0 answers

How to insert graph in dwg file?

There is a .dwg file with a special frame template and I want to put the graph I created using networkx. Is it possible to "combine" .dwg frame with networkx?
OutofBound
  • 39
  • 5
2
votes
1 answer

How to show thumbnail of a dwg-File in a excel VBA Userform

I want to write a little DMS to tag and save ACAD files. For this i am using Excel VBA. Using with ACAD 2014 / 2015 / 2019. Step 1 - save drawing: When copy some parts of the drawing, there is a copy in %temp% and something like a WindowsMetaFile…
Chris
  • 75
  • 1
  • 9
2
votes
0 answers

does revit import xdata contains in a dwg file? if not, why?

I need to collect xdata information pf .dwg file in revit. but I did not find a way to do that. I'm wondering whether this kind of information is also imported as other information? I think revit should import this kind of information. because I…
2
votes
0 answers

How to draw a circle by polyline in CADlib?

In the demand, I should draw a circle by polyline ,which should draw by a software developed by C# and the library CADlib. This is the document about polyline: http://www.woutware.com/doc/cadlib4.0/html/3a2347ab-838e-26ca-5aed-889ec5f96526.htm I…
lanhao945
  • 427
  • 5
  • 21
2
votes
1 answer

AutoCAD - Save as DXF in Sub Folder

I found this code online to save a selection from an AutoCAD DWG into a DXF format in the project folder. I am not well versed in AutoLISP. What do I need to change to save all of these drawings in a subfolder called "CNC Parts"? ;save selection as…
2
votes
1 answer

How to Show/View or Read .dwg files on browser

How to Show or Read .dwg files on browser without using any software means using PHP, jQuery, Javascript or any other programming language. For this I have gone through https://developer.autodesk.com and created an app with Client ID and Client…
2
votes
2 answers

What is the typical size of a .dwg file?

What is the typical size range of a .dwg file? I am developing a system to upload and download .dwg files.
VRK
  • 17
  • 3
2
votes
1 answer

Can I use Autodesk viewing API to render local DWG (2D) files to my browser?

The main goal of my project is to read Autocad(DWG) drawings from my local server to output them in a web browser (Chrome). I managed to do it with the View and Data API in JAVA from Autocad with buckets, Key, etc. but when it comes to read offline…
2
votes
2 answers

Is there an easy way to convert autocad polygons to adobe swf format?

I am looking for a easy way to convert Autocad polygons to swf files. Is there a converter for that? Or is there an intermediatory format that can be used to convert from polygons to the adobe flash swfs. Each polygon would be a swf file.
dickyj
  • 1,830
  • 1
  • 24
  • 41
2
votes
5 answers

readfile() returns empty file while trying to force download

I'm trying to force download of .dwg files with the following code: $filename = $_GET['f']; $upload_path = wp_upload_dir(); $src = $upload_path['basedir'] . '/' . $filename; header('Pragma: public'); header('Expires: 0'); header('Cache-Control:…
jxe
  • 310
  • 4
  • 16
2
votes
2 answers

How to export a DWG format file into a SAT file using C# Autocad API's?

How to export a DWG format file into a SAT file using C# Autocad API's. Selection set is to be in SelectAll mode in SAT file. I am using VS 2010 and Autocad 2012. Code will be very helpful.
Rahul
  • 1,070
  • 3
  • 21
  • 47
2
votes
5 answers

Embed DWG file in HTML

I want to ask how to embed DWG file in HTML Page. I have tried using tag with Volo Viewer but this solution run only in IE not in Firefox and Chrome.
Abdullah Darwish
  • 223
  • 2
  • 5
  • 17
1
vote
1 answer

Plot dwg file programmatically

I have written an application to open and print a dwg file. The plotting process is working correctly; however, when I looked at the Plot and Publish Details window, I saw that the File property is set to instead of my dwg file…
M_Mogharrabi
  • 1,369
  • 5
  • 29
  • 57
1
vote
1 answer

CAD files like dxf/dwg to WMS

I have a really complicated and complex CAD file that ArcGIS can't show me correctly, is there any service that loads the dwg or dxf file and gives it to me in map or raster form? Something like WMS? I'm a surveyor, who uses ArcGIS software and I'm…
1 2
3
10 11