first commit
This commit is contained in:
59
html2pdf_v4.03/examples/regle.php
Executable file
59
html2pdf_v4.03/examples/regle.php
Executable file
@ -0,0 +1,59 @@
|
||||
<?php
|
||||
/**
|
||||
* HTML2PDF Librairy - example
|
||||
*
|
||||
* HTML => PDF convertor
|
||||
* distributed under the LGPL License
|
||||
*
|
||||
* @author Laurent MINGUET <webmaster@html2pdf.fr>
|
||||
*
|
||||
* isset($_GET['vuehtml']) is not mandatory
|
||||
* it allow to display the result in the HTML format
|
||||
*/
|
||||
|
||||
// get the HTML
|
||||
ob_start();
|
||||
?>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
table
|
||||
{
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: none;
|
||||
border-right: solid 0.2mm black;
|
||||
}
|
||||
td
|
||||
{
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: none;
|
||||
}
|
||||
|
||||
img
|
||||
{
|
||||
width: 10mm;
|
||||
}
|
||||
-->
|
||||
</style>
|
||||
<page>
|
||||
<table cellpadding="0" cellspacing="0"><tr>
|
||||
<?php for($k=0; $k<28; $k++) echo '<td><img src="./res/regle.png" alt="" ><br>'.$k.'</td>'; ?>
|
||||
</tr></table>
|
||||
</page>
|
||||
<?php
|
||||
$content = ob_get_clean();
|
||||
|
||||
// convert to PDF
|
||||
require_once(dirname(__FILE__).'/../htdocs2pdf.class.php');
|
||||
try
|
||||
{
|
||||
$html2pdf = new HTML2PDF('L', 'A4', 'fr', true, 'UTF-8', 10);
|
||||
$html2pdf->pdf->SetDisplayMode('fullpage');
|
||||
$html2pdf->writeHTML($content, isset($_GET['vuehtml']));
|
||||
$html2pdf->Output('regle.pdf');
|
||||
}
|
||||
catch(HTML2PDF_exception $e) {
|
||||
echo $e;
|
||||
exit;
|
||||
}
|
Reference in New Issue
Block a user