二维码生成API接口


接口地址

https://api.lxurl.net/api/qrcode.php

返回格式

IMG

请求方式:

GET

请求示例:

https://api.lxurl.net/api/qrcode.php?text=https://api.lxurl.net/&size=10

参数说明

名称 必填 类型 说明
textString二维码内容(链接请带Http/Https,必填)
sizeString二维码大小(大小为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);