Use PHP to generate a QR code

Source: Internet
Author: User
PHP generates two types of QR code most commonly: 1. Use google APIs to generate the QR code, 2. use PHPQRCode to generate the QR code. The two methods are very clear and the effect is good. Next let's take a look at it in detail. With the advancement of technology, the application of QR codes has become more and more extensive. previous articles on this site have introduced how to use the jQuery plug-in to generate QR codes. today I will share with you how to use PHP to generate QR codes, and how to generate a QR code with a central LOGO image.

Use Google API to generate QR code

Google provides a comprehensive interface for generating QR codes. the following code calls an API:

$ UrlToEncode = "http://www.bitsCN.com"; generateQRfromGoogle ($ urlToEncode);/*** google api QR code generation [QRcode can store up to 4296 letters and numbers of any text, for details, see the QR code data format. * @ param string $ information contained in the two-dimensional code, which can be numbers, characters, binary information, and Chinese characters. Cannot mix data type, data must go through the UTF-8 URL-encoded * @ param int $ widhtHeight to generate the dimensional settings of the QR code * @ param string $ EC_level optional error correction level, QR code supports four levels of error correction, used to restore lost, read-wrong, fuzzy, and data. * L-default: 7% of lost data can be identified * M-15% of lost data can be identified * Q-25% of lost data can be identified * H-30% of lost data can be identified *@ param int $ the distance between the QR code generated by margin and the image border */function generateQRfromGoogle ($ chlorophyll, $ widhtHeight = '000000', $ EC_level = 'l', $ margin = '0') {$ chlorophyll = urlencode ($ chlorophyll); echo '';}

Use php qr Code to generate a class library php qr Code to generate a QR Code

Php qr Code is a php qr Code generation class library that allows you to easily generate QR codes. the official website provides download and multiple demo demos at: http://phpqrcode.sourceforge.net /.

After downloading the class library provided on the official website, you only need to use phpqrcode. php to generate a QR code. of course, you must enable GD2 in your PHP environment. Phpqrcode. php provides a key png () method. the parameter $ text indicates that two pieces of information are generated. the parameter $ outfile indicates whether to output the two-dimensional code image file. the default value is No; the $ level parameter indicates the coverage rate, that is, the covered areas can also be identified, namely, L (QR_ECLEVEL_L, 7%), M (QR_ECLEVEL_M, 15%), Q (QR_ECLEVEL_Q, 25% ), H (QR_ECLEVEL_H, 30%); parameter $ size indicates the size of the generated image; default value: 3; parameter $ margin indicates the gap between blank areas of the border around the QR code; the parameter $ saveandprint indicates whether to save the QR code and display it.

 public static function png($text, $outfile=false, $level=QR_ECLEVEL_L, $size=3, $margin=4, $saveandprint=false) {   $enc = QRencode::factory($level, $size, $margin);   return $enc->encodePNG($text, $outfile, $saveandprint=false); } 

Calling php qr Code is very simple, the following Code can generate a content for "http://www.bitsCN.com" QR Code.

 include 'phpqrcode.php'; QRcode::png('http://www.bitsCN.com'); 

In practice, we will add our own LOGO in the middle of the QR code to enhance the promotion effect. How to generate a QR code containing a logo? In fact, the principle is very simple. First, use the php qr Code to generate a QR Code image, and then use the php image function to add the prepared logo image to the middle of the generated original QR Code image, then generate a new QR code image.

Include 'phpqrcode. php '; $ value = 'http: // www.bitsCN.com'; // QR code content $ errorCorrectionLevel = 'l'; // fault tolerance level $ matrixPointSize = 6; // Generate image size // Generate QR code image QRcode: png ($ value, 'qrcode.png ', $ errorCorrectionLevel, $ matrixPointSize, 2); $ logo = 'logo.png '; // The prepared logo image $ QR = 'qrcode.png '; // The generated original QR code image if ($ logo! = FALSE) {$ QR = imagecreatefromstring (file_get_contents ($ QR); $ logo = imagecreatefromstring (file_get_contents ($ logo); $ QR_width = imagesx ($ QR ); // QR code image width $ QR_height = imagesy ($ QR); // QR code image height $ logo_width = imagesx ($ logo ); // logo image width $ logo_height = imagesy ($ logo); // logo image height $ logo_qr_width = $ QR_width/5; $ scale = $ logo_width/$ logo_qr_width; $ logo_qr_height = $ logo_height/$ scale; $ from_width = ($ QR_width-$ logo_qr_width)/2; // re-combine the image and resize imagecopyresampled ($ QR, $ logo, $ from_width, $ from_width, 0, 0, $ logo_qr_width, $ logo_qr_height, $ logo_width, $ logo_height);} // output image imagepng ($ QR, 'jb51.png '); echo '';

Because the QR code allows some fault tolerance, even if the hidden part of the QR code is still decoded, the scan results can be decoded when we scan the QR code in less than half, this is because the generator repeatedly expresses some information to improve the fault tolerance. This is why we add a LOGO image in the middle of the QR code without affecting the decoding result.

The above is all the content of this article. I hope it will be helpful for you to master the php production QR code.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.