Two methods for generating QR codes using PHP _ PHP Tutorial

Source: Internet
Author: User
You can use PHP to generate a QR code. With the advancement of science and technology, the application of QR codes has become more and more extensive. 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. I. With the advancement of science and technology, QR code is widely used. today I will share with you how to use PHP to generate a QR code and how to generate a QR code with a central LOGO image.

1. using Google APIs to generate QR codes Google provides a comprehensive interface for generating QR codes. the following code calls an API: $ urlToEncode =" http://www.jb51.net "; GenerateQRfromGoogle ($ urlToEncode);/*** google api QR code generation [QRcode can store any text of a maximum of 4296 letters and numbers, 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 '';} 2. use the php qr Code generation 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 a QR Code. the official website provides download and multiple demo demos, view address: 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. The code is as follows: 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 );} it is very easy to call php qr Code. the following Code will generate a piece of content" http://www.jb51.net "The QR code. Php code include 'phpqrcode. php'; QRcode: png (' http://www.jb51.net '); Then, in actual application, 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. The code is as follows: include 'phpqrcode. php'; $ value =' http://www.jb51.net '; // 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 '; // original QR code graph generated 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 adjust the size of imagecopyresampled ($ QR, $ logo, $ from_width, $ from_width, 0, 0, $ logo_qr_width, $ logo_qr_height, $ logo_width, $ logo_height);} // output image imagepng ($ QR, 'helloweba.png '); echo ''; because the QR code allows fault tolerance, generally, the QR code can be decoded even if it is hidden. when scanning the QR code, we often scan less than half of the QR code to decode the scan results, 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.

Yi 1, li...

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.