siddharth_application/application/third_party/mpdf/examples/example39_PDFA_compliance.php
venbatechnologies@gmail.com 72f35f472a dompdf changes to mpdf
2017-10-31 20:19:28 +05:30

31 lines
860 B
PHP
Executable File

<?php
$html = '
<h1>mPDF</h1>
<h2>PDFA Compliance</h2>
<p>PDF/A1-b is a file format for the long-term archiving of electronic documents. This is an example of a PDF/A1-b compliant files.</p>
';
//==============================================================
//==============================================================
//==============================================================
include("../mpdf.php");
$mpdf=new mPDF();
$mpdf->PDFA = true;
$mpdf->PDFAauto = true;
$mpdf->WriteHTML($html);
$mpdf->Output();
exit;
//==============================================================
//==============================================================
//==============================================================
//==============================================================
//==============================================================
?>