图片处理 Vector矢量图
图片转矢量图:使用AI技术解决传统软件转矢量图的缺点,在细节,清晰度,拟合有更好效果。
一.您的KEY
点击前往获取KEY |【图片处理】点击KEY按钮获取
二.创建请求
请求地址:https://imageapi.ai-gs.cn/v1/vector
请求方式:POST
URL:
参数 | 值 |
---|---|
token string 必填参数 | 点击前往获取KEY |
请求头:
参数 | 值 |
---|---|
Content-Type string 必填参数 | application/json |
Accept string 必填参数
|
application/json |
请求体:
参数 | 值 |
---|---|
format string 必须
转换格式。可转SVG,EPS,DXF格式 |
|
image_url string 必须
图像 URL。该链接需要是可以直接访问的图片,不能是网页内嵌图片,不超过10MB。 |
创建请求体例子:
-
Vector
图片转换成svg格式{ "format": "svg", "image_url": "https://xxx.com/1.jpg" }
三.接口返回
创建任务响应状态:
-
200 成功
获取矢量图结果成功。文件请及时下载,生成的矢量图服务器保留7天,自动删除
{ "code": "success", "image_url": "https://xxxx.com/a.svg", "task_id": "d991633f-dd49-58a9-9b86-0d9ae7bfaf34" }
-
401 输入性错误
-
no_token
使用的 API 时未携带 token,无法通过校验。
{ "code": "no_token", "detail": "No token specified in url query." }
-
invalid_post
POST参数不对,缺少参数,或者参数校验不通过
{ "code": "invalid_post", "detail": "Your image_url is empty." }
-
-
402 处理中错误
图片大小超出10MB,图片链接无法访问下载等
{ "code": "false", "detail": "Image size exceeds the maximum allowed size(10MB).", "task_id": "d991633f-dd49-58a9-9b86-0d9ae7bfaf34" } -
403 账号性错误
-
used_up
错误代码,API 套餐已经用完,需要充值 { "code": "used_up", "detail": "Your account does not have enough credits, please recharge." }
-
invalid_api_key
你的API KEY 错误 { "code": "invalid_api_key", "detail": "You provide an invalid Image API key." }
-
-
500 未知错误
未知错误,需要联系系统管理员。 { "code": "unknown", "detail": "Vector's server failure occurred, please contact the administrator" }