ลองDompdf (ตรวจสอบซอร์สโค้ดที่ GitHub ) ซึ่งเป็นโปรแกรมแปลง HTML เป็น PDF ห้องสมุดนี้ใช้งานง่ายมากและติดตั้งง่ายมาก ใช้แต่งเพลงคุณสามารถตั้งค่าได้อย่างรวดเร็ว
ข้อกำหนด: PHP 5.0+ (แนะนำ 5.3+), ส่วนขยาย DOM, ส่วนขยาย GD
ตัวอย่างรหัส PHP:
<?php
// somewhere early in your project's loading, require the Composer autoloader
// see: http://getcomposer.org/doc/00-intro.md
require 'vendor/autoload.php';
// disable DOMPDF's internal autoloader if you are using Composer
define('DOMPDF_ENABLE_AUTOLOAD', false);
// include DOMPDF's default configuration
require_once 'vendor/dompdf/dompdf/dompdf_config.inc.php';
$htmlString = '';
ob_start();
include('html_to_dpf.html');
$htmlString .= ob_get_clean();
$dompdf = new DOMPDF();
$dompdf->load_html($htmlString);
$dompdf->render();
$dompdf->stream("sample.pdf");