mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 12:37:14 +01:00
617 B
617 B
Barcodes
QR-Codes
Beispiel
$factory = $this->app->Container->get('BarcodeFactory');
// Qrcode-Objekt erzeugen
$ecLevel = 'M'; // M = Medium error correction
$qrcode = $factory->createQrCode($qrtext, $ecLevel);
// Varianten für die Ausgabe
$html = $qrcode->toHtml($width, $height, $color);
$svg = $qrcode->toSvg($width, $height, $color);
$png = $qrcode->toPng($width, $height, $color);
Fehlerkorrektur-Levels
L
= Low / Niedrige Fehlerkorrektur (Default)M
= Medium / Mittlere FehlerkorrekturQ
= Quartile / Bessere FehlerkorrekturH
= High / Höchste Fehlerkorrektur