1 | <?php
|
---|
2 | $msg = "Le site de html2pdf\nhttp://html2pdf.fr/";
|
---|
3 | ?>
|
---|
4 | <page backtop="10mm" >
|
---|
5 | <page_header>
|
---|
6 | <table style="width: 100%; border: solid 1px black;">
|
---|
7 | <tr>
|
---|
8 | <td style="text-align: left; width: 50%">html2pdf</td>
|
---|
9 | <td style="text-align: right; width: 50%">Exemples de QRcode</td>
|
---|
10 | </tr>
|
---|
11 | </table>
|
---|
12 | </page_header>
|
---|
13 | <h1>Exemples de QRcode</h1>
|
---|
14 | <h3>Message avec Correction d'erreur L, M, Q, H (valeur par défaut : H)</h3>
|
---|
15 | <qrcode value="<?php echo $msg; ?>" ec="L" style="width: 30mm;"></qrcode>
|
---|
16 | <qrcode value="<?php echo $msg; ?>" ec="M" style="width: 30mm;"></qrcode>
|
---|
17 | <qrcode value="<?php echo $msg; ?>" ec="Q" style="width: 30mm;"></qrcode>
|
---|
18 | <qrcode value="<?php echo $msg; ?>" ec="H" style="width: 30mm;"></qrcode>
|
---|
19 | <br>
|
---|
20 | <h3>Message avec différentes largeurs</h3>
|
---|
21 | <qrcode value="<?php echo $msg; ?>" style="width: 20mm;"></qrcode>
|
---|
22 | <qrcode value="<?php echo $msg; ?>" style="width: 30mm;"></qrcode>
|
---|
23 | <qrcode value="<?php echo $msg; ?>" style="width: 40mm;"></qrcode>
|
---|
24 | <qrcode value="<?php echo $msg; ?>" style="width: 50mm;"></qrcode>
|
---|
25 | <br>
|
---|
26 | <h3>Message de différentes couleurs</h3>
|
---|
27 | <qrcode value="<?php echo $msg; ?>" style="width: 40mm; background-color: white; color: black;"></qrcode>
|
---|
28 | <qrcode value="<?php echo $msg; ?>" style="width: 40mm; background-color: yellow; color: red"></qrcode>
|
---|
29 | <qrcode value="<?php echo $msg; ?>" style="width: 40mm; background-color: #FFCCFF; color: #003300"></qrcode>
|
---|
30 | <qrcode value="<?php echo $msg; ?>" style="width: 40mm; background-color: #CCFFFF; color: #003333"></qrcode>
|
---|
31 | <br>
|
---|
32 | <h3>Message sans border</h3>
|
---|
33 | <qrcode value="<?php echo $msg; ?>" style="border: none; width: 40mm;"></qrcode>
|
---|
34 | <br>
|
---|
35 | </page>
|
---|