PHP二维码图片生成类
匿名 · 更新于 2015/12/30
cQRCode.php下载地址:https://yunpan.cn/cuxbyTXh4GJxp 访问密码 2252
<?php /** * 引用方式 * require 'cQRCode.php'; * $qr = new cQRCode($node_url, ECL_H); * $qr->getQRImg()->save($qrimage_path, 90); *//** * 实例代码 */ require 'cQRCode.php'; $str = "http://www.edbiji.com"; $qr = new cQRCode($str, ECL_H); $qr->getQRImg()->save('1.jpg', 200); ?> <img src="1.jpg" />
