Cloud
Cloud-Dienstleistung für schnelle und effektive Analyse und Visualisierung von Daten für Ihr Business ohne eigene Applikationen zu erstellen oder zu programmieren.
var report = StiReport.CreateNewReport();
report.Load("Reports\\Invoice.mrt");
report.Render();
byte[] xmlBuf = File.ReadAllBytes("Reports\\ZUGFeRD-sample.xml");
var settings = new StiPdfExportSettings
{
ZUGFeRDComplianceMode = StiPdfZUGFeRDComplianceMode.V2_1,
ZUGFeRDInvoiceData = xmlBuf,
ZUGFeRDConformanceLevel = "EN 16931"
};
report.ExportDocument(StiExportFormat.Pdf, fileStream, settings);ZUGFeRDInvoiceData — the invoice XML bytes embedded into the PDF.ZUGFeRDComplianceMode / ZUGFeRDConformanceLevel — select the ZUGFeRD version and profile (here EN 16931).