Home php教程 php手册 php生成二维码实现代码

php生成二维码实现代码

May 25, 2016 pm 04:39 PM

二维码是二维条形码的一种,可以将网址、文字、照片等信息通过相应的编码算法编译成为一个方块形条码图案,手机用户可以通过摄像头和解码软件将相关信息重新解码并查看内容.

php类库PHP QR Code

两句话解释:# 包含qrlib.php的话需要同其它文件放到一起,文件、文件夹,phpqrcode.php是合并后版本,只需要包含这个文件,但生成的图片速度慢而且不太准确.

以下给出两种用法,代码如下:

<?php  
include(&#39;./phpqrcode/phpqrcode.php&#39;);  
// 二维码数据  
$data = &#39;http://gz.altmi.com&#39;;  
// 生成的文件名  
$filename = $errorCorrectionLevel.&#39;|&#39;.$matrixPointSize.&#39;.png&#39;;  
// 纠错级别:L、M、Q、H  
$errorCorrectionLevel = &#39;L&#39;;   
// 点的大小:1到10  
$matrixPointSize = 4;   
QRcode::png($data, $filename, $errorCorrectionLevel, $matrixPointSize, 2); 
# 创建一个二维码文件 
QRcode::png(&#39;code data text&#39;, &#39;filename.png&#39;); // creates file 
# 生成图片到浏览器 
QRcode
Copy after login

::png('some othertext 1234'); // creates code image and outputs it directly into browser


如果生成有色彩的需要自己动手修改phpqrcode.php中QRimage类的image方法中颜色设置部分的代码,1.1.4版本的代码在第987、988行,一个前景色,一个背景色,代码如下:

$col[0] = ImageColorAllocate($base_image,255,255,255);

$col[1] = ImageColorAllocate($base_image,0,0,0); 即可.

利用 google开放api生成,代码如下:

<?php
$urlToEncode="http://gz.altmi.com";  
generateQRfromGoogle($urlToEncode);  
function generateQRfromGoogle($chl,$widhtHeight =&#39;150&#39;,$EC_level=&#39;L&#39;,$margin=&#39;0&#39;)
{  
    $url = urlencode($url);   
    echo &#39;<img src="/static/imghw/default1.png"  data-src="http://chart.apis.google.com/chart?chs=&#39;.$widhtHeight.&#39;x&#39;.$widhtHeight.&#39;&cht=qr&chld=&#39;.$EC_level.&#39;|&#39;.$margin.&#39;&chl=&#39;.$chl.&#39;"  class="lazy"   alt="QR code" widhtHeight="&#39;.$size.&#39;" widhtHeight="&#39;.$size.&#39;"/>&#39;;  
}
Copy after login


教程地址:

欢迎转载!但请带上文章地址^^

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)