| 名称 | 必填 | 类型 | 说明 |
|---|---|---|---|
| text | 是 | String | 二维码内容(链接请带Http/Https,必填) |
| size | 否 | String | 二维码大小(大小为px,选填) |
二维码图片一张
<img src="https://api.lxurl.net/api/qrcode.php?text=内容" alt="二维码">
$text= $_GET['text'];
$src = "https://api.lxurl.net/api/qrcode.php?text=".$text;
header('Content-type: image/png');
$res = imagecreatefromstring(file_get_contents($src));
imagepng($res);
imagedestroy($res);