Create 2D-Barcodes using different providers. See 'Fork' below for maintained version.
Compatible with DokuWiki
Greebo
Search and install the plugin using the Extension Manager or manually with the download from the GitHub Mirror. Refer to Plugins on how to install plugins manually.
Last version can be found on GitHub, including project tracking.
Fork 2024-02-13 with ability to use local qrencode or zint library and compatibility for PHP 8.2 and DokuWiki version 2024-06-04a “Kaos” by Runout:
Repository | https://gitlab.com/dokuwiki-plugins/barcode |
---|
Barcode generates 2D barcodes using different providers, currently:
Zint supports a lot of different barcode types. Lookup the manpage!
Layout of the barcode can be defined by CSS styles.
Full documentation and examples here (English & Italian).
~~BARCODE~attribute1=value1~attribute2=value2~~
Only one attribute of type payload can be specified.
If no payload attribute is given a barcode pointing to the containing page is generated.
Attribute | Description | Type |
---|---|---|
id | Id to assign to the barcode img tag. Control for rendering via CSS. | optional |
class | Class to assign to the barcode img tag. Control for rendering via CSS. Possible values: barcode_left → barcode is left aligned barcode_right → barcode is right aligned barcode_center → barcode is centered | optional |
mode | Only for I-nigma provider. 0 is QR-Code, 1 is DataMatrix | optional |
size | Size of the barcode. Allowed values: S, M, L, XL | optional |
url | payload is an URL, e.g. url=https://example.org | payload |
sms | payload is a SMS, e.g. sms=+391234567890=A Message | payload |
tel | payload is a telephone number, e.g. tel=+391234567890 | payload |
contact | payload is a contact, e.g. contact=Name=+123432324=my@example.org | payload |
text | payload is a text, e.g. text=MAILTO:my@example.org | payload |
caption | caption to be used on the bottom of the barcode. Only for 'I-nigma' | optional |
bgcolor | Background color of the barcode. Only for qrencode and QRServer . For usage with qrencode see attribute background | optional |
foreground | color in hexadecimal notation: RRGGBB[AA] 6-digit (RGB) or 8-digit (RGBA). Color output support available only in PNG, EPS and SVG. | optional Runout fork only |
background | color in hexadecimal notation: RRGGBB[AA] 6-digit (RGB) or 8-digit (RGBA). Color output support available only in PNG, EPS and SVG. | optional Runout fork only |
level | Error correction level. Allowed values: L, M, Q, H | optional Runout fork only |
margin | Width of margin. (default=4) | optional Runout fork only |
dpi | DPI of the generated PNG. (default=72) | optional Runout fork only |
~~BARCODE~class=barcode_left~url=http://www.eiroca.net/dokuwiki~size=S~~ ~~BARCODE~class=barcode_right~url=http://www.eiroca.net/dokuwiki~size=S~~ ~~BARCODE~class=barcode_center~size=M~~
For Zint (Runout fork only) use the long form parameters of the cli.
size is a synonym for scale.
~~BARCODE~class=barcode_left~url=https://www.example.org~fg=AA0000~size=S~~ ~~BARCODE~barcode=aztec~scale=L~~
Plugin is based upon QRCode
Copyright © 2010-2019 eIrOcA (eNrIcO Croce & sImOnA Burzio)
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Is possible to draw a QR code of current page?
From version 2010/01/20 without specifying the payload, e.g.
~~BARCODE~~
Please raise request here.