Problems with saving DXF
Moderators: SDS, support, admin
Problems with saving DXF
I have a big problem with saving DXF file.
When I try to save the result of my program consist many DXF's on the canva (picture) then instead of one big DXF consist my previous positioned DXF's in proper positions, I recieve one file with chaotic placed DXF's.
To save a file I use folowing code:
To insert next DXF's on the canva I use AddScaledDXFEx method and I work on TsgDXFInsert objects, as follow:
The problem is bigger than I thought before, because users on other computers don't see even chaotic placed DXF on the canva, but only first DXF (first means that one which was read first during my program work). It looks like SaveToFile functions save some kind of references - not DXF file which I really want and which should be readable on each computer (especially in AutoCAD enviroment).
Thank you for any help.
Best regards,
Mariusz Hyżorek
When I try to save the result of my program consist many DXF's on the canva (picture) then instead of one big DXF consist my previous positioned DXF's in proper positions, I recieve one file with chaotic placed DXF's.
To save a file I use folowing code:
Code: Select all
TsgCADtoDXF * vExpCADfile;
TGraphic * vGr = sgPaintBox->Picture->Graphic;
if ((vGr)&&(vGr->InheritsFrom(__classid(TsgCADImage))))
{
vExpCADfile = new TsgCADtoDXF((TsgCADImage *)vGr);
try
{
vExpCADfile->SaveToFile(SaveDialog3->FileName);
ShowMessage("Export to DXF done");
}
__finally
{
delete vExpCADfile;
}
Code: Select all
if(InsertList == NULL)
{
Insert = vGlobalCADFile->AddScaledDXFEx(vCADFiles,FileName,P,Scale,0);
vGlobalCADFile->Converter->Loads(Insert);
InsertList = new TList;
InsertList->Add(Insert);
sgPaintBox->Picture->Graphic = vGlobalCADFile;
vGlobalCADFile = GetImg();
}
Thank you for any help.
Best regards,
Mariusz Hyżorek
Re: Problems with saving DXF
Hello Mariusz.
XRef image doesn't stored within DXF file. Main file contains only reference paths to files that will be loaded on file-container import. That is why users on other computers can't see referenced images - the local path on another PC doesn't contain referenced file. One more addition, AutoCAD doesn't support referenced DXF, but DWG only. Such functionality accessible with CAD Import VCL only.
If I'm correct then you need receive the file that will contain entities from some specified files. One of our clients deal with such problem recently. Possibly you find the following topic as helpful: http://www.cadsofttools.com/forum/viewt ... =14&t=1925
Also such code is incorrect:
XRef object added to converter within AddScaledDXFEx function, you don't need load it as Insert again.
Alexander.
XRef image doesn't stored within DXF file. Main file contains only reference paths to files that will be loaded on file-container import. That is why users on other computers can't see referenced images - the local path on another PC doesn't contain referenced file. One more addition, AutoCAD doesn't support referenced DXF, but DWG only. Such functionality accessible with CAD Import VCL only.
If I'm correct then you need receive the file that will contain entities from some specified files. One of our clients deal with such problem recently. Possibly you find the following topic as helpful: http://www.cadsofttools.com/forum/viewt ... =14&t=1925
Also such code is incorrect:
Code: Select all
Insert = vGlobalCADFile->AddScaledDXFEx(vCADFiles,FileName,P,Scale,0);
vGlobalCADFile->Converter->Loads(Insert);
Alexander.
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support
Re: Problems with saving DXF
Hello Alexander.
Thank you for a clue. I've made some changes basing on http://www.cadsofttools.com/forum/viewt ... =14&t=1925 and now I'm thinking is much better than was before.
Best regards,
Mariusz Hyżorek
Thank you for a clue. I've made some changes basing on http://www.cadsofttools.com/forum/viewt ... =14&t=1925 and now I'm thinking is much better than was before.
Best regards,
Mariusz Hyżorek