1. Go to this page and download the library: Download dfridrich/qr-platba 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/ */
dfridrich / qr-platba example snippets
efr\QRPlatba\QRPlatba;
$qrPlatba = new QRPlatba();
$qrPlatba->setAccount('12-3456789012/0100') // nastavení č. účtu
->setIBAN('CZ3112000000198742637541') // nastavení č. účtu
->setVariableSymbol('2016001234')
->setMessage('Toto je první QR platba.')
->setConstantSymbol('0308')
->setSpecificSymbol('1234')
->setAmount('1234.56')
->setCurrency('CZK') // Výchozí je CZK, lze zadat jakýkoli ISO kód měny
->setDueDate(new \DateTime());
echo $qrPlatba->getQRCodeImage(); // Zobrazí <img> tag s kódem, viz níže
echo QRPlatba::create('12-3456789012/0100', 987.60)
->setMessage('QR platba je parádní!')
->getQRCodeImage();
echo QRPlatba::create('CZ6508000000192000145399', 987.60)
->setMessage('QR platba je parádní!')
->getQRCodeImage();
// Uloží png o velikosti 100x100 px
$qrPlatba->saveQRCodeImage("qrcode.png", "png", 100);
// Uloží svg o velikosti 100x100 px
$qrPlatba->saveQRCodeImage("qrcode.svg", "svg", 100);
// Generování jen QR Faktury
$qrPlatba->setIsOnlyInvoice(true)->setLabel('QR Faktura');