Search found 6 matches
- 25 Sep 2008, 00:58
- Forum: CAD .NET
- Topic: DXF export problem
- Replies: 11
- Views: 47543
Re: DXF export problem
I did a little more research on the speed of export DXF. I noticed that the cause of it taking so long is because it is doing many I/O operations. About 1K per disk write. My DXF files are usually larger than 200 mb. So I used SaveToStream and set the stream to a much larger internal buffer (about 1...
- 23 Sep 2008, 23:33
- Forum: CAD .NET
- Topic: DXF export problem
- Replies: 11
- Views: 47543
Re: DXF export problem
Hello Sergey, I was wondering if there is any new news on the update? Also, I am noticing that it takes a very very very long time to export medium size CADImage to DXF (45 minutes). // Save to DXF CADImport.Export.DirectCADtoDXF.CADtoDXF ctd = new CADImport.Export.DirectCADtoDXF.CADtoDXF(cadImage);...
- 28 Jul 2008, 18:23
- Forum: CAD .NET
- Topic: DXF export problem
- Replies: 11
- Views: 47543
Re: DXF export problem
Thank you Sergey! I will wait for the update.
- 25 Jul 2008, 18:45
- Forum: CAD .NET
- Topic: DXF export problem
- Replies: 11
- Views: 47543
Re: DXF export problem
It allows multi-layer polyline. Two of the systems we use, use vertex layer to know which layer it will use to draw from that vertex to next vertex. (Multicolor polyline I guess). For most of our processes we use AutoCAD and it works since all vertex have same layer. But when we used CADImport, well...
- 24 Jul 2008, 19:07
- Forum: CAD .NET
- Topic: DXF export problem
- Replies: 11
- Views: 47543
Re: DXF export problem
I am using my own custom objects. I use CADImport in this case only for exporting. So I have to transfer data from my own objects (Layer, Polyine) into CADImport objects (CADLayer, CADPolyline), add them to CADImage then use DirectCADtoDXF.CADtoDXF ctd = new Export.DirectCADtoDXF.CADtoDXF(cadImage) ...
- 23 Jul 2008, 23:58
- Forum: CAD .NET
- Topic: DXF export problem
- Replies: 11
- Views: 47543
DXF export problem
Hello, I am using DXFImport.NET to export various entities to DXF. But when I export and open dxf file, the data for group 8 (layer name) in entities VERTEX, SEQEND, and maybe others, is not the same as the main entity (POLYLINE, ARC, etc). For example, for a POLYLINE: 0 POLYLINE 5 173 8 MyLayer <--...