Skip to main content
1-Visitor
November 11, 2014
Question

To export a drw to PDF using J-link

  • November 11, 2014
  • 3 replies
  • 3396 views

Hello!

 

Has someone already exported a drw to PDF using J-link?

 

Thank you!

3 replies

1-Visitor
November 14, 2014

Hi,

PDFExportInstructions exportInstructions = pfcExport.PDFExportInstructions_Create();

curDrawing.Export("fileName", exportInstructions);

Best Regards,

1-Visitor
November 17, 2014

Thanks for the help Tommy Bijnens!

The pdf is opening right after it is generated, do you know if there is any way for it not to open?

In my application, it is not necessary to open the pdf to view.

Thanks!

10-Marble
November 17, 2014

Hello,

We use this for our PDF export.

PDFOption MyPdfOption = pfcExport.PDFOption_Create();

MyPdfOption.SetOptionType(PDFOptionType.PDFOPT_LAUNCH_VIEWER);

MyPdfOption.SetOptionValue(pfcArgument.CreateBoolArgValue(false));

Myoptions.append(MyPdfOption);

Hope it helps.

Regards.

1-Visitor
November 18, 2014

We use a .DOP file for configuration of the export.

But if you only need to set this one option, Paul's sollution might be more practical.

1-Visitor
November 18, 2014

Paul,

Only one question. The "myoptions" attribute is StringBuffer?

At first, this solution did not work as expected.

Thank you!

1-Visitor
November 18, 2014

Thank you!

It worked as I expected.