接口地址
https://api.vvhan.com/api/ico
返回格式
IMG
请求方式:
GET
请求示例:
https://api.vvhan.com/api/ico?url=www.vvhan.com
参数说明
名称 | 必填 | 类型 | 说明 |
---|---|---|---|
url | 是 | string | 输入网站URL |
返回数据
直接返回ico图片
调用实例
<img src="https://api.vvhan.com/api/ico?url=Api.vvhan.com" alt="韩小韩API">
示例代码
<?php
$url = $_GET['url']; $src = "https://api.vvhan.com/api/ico?url=" . $url; header('Content-type: image/png'); $res = imagecreatefromstring(file_get_contents($src)); imagepng($res); imagedestroy($res);
?>