PDF压缩
说明
- 将1个PDF文件压缩成一定比例
接口说明
请求地址
request_url
参考基础 > request_url
请求参数,POST请求
名称 | 类型 | 必须 | 描述 |
---|---|---|---|
method | String | 是 | pdf.compress,固定值 |
token | String | 是 | 可自行创建或更新,参考基础 > token |
async | String | 否 | 任务方式,默认0,代表同步;1代表异步,异步需要设置回调地址,或者主动查询结果 |
input | String | 是 | 输入文件,可访问互联网url,比如 https://static.easyyun.com/static/example/files/big.pdf |
options | String | 是 | json格式,比如{"quality": "low"} |
options字段说明
- quality 必须。可选值:high、middle、low。代表压缩后的图片质量
响应参数,类型为JSON
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
request_id | String | xxx | 任务id |
code | String | 200 | 见code说明 |
data | String | {"file_url": "xxx"} | json格式消息内容 |
code_msg | String | "成功" | code描述 |
请求示例
curl -X POST 'https://test-rest-api.easyyun.com/v1/router/rest' \
-d 'method=pdf.compress' \
-d 'token=395a25d6fa758bfb6c0d3da007a8b189' \
-d 'input=https://static.easyyun.com/static/example/files/big.pdf' \
-d 'options={"quality": "low"}'
响应示例
{
"request_id": "xxx",
"code": "200",
"data": {
"file_url": "https://static.easyyun.com/static/example/out/compress_big.pdf"
},
"code_msg": "请求成功"
}