123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- <?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 054');
- $pdf->SetSubject('TCPDF Tutorial');
- $pdf->SetKeywords('TCPDF, PDF, example, test, guide');
- $pdf->SetHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE.' 054', 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->setFontSubsetting(false);
- $pdf->SetFont('helvetica', '', 10, '', false);
- $pdf->AddPage();
- $html = <<<EOD
- <h1>XHTML Form Example</h1>
- <form method="post" action="http://localhost/printvars.php" enctype="multipart/form-data">
- <label for="name">name:</label> <input type="text" name="name" value="" size="20" maxlength="30" /><br />
- <label for="password">password:</label> <input type="password" name="password" value="" size="20" maxlength="30" /><br /><br />
- <label for="infile">file:</label> <input type="file" name="userfile" size="20" /><br /><br />
- <input type="checkbox" name="agree" value="1" checked="checked" /> <label for="agree">I agree </label><br /><br />
- <input type="radio" name="radioquestion" id="rqa" value="1" /> <label for="rqa">one</label><br />
- <input type="radio" name="radioquestion" id="rqb" value="2" checked="checked"/> <label for="rqb">two</label><br />
- <input type="radio" name="radioquestion" id="rqc" value="3" /> <label for="rqc">three</label><br /><br />
- <label for="selection">select:</label>
- <select name="selection" size="0">
- <option value="0">zero</option>
- <option value="1">one</option>
- <option value="2">two</option>
- <option value="3">three</option>
- </select><br /><br />
- <label for="selection">select:</label>
- <select name="multiselection" size="2" multiple="multiple">
- <option value="0">zero</option>
- <option value="1">one</option>
- <option value="2">two</option>
- <option value="3">three</option>
- </select><br /><br /><br />
- <label for="text">text area:</label><br />
- <textarea cols="40" rows="3" name="text">line one
- line two</textarea><br />
- <br /><br /><br />
- <input type="reset" name="reset" value="Reset" />
- <input type="submit" name="submit" value="Submit" />
- <input type="button" name="print" value="Print" onclick="print()" />
- <input type="hidden" name="hiddenfield" value="OK" />
- <br />
- </form>
- EOD;
- $pdf->writeHTML($html, true, 0, true, 0);
- $pdf->lastPage();
- $pdf->Output('example_054.pdf', 'I');
|