php 通过二维码图片读取二维码内容
1.安装ImageMagick依赖
yum install ImageMagick ImageMagick-devel
2.安装zbar拓展
wget -c http://jaist.dl.sourceforge.net/project/zbar/zbar/0.10/zbar-0.10.tar.bz2 tar jxvf zbar-0.10.tar.bz2 cd zbar-0.10 ./configure --without-gtk --without-python --without-qt --disable-video --prefix=/usr/local/zbar ##禁止gtk,python和qt的支持 make && make install
3.安装php-zbarcode
//如果服务器没有安装git先使用 yum -y install git //安装git git clone https://github.com/mkoppanen/php-zbarcode.git cd php-zbarcode /www/server/php/72/bin/phpize ./configure --with-php-config=/www/server/php/72/bin/php-config --with-zbarcode=/usr/local/zbar/ make && make install
4.添加extension=zbarcode.so 到php.ini中然后重启
//创建一个img对象 $image = new ZBarCodeImage('4324.jpg'); // 创建一个二维码识别器 $scanner = new ZBarCodeScanner(); //识别图像 $barcode = $scanner->scan($image); echo json_encode($barcode);exit;