HTML-PDF 변환기 인 Dompdf ( GitHub에서 소스 코드 확인)를 사용해보십시오 . 이 라이브러리는 사용하기 쉽고 설치도 매우 쉽습니다. 작곡가 를 사용하면 매우 빠르게 설정할 수 있습니다.
요구 사항 : 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");