前言
最近做三合一收款码系统,要用到二维码生成,推荐一个二维码生成库吧,挺好用的。
Github
网址
https:
Composer
composer require endroid/qrcode
实例
<?php use Endroid\QrCode\QrCode;
$qrCode = new QrCode();
$qrCode->setText('Life is too short to be generating QR codes')
->setSize(300)
->setPadding(10)
->setErrorCorrection('high')
->setForegroundColor(array('r' => 0, 'g' => 0, 'b' => 0, 'a' => 0))
->setBackgroundColor(array('r'=>255,'g'=>255,'b'=>255,'a'=>0))
->setLabel('Scan the code')
->setLabelFontSize(16)
->setImageType(QrCode::IMAGE_TYPE_PNG);
header('Content-Type: '.$qrCode->getContentType());
$qrCode->render();
用心去打造出中国最独具特色的资源网站,用每一滴汗水换回所有付出所得的喜悦!
发表评论