Skip to main content

QR Code Extension

Commands

dbr.qrcode - Displays a QR code

Syntax

select 'dbr.qrcode'

Usage

The dbr.qrcode command accepts either a plain text string or a JSON object containing configuration options. For more information on the available settings, refer to the QRCode.js documentation.

select 'dbr.keepwithnext';

select 'dbr.subtitle', 'URL';
select 'dbr.qrcode';

select 'https://mydbr.com';

select 'dbr.subtitle', 'Email';
select 'dbr.qrcode';

select 'mailto:sales@mydbr.com';

select 'dbr.keepwithnext', 'reset';

select 'dbr.keepwithnext';
select 'dbr.subtitle', 'Telephone';
select 'dbr.qrcode';

select 'tel:+1-000-000-0000';

select 'dbr.subtitle', 'Geolocation with options';
select 'dbr.qrcode';
select '{
text: "geo:60.16997,24.93853",
width: 128,
height: 128,
colorDark : "#67a814",
colorLight : "#ffffff",
correctLevel : QRCode.CorrectLevel.H
}';