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('', 'S'); // 'S' returns string
|
||||||
$pdfContent = $pdf->Output('sticker.pdf', 'S');
|
|
||||||
|
|
||||||
return (new Response($pdfContent, 200))
|
// Encode as base64
|
||||||
->header('Content-Type', 'application/pdf')
|
return base64_encode($pdfContent);
|
||||||
->header('Content-Disposition', 'inline; filename="sticker.pdf"');
|
|
||||||
|
// // 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)
|
// private function hexToRgb($hex)
|
||||||
|
|||||||
Reference in New Issue
Block a user