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.
$report->engine = StiEngineType::ServerNodeJS;
$report->process();
$report->loadFile('reports/SimpleList.mrt');
$report->render();
$settings = new StiPdfExportSettings();
$settings->creatorString = 'My Company Name';
$settings->embeddedFonts = false;
$filePath = 'reports/SimpleList.pdf';
$report->exportDocument(StiExportFormat::Pdf, $settings, false, $filePath);engine = StiEngineType::ServerNodeJS — renders on the server with the Node.js engine.new StiPdfExportSettings() — the PDF-specific settings object (creatorString, embeddedFonts, …).exportDocument(Pdf, $settings, false, $filePath) — exports with those settings and writes the result straight to a file.StiPdfExportSettings) passed to exportDocument; the extra arguments let you write the result straight to a file on the server.