search
HomeBackend DevelopmentPHP TutorialGenerate QR code using phpqrcode

It is quite difficult to use PHP language to generate QR codes, except for calling the interface to generate QR code images. If you write the code to generate it yourself, you really have no way to start. However, we can use phpqrcode, a ready-made class file and PHP QR code generation class library, to easily generate QR codes.

Preliminary preparation:

1.phpqrcode class file download, download address: https://sourceforge.net/projects/phpqrcode/

2 The .PHP environment must enable GD2 extension library support (usually enabled)

Interpretation of method:

The downloaded class file is a compressed package. It contains many files and demonstration programs. We only need the phpqrcode.php file inside to generate a QR code. It is a collection file of multiple classes. We need to use the png() method (line 3090) of the QRcode class (line 2963) inside:

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);
}

The first parameter $text: two-dimensional The content contained in the code can be links, text, json strings, etc.;

The second parameter $outfile: The default is false, no file is generated, and only the QR code image is returned to the output; otherwise you need to give Output the file name and path to store the generated QR code image;

The third parameter $level: the default is L, the values ​​that can be passed by this parameter are L(QR_ECLEVEL_L, 7%), M(QR_ECLEVEL_M, 15%), Q(QR_ECLEVEL_Q, 25%), H(QR_ECLEVEL_H, 30%), this parameter controls the error tolerance rate of the QR code. Different parameters represent the percentage of the area that the QR code can be covered, that is, the covered area is still Can be recognized;

The fourth parameter $size: controls the size of the generated image, the default is 4;

The fifth parameter $margin: controls the size of the blank area for generating QR codes;

The sixth parameter $saveandprint: save the QR code image and display it, $outfile must pass the image path;

Usage example:

1. Generate QR code ( Generate image file)

// 1. 生成原始的二维码(生成图片文件)
function scerweima($url=''){
require_once 'phpqrcode.php';
$value = $url;//二维码内容
$errorCorrectionLevel = 'L';//容错级别 
$matrixPointSize = 5;//生成图片大小  
//生成二维码图片
$filename = 'qrcode/'.microtime().'.png';
QRcode::png($value,$filename , $errorCorrectionLevel, $matrixPointSize, 2);  
  
$QR = $filename;//已经生成的原始二维码图片文件  
 
 
$QR = imagecreatefromstring(file_get_contents($QR));  
  
//输出图片  
imagepng($QR, 'qrcode.png');  
imagedestroy($QR);
return &#39;<img src="/static/imghwm/default1.png"  data-src="qrcode.png"  class="lazy"   alt="使用微信扫描支付">&#39;;   
}
 
//调用查看结果
echo scerweima(&#39;https://www.baidu.com&#39;);

2. Add logo to the generated QR code (generate image file)

//2. 在生成的二维码中加上logo(生成图片文件)
function scerweima1($url=&#39;&#39;){
require_once &#39;phpqrcode.php&#39;;
$value = $url;//二维码内容  
$errorCorrectionLevel = &#39;H&#39;;//容错级别  
$matrixPointSize = 6;//生成图片大小  
//生成二维码图片
$filename = &#39;qrcode/&#39;.microtime().&#39;.png&#39;;
QRcode::png($value,$filename , $errorCorrectionLevel, $matrixPointSize, 2);  
$logo = &#39;qrcode/logo.jpg&#39;; //准备好的logo图片   
$QR = $filename;//已经生成的原始二维码图  
 
if (file_exists($logo)) {   
$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图片宽度   
$logo_height = imagesy($logo);//logo图片高度   
$logo_qr_width = $QR_width / 4;   //组合之后logo的宽度(占二维码的1/5)
$scale = $logo_width/$logo_qr_width;   //logo的宽度缩放比(本身宽度/组合后的宽度)
$logo_qr_height = $logo_height/$scale;  //组合之后logo的高度
$from_width = ($QR_width - $logo_qr_width) / 2;   //组合之后logo左上角所在坐标点
//重新组合图片并调整大小
/*
*imagecopyresampled() 将一幅图像(源图象)中的一块正方形区域拷贝到另一个图像中
*/
imagecopyresampled($QR, $logo, $from_width, $from_width, 0, 0, $logo_qr_width,$logo_qr_height, $logo_width, $logo_height); 
}   
  
//输出图片  
imagepng($QR, &#39;qrcode.png&#39;);  
imagedestroy($QR);
imagedestroy($logo);
return &#39;<img src="/static/imghwm/default1.png"  data-src="qrcode.png"  class="lazy"   alt="使用微信扫描支付">&#39;;   
}
 
//调用查看结果
echo scerweima1(&#39;https://www.baidu.com&#39;);

Generate QR code using phpqrcode

3. Generate QR code (Do not generate image files)

//3. 生成原始的二维码(不生成图片文件)
function scerweima2($url=&#39;&#39;){
require_once &#39;phpqrcode.php&#39;;
$value = $url;//二维码内容
$errorCorrectionLevel = &#39;L&#39;;//容错级别 
$matrixPointSize = 5;//生成图片大小  
//生成二维码图片
$QR = QRcode::png($value,false,$errorCorrectionLevel, $matrixPointSize, 2);
}
//调用查看结果
scerweima2(&#39;https://www.baidu.com&#39;);

* The first two methods will generate a QR code image locally every time it is called. The third method does not generate a file and will directly output the QR code to the browser. .

The above is the detailed content of Generate QR code using phpqrcode. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:csdn. If there is any infringement, please contact admin@php.cn delete
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

How to Register and Use Laravel Service ProvidersHow to Register and Use Laravel Service ProvidersMar 07, 2025 am 01:18 AM

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version