AI绘画-文生图 图片大小:1328x1328~1664x928~1472x1140~1584x1056 分辨率也可以反着用 PKC使用方法为:自定义API接口-图片API
https://api.iosxx.cn/API/aiwst.php
https://api.iosxx.cn/API/aiwst.php?ai=生成一只小狗
| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
ai |
string | 是 | 描述内容 |
size |
string | 否 | 图片大小:1328x1328~1664x928~1472x1140~1584x1056 |
| 状态码 | 说明 |
|---|---|
200 | 请求成功 |
403 | 权限不足或API密钥无效 |
404 | 请求的资源不存在 |
429 | 请求过于频繁,已被限流 |
500 | 服务器内部错误 |
<?php
$url = 'https://api.iosxx.cn/API/aiwst.php';
$params = [
'ai' => 'YOUR_VALUE',
'size' => 'YOUR_VALUE',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url . '?' . http_build_query($params));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = "https://api.iosxx.cn/API/aiwst.php"
params = {
"ai": "YOUR_VALUE",
"size": "YOUR_VALUE",
}
response = requests.get(url, params=params)
print(response.text)
const url = new URL('https://api.iosxx.cn/API/aiwst.php');
const params = {
'ai': 'YOUR_VALUE',
'size': 'YOUR_VALUE',
};
Object.keys(params).forEach(key =>
url.searchParams.append(key, params[key]));
fetch(url)
.then(res => res.text())
.then(data => console.log(data))
.catch(err => console.error(err));
curl -X GET "https://api.iosxx.cn/API/aiwst.php?ai=YOUR_VALUE&size=YOUR_VALUE"