| Server IP : 104.21.80.248 / Your IP : 172.71.28.155 Web Server : Apache/2.4.25 (Win32) OpenSSL/1.0.2j PHP/5.6.30 System : Windows NT WIN-ECQAAA40806 6.2 build 9200 (Windows Server 2012 Standard Edition) i586 User : SYSTEM ( 0) PHP Version : 5.6.30 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : E:/Inetpub/www/myschool/triamudom/check/webadmin/S_Graph/jpgraph/Examples/ |
Upload File : |
<?php
require_once ('jpgraph/QR/qrencoder.inc.php');
// Data to be encoded
$data = 'ABCDEFGH01234567';
// QR Code specification
$version = -1; // -1 = Let the library decide version (same as default)
$corrlevel = QRCapacity::ErrM; // Medium erro correction
$modulewidth = 2; // Module width
$back = BACKEND_IMAGE; // Default backend
$quiet = 4; // Same as default value
// Create encoder and backend
$encoder = new QREncoder($version, $corrlevel);
$backend = QRCodeBackendFactory::Create($encoder, $back);
// Set the module size
$backend->SetModuleWidth($modulewidth);
// Set Quiet zone (this should rarely need changing from the default)
$backend->SetQuietZone($quiet);
if( $back == BACKEND_IMAGE ) {
$backend->Stroke($data);
}
else {
$str = $backend->Stroke($data);
echo '<pre>'.$str.'</pre>';
}
?>