01.
require_once
(
'tcpdf/tcpdf.php'
);
02.
$obj_pdf
=
new
TCPDF(
'P'
, PDF_UNIT, PDF_PAGE_FORMAT, true,
'UTF-8'
, false);
03.
$obj_pdf
->SetCreator(PDF_CREATOR);
04.
$obj_pdf
->SetTitle(
'Product'
);
05.
$obj_pdf
->SetHeaderData(
''
,
''
, PDF_HEADER_TITLE, PDF_HEADER_STRING);
06.
$obj_pdf
->setHeaderFont(Array(PDF_FONT_NAME_MAIN,
''
, PDF_FONT_SIZE_MAIN));
07.
$obj_pdf
->setFooterFont(Array(PDF_FONT_NAME_DATA,
''
, PDF_FONT_SIZE_DATA));
08.
$obj_pdf
->SetDefaultMonospacedFont(
'helvetica'
);
09.
$obj_pdf
->SetFooterMargin(PDF_MARGIN_FOOTER);
10.
$obj_pdf
->SetMargins(PDF_MARGIN_LEFT,
'5'
, PDF_MARGIN_RIGHT);
11.
$obj_pdf
->setPrintHeader(false);
12.
$obj_pdf
->setPrintFooter(false);
13.
$obj_pdf
->SetAutoPageBreak(TRUE, 10);
14.
$obj_pdf
->SetFont(
'thsarabun'
,
''
, 15);
15.
16.
$obj_pdf
->AddPage();
17.
$obj_pdf
->writeHTML(
$content
);
18.
$obj_pdf
->Output(
'Product'
.pdf
', '
I');