PHP code example of blahasoft / qrfaktura
1. Go to this page and download the library: Download blahasoft/qrfaktura library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
blahasoft / qrfaktura example snippets
lahaSoft\QRFaktura\QRFaktura;
$qrFakt = new QRFaktura(true); //vystup primo do prohlizece
echo $qrFakt->getQRCode($_GET); //posle vygenerovany QR kod do prohlizece
// nebo...
$qrFakt = new QRFaktura(false); // standardni vystup
$img = $qrFakt->getQRCode($_GET); //vrati vygenerovany QR kod
echo '<html><body><img src="data:image/png;base64,'.base64_encode($img).'" /></body></html>';*/