php如何把html轉(zhuǎn)換成pdf

PHP
小億
97
2024-10-11 15:40:13

要將HTML轉(zhuǎn)換為PDF,可以使用PHP的第三方庫(kù),例如dompdf。以下是使用dompdf將HTML轉(zhuǎn)換為PDF的步驟:

  1. 下載并安裝dompdf庫(kù)。你可以從官方網(wǎng)站下載,或者使用Composer進(jìn)行安裝:
composer require dompdf/dompdf
  1. 在你的PHP腳本中引入dompdf庫(kù),并創(chuàng)建一個(gè)新的Dompdf實(shí)例:
require_once 'vendor/autoload.php';
use Dompdf\Dompdf;

$dompdf = new Dompdf();
  1. 加載HTML內(nèi)容,并將其渲染為PDF:
$html = '<!DOCTYPE html>
<html>
<head>
    <title>Example HTML to PDF</title>
</head>
<body>
    <h1>Hello, World!</h1>
    <p>This is an example of converting HTML to PDF using dompdf.</p>
</body>
</html>';

$dompdf->loadHtml($html);
  1. 設(shè)置PDF的選項(xiàng)(可選),例如頁(yè)面大小、方向等:
$dompdf->set_option('isRemoteEnabled', true);
$dompdf->set_option('isHTML5ParserEnabled', true);
$dompdf->set_option('isFontSubstitutingEnabled', true);
$dompdf->set_option('defaultMediaType', 'html');
$dompdf->set_option('paperSize', 'a4');
$dompdf->set_option('paperOrientation', 'portrait');
  1. 渲染HTML并獲取PDF輸出:
$dompdf->render();
$pdf = $dompdf->output();
  1. 將PDF輸出保存到文件或直接發(fā)送到瀏覽器:
// 保存到文件
file_put_contents('example.pdf', $pdf);

// 直接發(fā)送到瀏覽器
header('Content-Type: application/pdf');
header('Content-Disposition: inline; filename="example.pdf"');
echo $pdf;

將以上代碼整合到一個(gè)完整的PHP腳本中,即可實(shí)現(xiàn)將HTML轉(zhuǎn)換為PDF的功能。

0