123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <?php
- require_once('../config/lang/eng.php');
- require_once('../tcpdf.php');
- $pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
- $pdf->SetCreator(PDF_CREATOR);
- $pdf->SetAuthor('Nicola Asuni');
- $pdf->SetTitle('TCPDF Example 053');
- $pdf->SetSubject('TCPDF Tutorial');
- $pdf->SetKeywords('TCPDF, PDF, example, test, guide');
- $pdf->SetHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE.' 053', PDF_HEADER_STRING);
- $pdf->setHeaderFont(Array(PDF_FONT_NAME_MAIN, '', PDF_FONT_SIZE_MAIN));
- $pdf->setFooterFont(Array(PDF_FONT_NAME_DATA, '', PDF_FONT_SIZE_DATA));
- $pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
- $pdf->SetMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT);
- $pdf->SetHeaderMargin(PDF_MARGIN_HEADER);
- $pdf->SetFooterMargin(PDF_MARGIN_FOOTER);
- $pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
- $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
- $pdf->setLanguageArray($l);
- $pdf->SetFont('times', '', 14);
- $pdf->AddPage();
- $text = 'This is an example of <strong>JavaScript</strong> usage on PDF documents.<br /><br />For more information check the source code of this example, the source code documentation for the <i>IncludeJS()</i> method and the <i>JavaScript for Acrobat API Reference</i> guide.<br /><br /><a href="http://www.tcpdf.org">www.tcpdf.org</a>';
- $pdf->writeHTML($text, true, 0, true, 0);
- $js = <<<EOD
- app.alert('JavaScript Popup Example', 3, 0, 'Welcome');
- var cResponse = app.response({
- cQuestion: 'How are you today?',
- cTitle: 'Your Health Status',
- cDefault: 'Fine',
- cLabel: 'Response:'
- });
- if (cResponse == null) {
- app.alert('Thanks for trying anyway.', 3, 0, 'Result');
- } else {
- app.alert('You responded, "'+cResponse+'", to the health question.', 3, 0, 'Result');
- }
- EOD;
- $js .= 'print(true);';
- $pdf->IncludeJS($js);
- $pdf->Output('example_053.pdf', 'I');
|