/plugin/barcodes/vendor/jucksearm/php-barcode/examples/ |
H A D | qrcode_html.php | 5 use jucksearm\barcode\QRcode; alias 7 QRcode::html('https://github.com/jucksearm/php-barcode')
|
H A D | qrcode_png.php | 5 use jucksearm\barcode\QRcode; alias 7 QRcode::png('https://github.com/jucksearm/php-barcode')
|
H A D | qrcode_svg.php | 5 use jucksearm\barcode\QRcode; alias 7 QRcode::svg('https://github.com/jucksearm/php-barcode')
|
/plugin/barcodes/vendor/jucksearm/php-barcode/ |
H A D | README.md | 9 - lib/QRcode.php ([include/barcodes/qrcode.php](https://github.com/tecnickcom/TCPDF/blob/master/include/barcodes/qrcode.php)) 84 ## QRcode Option 87 QRcode::html($code, $emblem = null, $level = null, $size = null, $margin = null, $color = null) 89 QRcode::png($code, $emblem = null, $file = null, $level = null, $size = null, $margin = null, $color = null) 91 QRcode::svg($code, $emblem = null, $file = null, $level = null, $size = null, $margin = null, $color = null) 96 $file QRcode save filename [default: `null`] 97 $level QRcode level L,M,Q,H [default: `L`] 98 $size QRcode width and height size in `px` units [default: `100`] 99 $margin QRcode empty space in `percentage` units [default: `1`]
|
H A D | QRcode.php | 7 class QRcode class
|
/plugin/barcodes/vendor/jucksearm/php-barcode/tests/ |
H A D | QRcodeTest.php | 3 use jucksearm\barcode\QRcode; alias 11 $this->class = new QRcode;
|
/plugin/barcodes/vendor/jucksearm/php-barcode/lib/ |
H A D | Barcode2D.php | 7 use jucksearm\barcode\lib\QRcode; alias 74 * @param $type (string) type of barcode: <ul><li>DATAMATRIX : Datamatrix (ISO/IEC 16022)</li><li>PDF417 : PDF417 (ISO/IEC 15438:2006)</li><li>PDF417,a,e,t,s,f,o0,o1,o2,o3,o4,o5,o6 : PDF417 with parameters: a = aspect ratio (width/height); e = error correction level (0-8); t = total number of macro segments; s = macro segment index (0-99998); f = file ID; o0 = File Name (text); o1 = Segment Count (numeric); o2 = Time Stamp (numeric); o3 = Sender (text); o4 = Addressee (text); o5 = File Size (numeric); o6 = Checksum (numeric). NOTES: Parameters t, s and f are required for a Macro Control Block, all other parametrs are optional. To use a comma character ',' on text options, replace it with the character 255: "\xff".</li><li>QRCODE : QRcode Low error correction</li><li>QRCODE,L : QRcode Low error correction</li><li>QRCODE,M : QRcode Medium error correction</li><li>QRCODE,Q : QRcode Better error correction</li><li>QRCODE,H : QR-CODE Best error correction</li><li>RAW: raw mode - comma-separad list of array rows</li><li>RAW2: raw mode - array rows are surrounded by square parenthesis.</li><li>TEST : Test matrix</li></ul> 91 * @param $type (string) type of barcode: <ul><li>DATAMATRIX : Datamatrix (ISO/IEC 16022)</li><li>PDF417 : PDF417 (ISO/IEC 15438:2006)</li><li>PDF417,a,e,t,s,f,o0,o1,o2,o3,o4,o5,o6 : PDF417 with parameters: a = aspect ratio (width/height); e = error correction level (0-8); t = total number of macro segments; s = macro segment index (0-99998); f = file ID; o0 = File Name (text); o1 = Segment Count (numeric); o2 = Time Stamp (numeric); o3 = Sender (text); o4 = Addressee (text); o5 = File Size (numeric); o6 = Checksum (numeric). NOTES: Parameters t, s and f are required for a Macro Control Block, all other parametrs are optional. To use a comma character ',' on text options, replace it with the character 255: "\xff".</li><li>QRCODE : QRcode Low error correction</li><li>QRCODE,L : QRcode Low error correction</li><li>QRCODE,M : QRcode Medium error correction</li><li>QRCODE,Q : QRcode Better error correction</li><li>QRCODE,H : QR-CODE Best error correction</li><li>RAW: raw mode - comma-separad list of array rows</li><li>RAW2: raw mode - array rows are surrounded by square parenthesis.</li><li>TEST : Test matrix</li></ul> 141 $qrcode = new QRcode( [all...] |
H A D | QRcode.php | 110 * @class QRcode 124 class QRcode class 132 * Encoding mode numeric (0-9). 3 characters are encoded to 10bit length. In theory, 7089 characters or less can be stored in a QRcode. 137 * Encoding mode alphanumeric (0-9A-Z $%*+-./:) 45characters. 2 characters are encoded to 11bit length. In theory, 4296 characters or less can be stored in a QRcode. 142 * Encoding mode 8bit byte data. In theory, 2953 characters or less can be stored in a QRcode. 147 * Encoding mode KANJI. A KANJI character (multibyte character) is encoded to 13bit length. In theory, 1817 characters or less can be stored in a QRcode. 258 * QR code version. Size of QRcode is defined as version. Version is from 1 to 40. Version 1 is 21*21 matrix. And 4 modules increases whenever 1 version increases. So version 40 is 177*177 matrix. 591 * Creates a QRcode object 592 * @param $code (string) code to represent using QRcode 2821 } // end QRcode clas [all...] |
/plugin/qrcode2/ |
H A D | png.php | 4 QRcode::png($_GET['id']);
|
H A D | phpqrcode.php | 188 $qrTab = QRcode::text($code, false, $eccLevel); 2964 class QRcode { class 3256 $code = new QRcode(); 3270 $code = new QRcode();
|
/plugin/barcodes/lib/ |
H A D | BarcodesWrapper.php | 28 use jucksearm\barcode\QRcode; alias 56 $this->factory = QRcode::factory();
|
/plugin/qrcode/syntax/ |
H A D | qrcode.php | 188 QRcode generated by Tec-it http://www.tec-it.com/online-demos/tbarcode/barcode-generator.aspx
|
H A D | i_nigmacode.php | 229 … QRcode generated by Tec-it http://www.tec-it.com/online-demos/tbarcode/barcode-generator.aspx
|