%PDF-1.7 1 0 obj << /Type /Catalog /Outlines 2 0 R /Pages 3 0 R >> endobj 2 0 obj << /Type /Outlines /Count 0 >> endobj 3 0 obj << /Type /Pages /Kids [6 0 R 11 0 R 13 0 R 15 0 R ]
...
../Producer (��dompdf 2.0.8 + CPDF) /CreationDate (D:20240717205606+05'30') /ModDate (D:20240717205606+05'30') /Title (�,�PCV Template) >> endobj 6 0 obj .c< /Type Wage /MediaBox [0.000 0.000 841.890 1190.550] /Parent 3 0 R /Contents 7 0 R>> endobj 7 0 obj << /Filter /FlateDecode /Length 7095 >> stream
x��e�■1�0r6) �W��L� 0 .i..6g$Y0 0 �0p8�,�0 ... etc.
我已经尝试修复这个错误 4-5 个小时了。请看一下并告诉我如何修复它。
$pdf = PDF::loadView('pdf.cv',['candidates_data' => $candidate])->setPaper('A3','portrait');
return $pdf->stream('cv.pdf');`
正如评论中提到的,您可以使用
download
方法而不是 stream
保存文件
return $pdf->download('cv.pdf');
或者您可以通过设置以下一系列标题来告诉浏览器将流显示为 PDF:
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="' . $filename . '"');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');