有没有图书馆;专有或开源(但最好是开源)可以在LAMP堆栈上生成矢量QR码?
我想在PHP Web应用程序中使用它。
答案 0 :(得分:0)
使用支持SVG的库http://phpqrcode.sourceforge.net/。
<?php
include('../lib/full/qrlib.php');
// SVG file format support
$svgCode = QRcode::svg('PHP QR Code :)');
echo $svgCode;
示例http://phpqrcode.sourceforge.net/examples/example_201_basic_svg.php