Compare commits
2 Commits
44e58d2d78
...
62774aec0f
| Author | SHA1 | Date | |
|---|---|---|---|
| 62774aec0f | |||
|
|
b92419b927 |
@@ -775,12 +775,17 @@ class StickerPdfService
|
||||
}
|
||||
}
|
||||
|
||||
// return $pdf->Output('sticker.pdf', 'S');
|
||||
$pdfContent = $pdf->Output('sticker.pdf', 'S');
|
||||
$pdfContent = $pdf->Output('', 'S'); // 'S' returns string
|
||||
|
||||
return (new Response($pdfContent, 200))
|
||||
->header('Content-Type', 'application/pdf')
|
||||
->header('Content-Disposition', 'inline; filename="sticker.pdf"');
|
||||
// Encode as base64
|
||||
return base64_encode($pdfContent);
|
||||
|
||||
// // return $pdf->Output('sticker.pdf', 'S');
|
||||
// $pdfContent = $pdf->Output('sticker.pdf', 'S');
|
||||
|
||||
// return (new Response($pdfContent, 200))
|
||||
// ->header('Content-Type', 'application/pdf')
|
||||
// ->header('Content-Disposition', 'inline; filename="sticker.pdf"');
|
||||
}
|
||||
|
||||
// private function hexToRgb($hex)
|
||||
|
||||
Reference in New Issue
Block a user