2018-02-20 00:30:26 更新:推薦新擴展(極力推薦)javascript
這篇文章裏用的兩個二維碼擴展都有些問題和麻煩:phpqrcode(生成二維碼)的源碼有點小 bug; 而 php-zbarcode(識別二維碼)須要其餘開源套件和擴展模塊的支持,編譯起來很容易出問題,只支持 php5,並且 3 年多沒維護,目測做者已放棄。對於不愛折騰開發環境的人太不方便。在 github 找到兩個擴展,本人推薦:php
2018-02-04 23:28:30 更新:使用 apt 安裝 zbarhtml
編譯安裝 zbar 仍是有毛病,很容易出問題。Ubuntu 官方源有個 zbar-tools,也就是 zbar。推薦朋友們用 apt 安裝,一條命令搞定:前端
sudo apt-get install zbar-tools
個人系統是 Ubuntu 17.10.1,官方源有 zbar-tools,因此直接裝了。裝好 zbar 以後就可使用 zbarimg path/to/your_qrcode.png 識別二維碼了。若是你的 ppa 源裏沒有 zbar-tools、而且也沒找到其餘可用的ppa,那仍是按照本文的 「6、安裝 zbar」 部分嘗試編譯安裝吧。java
phpqrcode 是由 php 編寫的、能夠生成 QR Code 二維碼的第三方包。官網有不少例子能夠參考,使用起來很簡單,2 行代碼。python
<?php // 1. 使用官網包 require './phpqrcode/qrlib.php'; QRcode::png('http://github.com', 'qrcode.png', QR_ECLEVEL_L, 8, 4, false); // 該方法的最後一個參數有Bug,寫 TRUE 時(保存並打印)並不會打印顯示,須要修改源碼 // QRcode::png('123', './qrcode.png', QR_ECLEVEL_L, 4, 4, TRUE); // 2. 使用composer包 // aferrandini/phpqrcode 這個包在packagist.org上排名第一,是根據官網打包的,不過Bug彷佛也好好的在那兒~~。 // 其餘相似的composer包還有不少,按需求找吧~~
jquery.qrcode.js 是前端生成 QR Code 二維碼的插件庫。下面是我參考 jquery.qrcode.js 在 github 倉庫上一個 example 寫的。看代碼。mysql
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>QR Code</title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script> <script type="text/javascript" src="./js/jquery.qrcode.js"></script> <script type="text/javascript" src="./js/qrcode.js"></script> </head> <body> <p>快速渲染:</p> <div id="qrcode"></div> <p>table渲染:</p> <div id="qrcodeTable"></div> <p>canvas渲染:</p> <div id="qrcodeCanvas"></div> <p>設置寬高:</p> <div id="qrcodeResize"></div> <!-- -------------------------------------------------------- --> <script> // 快速渲染 $('#qrcode').qrcode("http://github.com"); // table渲染 $('#qrcodeTable').qrcode({ render : "table", text : "http://github.com" }); // canvas渲染 $('#qrcodeCanvas').qrcode({ render : "canvas", text : "http://github.com" }); // 設置寬高 $('#qrcodeResize').qrcode({ width : 128, height : 128, text : "http://github.com" }); </script> </body> </html>
而後瀏覽器訪問這個頁面,就能看到 4 個二維碼了。jquery
注意一下:linux
vCard 是電子名片的文件格式標準。它通常附加在電子郵件以後,但也能夠用於其它場合(如在互聯網上相互交換)。vCard 可包含的信息有:姓名、地址資訊、電話號碼、URL,logo,相片等(摘自維基百科)。git
下面是一個包含我的信息的 vCard 格式電子名片(摘自維基百科),能夠參照它來修改:
BEGIN:VCARD VERSION:2.1 N:Gump;Forrest FN:Forrest Gump ORG:Gump Shrimp Co. TITLE:Shrimp Man TEL;WORK;VOICE:(111) 555-1212 TEL;HOME;VOICE:(404) 555-1212 ADR;WORK:;;100 Waters Edge;Baytown;LA;30314;United States of America LABEL;WORK;ENCODING=QUOTED-PRINTABLE:100 Waters Edge=0D=0ABaytown, LA 30314=0D=0AUnited States of America ADR;HOME:;;42 Plantation St.;Baytown;LA;30314;United States of America LABEL;HOME;ENCODING=QUOTED-PRINTABLE:42 Plantation St.=0D=0ABaytown, LA 30314=0D=0AUnited States of America EMAIL;PREF;INTERNET:forrestgump@walladalla.com REV:20080424T195243Z END:VCARD
參考上面的 vCard 樣例,能夠製做我的的電子名片。具體的各個字段解釋能夠參考百度百科上的 vCard 介紹。
照樣子寫一個,使用 phpqrcode 包來生成個人電子名片:
<?php // 使用 phpqrcode 生成電子名片 require './phpqrcode/qrlib.php'; $vcard = <<<EOL BEGIN:VCARD VERSION:2.1 N:Jin;mingc FN:mingc ORG:free man TITLE:PHPer TEL;WORK;VOICE:1382173xxxx TEL;HOME;VOICE:1383284xxxx ADR;WORK;TianJin, China LABEL;WORK;ENCODING=QUOTED-PRINTABLE:TianJin, China(LABEL;WORK) ADR;HOME;TianJin, China LABEL;HOME;ENCODING=QUOTED-PRINTABLE:TianJin, China(LABEL;HOME) EMAIL;PREF;INTERNET:name@example.com REV:20171201T005548Z END:VCARD EOL; QRcode::png($vcard); // define('EOL', "\r\n"); // $vcard = 'BEGIN:VCARD'.EOL; // $vcard .= 'VERSION:2.1'.EOL; // $vcard .= 'N:Jin;mingc'.EOL; // $vcard .= 'FN:mingc'.EOL; // $vcard .= 'ORG:free man'.EOL; // $vcard .= 'TITLE:PHPer'.EOL; // $vcard .= 'TEL;WORK;VOICE:1382173xxxx'.EOL; // $vcard .= 'TEL;HOME;VOICE:1383284xxxx'.EOL; // $vcard .= 'ADR;WORK;TianJin, China'.EOL; // $vcard .= 'LABEL;WORK;ENCODING=QUOTED-PRINTABLE:TianJin, China(LABEL;WORK)'.EOL; // $vcard .= 'ADR;HOME;TianJin, China'.EOL; // $vcard .= 'LABEL;HOME;ENCODING=QUOTED-PRINTABLE:TianJin, China(LABEL;HOME)'.EOL; // $vcard .= 'EMAIL;PREF;INTERNET:name@example.com'.EOL; // $vcard .= 'REV:20171201T005548Z'.EOL; // $vcard .= 'END:VCARD'; // QRcode::png($vcard);
瀏覽器訪問這個 php 腳本會顯示一張二維碼,微信掃一掃,結果以下:
這個電子名片還能夠直接添加到你的手機聯繫人裏。
php 識別二維碼或條形碼須要 3 個工具。
1. ImageMagick
ImageMagick 是一個用於查看、編輯位圖文件以及進行圖像格式轉換的開放源代碼軟件套裝。它能夠讀取、編輯超過 100 種圖象格式。ImageMagick 以 ImageMagick 許可證(一個相似 BSD 的許可證)發佈。
2. zbar
zbar 是一個開源軟件套件,用於讀取各類來源的條形碼,如視頻流,圖像文件和原始強度傳感器。它支持 包括 EAN-13 / UPC-A,UPC-E,EAN-8,Code 128,Code 39,Interleaved 2 of 5 和 QR Code 等多種流行的條碼。
3. php-zbarcode
php-zbarcode 是 PHP 讀取條形碼的擴展模塊,目前僅支持 php5.x。使用這個模塊以前還須要安裝 ImageMagick 和 zbar 這兩個命令行套件。
phpzbarcode 依賴於 ImageMagick 和 zbar,zbar 依賴於 ImageMagick,ImageMagick 依賴 jpeg 庫來提供 jpeg 圖片支持,因此先安裝 jpeg 支持。
安裝 jpeg 庫
下載地址:http://www.imagemagick.org/download/delegates/,我下載的包名爲 jpegsrc.v9b.tar.gz 。
wget http://www.imagemagick.org/download/delegates/jpegsrc.v9b.tar.gz tar xf jpegsrc.v9b.tar.gz cd jpeg-9b/ ./configure make sudo make install
下載地址:https://www.imagemagick.org/download/,我下載的包名爲 ImageMagick.tar.gz 。
wget https://www.imagemagick.org/download/ImageMagick.tar.gz tar xf ImageMagick.tar.gz cd ImageMagick-7.0.7-13 ./configure make sudo make install sudo ldconfig /usr/local/lib magick --version
********************************************* 常見錯誤 *******************************************
出錯1:安裝好之後使用 magick 、 convert 等相關命令時,加載動態連接庫出錯
convert: error while loading shared libraries: libMagickCore-7.Q16HDRI.so.4: cannot open shared object file: No such file or directory
解決方法:設置動態加載動態連接庫
sudo ldconfig /usr/local/lib
而後就能夠正常使用命令行接口了。
下載地址:https://sourceforge.net/projects/zbar/files/zbar/。我下載的最新版 0.10,包名爲 zbar-0.10.tar.gz 。
tar xf zbar-0.10.tar.gz cd zbar-0.10/ sudo ln -s /usr/local/include/ImageMagick-7 /usr/local/include/ImageMagick sudo ln -s /usr/local/include/ImageMagick-7/MagickWand /usr/local/include/wand ./configure --disable-video --without-gtk --without-qt --without-python make make sudo make install zbarimg --version
********************************************* 常見錯誤 ********************************************
出錯1:找不到 MagickWand.h 頭文件
ImageMagick package found but wand/MagickWand.h not installed?! -this is a problem with your ImageMagick install, -please resolve the inconsistency and try again...
解決方法:zbar 的配置文件 ./configure 在運行時會找不到 MagickWand.h,它在 /usr/local/include/ImageMagick-7/MagickWand 目錄下,可是 ./configure 執行時會去 wand/ 目錄找(找不到),因此須要作兩個軟鏈接讓 ./configure 能找到 MagickWand.h 文件
sudo ln -s /usr/local/include/ImageMagick-7 /usr/local/include/ImageMagick sudo ln -s /usr/local/include/ImageMagick-7/MagickWand /usr/local/include/wand
出錯2:make 編譯期間多處 warning 和 error
zbar/decoder/ean.c: In function ‘ean_part_end4’: zbar/decoder/ean.c:245:13: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses] if(!par == fwd) { ^~ zbar/decoder/ean.c:245:8: note: add parentheses around left hand side expression to silence this warning if(!par == fwd) { ^~~~ ( ) zbar/decoder/ean.c: In function ‘ean_part_end7’: zbar/decoder/ean.c:294:13: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses] if(!par == fwd) { ^~ zbar/decoder/ean.c:294:8: note: add parentheses around left hand side expression to silence this warning if(!par == fwd) { ^~~~ ( ) zbar/qrcode/qrdec.c: In function ‘qr_finder_quick_crossing_check’: zbar/qrcode/qrdec.c:1215:27: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses] if(!_img[_y0*_width+_x0]!=_v||!_img[_y1*_width+_x1]!=_v)return 1; ^~ zbar/qrcode/qrdec.c:1215:6: note: add parentheses around left hand side expression to silence this warning if(!_img[_y0*_width+_x0]!=_v||!_img[_y1*_width+_x1]!=_v)return 1; ^~~~~~~~~~~~~~~~~~~~~ ( ) zbar/qrcode/qrdec.c:1215:54: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses] if(!_img[_y0*_width+_x0]!=_v||!_img[_y1*_width+_x1]!=_v)return 1; ^~ zbar/qrcode/qrdec.c:1215:33: note: add parentheses around left hand side expression to silence this warning if(!_img[_y0*_width+_x0]!=_v||!_img[_y1*_width+_x1]!=_v)return 1; ^~~~~~~~~~~~~~~~~~~~~ ( ) zbar/qrcode/qrdec.c:1216:45: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses] if(!_img[(_y0+_y1>>1)*_width+(_x0+_x1>>1)]==_v)return -1; ^~ zbar/qrcode/qrdec.c:1216:6: note: add parentheses around left hand side expression to silence this warning if(!_img[(_y0+_y1>>1)*_width+(_x0+_x1>>1)]==_v)return -1; ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ( ) zbar/qrcode/qrdec.c: In function ‘qr_finder_locate_crossing’: zbar/qrcode/qrdec.c:1257:33: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses] if(!_img[x0[1]*_width+x0[0]]!=_v)break; ^~ zbar/qrcode/qrdec.c:1257:8: note: add parentheses around left hand side expression to silence this warning if(!_img[x0[1]*_width+x0[0]]!=_v)break; ^~~~~~~~~~~~~~~~~~~~~~~~~ ( ) zbar/qrcode/qrdec.c:1269:33: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses] if(!_img[x1[1]*_width+x1[0]]!=_v)break; ^~ zbar/qrcode/qrdec.c:1269:8: note: add parentheses around left hand side expression to silence this warning if(!_img[x1[1]*_width+x1[0]]!=_v)break; ^~~~~~~~~~~~~~~~~~~~~~~~~ ( ) zbar/jpeg.c: In function ‘_zbar_convert_jpeg_to_y’: zbar/jpeg.c:174:39: warning: assignment from incompatible pointer type [-Wincompatible-pointer-types] cinfo->src->fill_input_buffer = fill_input_buffer; ^
解決方法:再次編譯
make
下載地址:https://github.com/mkoppanen/php-zbarcode
wget https://github.com/mkoppanen/php-zbarcode/archive/master.zip unzip master.zip cd php-zbarcode-master/ phpize ./configure --with-php-config=/usr/bin/php-config make sudo make install
成功後會提示安裝到的模塊目錄
Installing shared extensions: /usr/lib/php/20131226/
確認模塊的位置
mingc@mingc-GE60-2PL:~/Downloads/qrcode/php-zbarcode-master$ ls /usr/lib/php/20131226/ build dom.so gettext.so mcrypt.so mysqli.so pdo_mysql.so posix.so sockets.so tokenizer.so xmlwriter.so bz2.so exif.so iconv.so memcached.so mysqlnd.so pdo_odbc.so readline.so sqlite3.so wddx.so xsl.so calendar.so fileinfo.so igbinary.so memcache.so mysql.so pdo.so redis.so sysvmsg.so xmlreader.so zbarcode.so ctype.so ftp.so json.so mongo.so odbc.so pdo_sqlite.so shmop.so sysvsem.so xmlrpc.so zip.so dba.so gd.so mbstring.so msgpack.so opcache.so phar.so simplexml.so sysvshm.so xml.so
能夠看到有了 zbarcode.so 文件。而後啓用 zbarcode 擴展,編輯 /etc/php/5.6/apache2/php.ini 文件
sudo vim /etc/php/5.6/apache2/php.ini
最後添加一行
extension=zbarcode.so
重啓 apache
sudo /etc/init.d/apache2 restart
這就行了,可使用條形碼擴展了。
注意 php -m 命令顯示的是 php-cli 模式啓用的擴展,要讓 php-cli 模式也啓用擴展的話,須要再編輯 cli 模式的配置文件。在 /etc/php/5.6/cli/php.ini 裏,最後添加一行
extension=zbarcode.so
而後就能使用 php -m 命令看到 zbarcode 模塊了。
參照 github 上的 php-zbarcode 示例,識別一下我剛纔生成的電子名片。
<?php /* Create new image object */ $image = new ZBarCodeImage("./qrcode_vcard.png"); /* Create a barcode scanner */ $scanner = new ZBarCodeScanner(); /* Scan the image */ $barcode = $scanner->scan($image); /* Loop through possible barcodes */ if (!empty($barcode)) { foreach ($barcode as $code) { printf("Found type %s barcode with data %s\n", $code['type'], $code['data']); } }
識別結果:
Found type QR-Code barcode with data BEGIN:VCARD VERSION:2.1 N:Jin;mingc FN:mingc ORG:free man TITLE:PHPer TEL;WORK;VOICE:1382173xxxx TEL;HOME;VOICE:1383284xxxx ADR;WORK;TianJin, China LABEL;WORK;ENCODING=QUOTED-PRINTABLE:TianJin, China(LABEL;WORK) ADR;HOME;TianJin, China LABEL;HOME;ENCODING=QUOTED-PRINTABLE:TianJin, China(LABEL;HOME) EMAIL;PREF;INTERNET:name@example.com REV:20171201T005548Z END:VCARD