DXFExport .NET - how to use DC?

Discuss and ask questions about CAD .NET library.

Moderators: SDS, support, admin

Evgeny
Posts: 115
Joined: 16 Mar 2004, 11:04
Location: Russia

Post by Evgeny » 19 Sep 2005, 09:09

<blockquote id="quote"><font size="1" face="Verdana, Arial, Helvetica" id="quote">quote:<hr height="1" noshade id="quote"><i>Originally posted by xander</i>
<br />Thanks for the update, we have almost reached the point of success. Unfortunately there appears to be a problem with the MetaForm.mfGraph property that prevents you from drawing a GraphicsPath object. See the following two examples that illustrate the problem:

public string Works()
{
Form form = new Form();
form.Width = 500;
form.Height = 500;
form.Show();
MetaForm mf = new MetaForm(form, EmfType.EmfPlusDual, true);
mf.mfGraph.DrawRectangle(new Pen(Color.Black, 1), new Rectangle(100, 400, 50, 50));
mf.mfGraph.Dispose();
StringWriter st1 = new StringWriter();
mf.SplitingToStream(form.Handle, st1);
form.Close();
return st1.ToString();
}

public string DoesNotWork()
{
Form form = new Form();
form.Width = 500;
form.Height = 500;
form.Show();
MetaForm mf = new MetaForm(form, EmfType.EmfPlusDual, true);
GraphicsPath path = new GraphicsPath();
path.AddRectangle(new Rectangle(100, 400, 50, 50));
mf.mfGraph.DrawPath(new Pen(Color.Black, 1), path);
mf.mfGraph.Dispose();
StringWriter st1 = new StringWriter();
mf.SplitingToStream(form.Handle, st1);
form.Close();
return st1.ToString();
}

Thanks in advance.
<hr height="1" noshade id="quote"></font id="quote"></blockquote id="quote">

Thank you for detailed post.
GraphicsPath object is still not implemented. It will be added in a day or two.

xander
Posts: 10
Joined: 29 Aug 2005, 06:59

Post by xander » 20 Sep 2005, 06:05

Thanks, I'm looking forward to the new release.

Also, can you please make sure that the MetaForm.mfGraph.Transform property works correctly since we make multiple changes to the Graphics.Transform during the process of drawing of our graphics. I think that there is something weird happening, but I will only know for sure once you have implemented the DrawPath() method.

Once again, thanks in advance.

Evgeny
Posts: 115
Joined: 16 Mar 2004, 11:04
Location: Russia

Post by Evgeny » 21 Sep 2005, 09:55

DXF Export .NET processes MetaForm.mfGraph.Transform property. Linear Paths implemented (not published yet), we are working on round paths.

pablomac
Posts: 10
Joined: 22 Sep 2005, 16:34
Location: Argentina

Post by pablomac » 22 Sep 2005, 16:37

HI!!, is GraphicsPath ready in the "DXF Exporter .NET"???

THX.

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Post by support » 22 Sep 2005, 16:59

Hi,

We are close to finish it. We'll inform you immediately when the work will be done.

Sergey.

please post questions to the forum or write to support@cadsofttools.com

pablomac
Posts: 10
Joined: 22 Sep 2005, 16:34
Location: Argentina

Post by pablomac » 22 Sep 2005, 17:09

<blockquote id="quote"><font size="1" face="Verdana, Arial, Helvetica" id="quote">quote:<hr height="1" noshade id="quote"><i>Originally posted by support</i>
<br />Hi,

We are close to finish it. We'll inform you immediately when the work will be done.

Sergey.

please post questions to the forum or write to support@cadsofttools.com

<hr height="1" noshade id="quote"></font id="quote"></blockquote id="quote">

THX Sergey, I'm really looking foward to this feature to be ready!!, please let me know when it's done.

Pablo.

pablomac
Posts: 10
Joined: 22 Sep 2005, 16:34
Location: Argentina

Post by pablomac » 22 Sep 2005, 19:11

<b> Post replaced to http://www.cadsofttools.com/forum/topic ... PIC_ID=133 </b>

<i>Moderator</i>

Evgeny
Posts: 115
Joined: 16 Mar 2004, 11:04
Location: Russia

Post by Evgeny » 23 Sep 2005, 08:35

<blockquote id="quote"><font size="1" face="Verdana, Arial, Helvetica" id="quote">quote:<hr height="1" noshade id="quote"><i>Originally posted by xander</i>
<br />Thanks, I'm looking forward to the new release.

Also, can you please make sure that the MetaForm.mfGraph.Transform property works correctly since we make multiple changes to the Graphics.Transform during the process of drawing of our graphics. I think that there is something weird happening, but I will only know for sure once you have implemented the DrawPath() method.

Once again, thanks in advance.
<hr height="1" noshade id="quote"></font id="quote"></blockquote id="quote">

<blockquote id="quote"><font size="1" face="Verdana, Arial, Helvetica" id="quote">quote:<hr height="1" noshade id="quote"><i>Originally posted by pablomac</i>
HI!!, is GraphicsPath ready in the "DXF Exporter .NET"???
<hr height="1" noshade id="quote"></font id="quote"></blockquote id="quote">

Thank you for posts!

There are two objects added to GraphicsPath:
- AddLine
- AddRectangle
http://www.cadsofttools.com/download/DXFExportNET.zip

At present we are working with ellipses.

pablomac
Posts: 10
Joined: 22 Sep 2005, 16:34
Location: Argentina

Post by pablomac » 23 Sep 2005, 14:54

<blockquote id="quote"><font size="1" face="Verdana, Arial, Helvetica" id="quote">quote:<hr height="1" noshade id="quote"><i>Originally posted by Evgeny</i>
<br /><blockquote id="quote"><font size="1" face="Verdana, Arial, Helvetica" id="quote">quote:<hr height="1" noshade id="quote"><i>Originally posted by xander</i>
<br />Thanks, I'm looking forward to the new release.

Also, can you please make sure that the MetaForm.mfGraph.Transform property works correctly since we make multiple changes to the Graphics.Transform during the process of drawing of our graphics. I think that there is something weird happening, but I will only know for sure once you have implemented the DrawPath() method.

Once again, thanks in advance.
<hr height="1" noshade id="quote"></font id="quote"></blockquote id="quote">

That's fantastic!!!, keep on working guys!!

PD: Don't forget the poligons too!

Pablo

<blockquote id="quote"><font size="1" face="Verdana, Arial, Helvetica" id="quote">quote:<hr height="1" noshade id="quote"><i>Originally posted by pablomac</i>
HI!!, is GraphicsPath ready in the "DXF Exporter .NET"???
<hr height="1" noshade id="quote"></font id="quote"></blockquote id="quote">

Thank you for posts!

There are two objects added to GraphicsPath:
- AddLine
- AddRectangle
http://www.cadsofttools.com/download/DXFExportNET.zip

At present we are working with ellipses.
<hr height="1" noshade id="quote"></font id="quote"></blockquote id="quote">

pablomac
Posts: 10
Joined: 22 Sep 2005, 16:34
Location: Argentina

Post by pablomac » 23 Sep 2005, 15:33

I've been testing the Line and Rectangle GraphicsPath feature added yesterday in the DXF Export .NET; and i have some advices.

1. The GraphicsPath.StartFigure() doesn't seems to be working in the exporter, so, the exported GraphicsPath drawing is all conected!.
2. It's seems to be some kind of problems with the colours of the GrapicsPath, is that right?

THX.

PD: Hope this could help you!. When this feature is completely ready and working i'll be the first one to buy it!!!!!. How long do you think it's going to take to finish it?.

Pablo.

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Post by support » 23 Sep 2005, 18:46

Hi,

DXFExport.NET is a promptly developing product. Please send your notes or problem files to support@cadsofttools.com. It helps us to systematize tasks and hastens our work.

Thanks a lot for your notes and remarks! It is a real help for us!

Sergey.


please post questions to the forum or write to support@cadsofttools.com

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Post by support » 07 Jul 2006, 12:04

Hello all,
<blockquote id="quote"><font size="2" face="Verdana, Arial, Helvetica" id="quote">quote:<hr height="1" noshade id="quote"><i>Originally posted by xander</i>

Ok, I can replace the temporary invisible form with the ActiveForm, but how do I create the DXF string directly? You didn't really answer my question...

My question was: How can I convert mf.mfStream (in the above code) into a DXF string without using a temporary file? Or is that not possible?<hr height="1" noshade id="quote"></font id="quote"></blockquote id="quote">
The problem has been solved. Corrected version of DXFExport.NET is available on: http://www.cadsofttools.com/download/dxfexportnet.zip
Feild <b>DXFExport.current</b> - contains created DXF file.
Please us the following construction:

Code: Select all

DXFExport vDXF;
...
//add your code
vDXF.Save();
//get access to the strings of DXF file in the memory
DXFExport.current - contains dxf file
<blockquote id="quote"><font size="2" face="Verdana, Arial, Helvetica" id="quote">quote:<hr height="1" noshade id="quote"><i>Originally posted by pablomac</i>

I've been testing the Line and Rectangle GraphicsPath feature added yesterday in the DXF Export .NET; and i have some advices.

1. The GraphicsPath.StartFigure() doesn't seems to be working in the exporter, so, the exported GraphicsPath drawing is all conected!.
2. It's seems to be some kind of problems with the colours of the GrapicsPath, is that right?

THX.

PD: Hope this could help you!. When this feature is completely ready and working i'll be the first one to buy it!!!!!. How long do you think it's going to take to finish it?.

Pablo.<hr height="1" noshade id="quote"></font id="quote"></blockquote id="quote">
The problem has been solved.
Corrected version of DXFExport.NET is available on: http://www.cadsofttools.com/download/dxfexportnet.zip

Sergey.

please post questions to the forum or write to support@cadsofttools.com

Post Reply