PHP generates a QR code instance with LOGO image based on phpqrcode

Source: Internet
Author: User
This article describes how PHP generates two-dimensional codes with LOGO images based on phpqrcode. it can generate two types of QR codes with logo and without logo, which is very simple and practical, for more information about how to generate a QR code with a LOGO image based on phpqrcode, see the example in this article. Share it with you for your reference. The details are as follows:

PHP uses phpqrcode to generate a QR code with a LOGO image. it is easy to use. the code contains a standard QR code without a Logo and a QR code with a Logo. you can modify the code according to the annotations.

<? Phpinclude ('phpqrcode. php '); $ value = 'http: // www.codesc.net'; // QR code data $ errorCorrectionLevel = 'l'; // error correction level: l, M, Q, H $ matrixPointSize = 10; // The size of the two-dimensional code points: 1 to 10 QRcode: png ($ value, 'ewm.png ', $ errorCorrectionLevel, $ matrixPointSize, 2); // the file name without the Logo QR code echo "generated by the QR code "."
"; $ Logo = 'emwlogo.gif '; // the Logo image to be displayed in the QR code $ QR = 'ewm.png'; if ($ logo! = FALSE) {$ QR = imagecreatefromstring (file_get_contents ($ QR); $ logo = imagecreatefromstring (file_get_contents ($ logo); $ QR_width = imagesx ($ QR ); $ QR_height = imagesy ($ QR); $ logo_width = imagesx ($ logo); $ logo_height = imagesy ($ logo); $ logo_qr_width = $ QR_width/5; $ scale = $ logo_width/$ logo_qr_width; $ logo_qr_height = $ logo_height/$ scale; $ from_width = ($ QR_width-$ l Ogo_qr_width)/2; imagecopyresampled ($ QR, $ logo, $ from_width, $ from_width, 0, 0, $ logo_qr_width, $ logo_qr_height, $ logo_width, $ logo_height );} imagepng ($ QR, 'ewmlogo.png '); // file name with Logo QR code?>

I hope this article will help you with php programming.

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.