You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I realized that adding the file format (.pdf) is necessary when using the function $pdfService->saveToOutput (at least on Windows). Somehow is it removed in the download although the temporary file has the ending (which is added automatically by getFullTempFileName() in PdfSettings.php
In the
README.md
its said$absolutepathToFile = $pdfService->saveToFile('myPdf.pdf');
(line 35)This leads to a file named
myPdf.pdf.pdf
.To it need to be
$absolutepathToFile = $pdfService->saveToFile('myPdf');
The text was updated successfully, but these errors were encountered: