contributte / pdf

📮 PDF toolbox for Nette Framework using mPDF
https://contributte.org/packages/contributte/pdf.html
GNU Lesser General Public License v3.0
40 stars 26 forks source link

Incorrect documentation of setting temp directory #60

Closed LukasVaculcik closed 9 months ago

LukasVaculcik commented 12 months ago

In documentation section Configuration of custom temp dir for mPDF in PdfResponse Is example of setting configuration of tempDir that is not working.

I repost solution from nette.org forum

Configuration should be:

services:
  - Contributte\PdfResponse\PdfResponseFactory([tempDir: %tempDir%/pdf])

and then creation of response object in PHP should be like:

$response = $this->pdfResponseFactory->createResponse();

instead of

$response = new PdfResponse();
f3l1x commented 9 months ago

Updated. Thx.