Search found 2 matches
- 05 May 2009, 09:55
- Forum: CAD .NET
- Topic: Save CADImage to DXF file
- Replies: 2
- Views: 12495
Re: Save CADImage to DXF file
ok, I got it, you can close the thread CADImage cadImage = CADImage.CreateImageByExtension(filePath); cadImage.LoadFromFile(filePath); // some changes in cadImage // saving CADImport.Export.DirectCADtoDXF.CADtoDXF cadExp = new CADImport.Export.DirectCADtoDXF.CADtoDXF(cadImage); cadExp.SaveToFile(dxf...
- 04 May 2009, 18:12
- Forum: CAD .NET
- Topic: Save CADImage to DXF file
- Replies: 2
- Views: 12495
Save CADImage to DXF file
Hello.
How i can save changed CADImage to DXF file without CADViewerControl?
How i can save changed CADImage to DXF file without CADViewerControl?
Code: Select all
CADImage cadImage = CADImage.CreateImageByExtension(filePath);
cadImage.LoadFromFile(filePath);
// some changes in cadImage
// saving