I am trying to export a report to PDF/A format using this code:
Stimulsoft.Report.StiReport report = new StiReport();
report.RegData(dataSet1);
report.Load(strRapportmalkatalog + "\\protokoll.mrt");
report.Render(true);
report.Show(true);
Then, when im ready to export, the code looks like this:
report.ExportDocument(StiExportFormat.Pdf, filename);
But this is just Pdf and not PDF/A. I am using version 2011.1.1000.0 of the library, and the only place i can see PDF/A is in the report previewer. But I need to do this in the code.
Export report to PDF/A format
Export report to PDF/A format
Hello,
Please use the following code for export report:
Thank you.
Please use the following code for export report:
Code: Select all
StiPdfExportSettings settings = new StiPdfExportSettings();
settings.PdfACompliance = true;
rep.ExportDocument(StiExportFormat.Pdf, filename, settings);
Export report to PDF/A format
I will try that, thank you.
Export report to PDF/A format
Hello,
Ok! Let us know about the result.
Thank you.
Ok! Let us know about the result.
Thank you.