主题
文档转换成 jpg
将文档格式转换成 jpg
基本信息
请求方法:POST
请求路径:/api/v1/openapi/office/convert/files/to/jpg
请求主机:developer.kdocs.cn
限流频次
应用类型 | 限额 |
---|---|
测试应用 | 100 次/天 |
正式应用 | 200 次/天 |
目前支持的文档类型
文档类型 | 扩展名 |
---|---|
演示 | .pptx .ppt |
WPS 文字 | .docx .doc |
WPS 表格 | .xlsx .xls |
WPS PDF | .pdf |
Header 参数
参数 | 必须 | 类型 | 说明 |
---|---|---|---|
Date | 是 | string | 使用 RFC1123 时间格式的当前时间 |
Content-Md5 | 是 | string | HTTP Body 中数据的 MD5 值十六进制表达方式, 必需小写, 如果是 get 请求一律使用 URI 计算 MD5 |
Content-Type | 是 | string | 目前固定为: application/json |
Authorization | 是 | string | "WPS-2:" + app_id + ":" + sha1( app_key + Content-Md5 + Content-Type + DATE ) |
Body 参数
参数 | 必须 | 类型 | 说明 |
---|---|---|---|
url | 是 | string | 文档下载地址 |
filename | 是 | string | 文档名称,包含扩展名,例如:文字文稿.docx |
password | 否 | string | 文档打开密码(如果文档有加密,该项则必填) |
long_pic | 否 | bool | 是否转换成单张长图,设置为 true 时,最多仅支持将 20 标准页面合成单张长图,超过可能会报错 |
image_dpi | 否 | int | 按指定 dpi 渲染图片,该参数与 scale 共同作用,取值范围 96-600。默认值为 96。 |
scale | 否 | int | 缩放参数,允许范围是 20-200,100 表示不缩放,小于 100 表示是缩小,大于 100 表示是放大。 默认值为 100 |
quality | 否 | int | 质量参数,范围是 0-100,越大表示质量越好 |
ranges | 否 | string | 自定义需要转换的分页范围,例如:"1,2-4,7",则表示转换文档的 1、2、3、4、7 页面 (与 from_page 和to_page 互斥) |
from_page | 否 | int | 转换起始页,从 1 开始计数(与 ranges 互斥) |
to_page | 否 | int | 转换结束页,需要大于 from_page , (与 ranges 互斥) |
show_comments | 否 | int | 是否显示批注。默认值为 false,不显示批注 |
fit_to_width | 否 | int | 值为 1 表示将所有列放到 一 页中进行排版,默认值为 0 (该字段只在 ET 表格中生效) |
fit_to_height | 否 | int | 值为 1 表示将所有行放到 一 页进行排版,默认值为 0 (该字段只在 ET 表格中生效) |
is_horizontal | 否 | bool | 值为 true 表示纸张是水平放置。默认值为 false,纸张垂直放置 (该字段只在 ET 表格中生效) |
paper_size | 否 | int | 设置纸张(画布)大小,对应信息为:0 → A4; 1 → A2; 2 → A0。默认 A4 纸张 (该字段只在 ET 表格中生效) |
返回参数
参数 | 必须 | 类型 | 说明 |
---|---|---|---|
code | 是 | integer | 错误码 |
data | 是 | data {} | 响应数据 |
示例
请求示例
curl --request POST \
--url https://developer.kdocs.cn/api/v1/openapi/office/convert/files/to/jpg \
--header 'Authorization: WPS-2:SX20220101ABCDEF:ac59dac1460772a04b3a97d7ef78409f28241e3a' \
--header 'Content-Md5: d41d8cd98f00b204e9800998ecf8427e' \
--header 'Content-Type: application/json' \
--header 'Date: Wed, 23 Jan 2013 06:43:08 GMT' \
--data '{"url":"https://xxx.com/xxx","filename":"演示文稿.pptx"}'
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\"url\":\"https://xxx.com/xxx\",\"filename\":\"演示文稿.pptx\"}");
Request request = new Request.Builder()
.url("https://developer.kdocs.cn/api/v1/openapi/office/convert/files/to/jpg")
.post(body)
.addHeader("Date", "Wed, 23 Jan 2013 06:43:08 GMT")
.addHeader("Content-Md5", "d41d8cd98f00b204e9800998ecf8427e")
.addHeader("Content-Type", "application/json")
.addHeader("Authorization", "WPS-2:SX20220101ABCDEF:ac59dac1460772a04b3a97d7ef78409f28241e3a")
.build();
Response response = client.newCall(request).execute();
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "https://developer.kdocs.cn/api/v1/openapi/office/convert/files/to/jpg"
payload := strings.NewReader("{\"url\":\"https://xxx.com/xxx\",\"filename\":\"演示文稿.pptx\"}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Date", "Wed, 23 Jan 2013 06:43:08 GMT")
req.Header.Add("Content-Md5", "d41d8cd98f00b204e9800998ecf8427e")
req.Header.Add("Content-Type", "application/json")
req.Header.Add("Authorization", "WPS-2:SX20220101ABCDEF:ac59dac1460772a04b3a97d7ef78409f28241e3a")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
import http.client
conn = http.client.HTTPSConnection("developer.kdocs.cn")
payload = "{\"url\":\"https://xxx.com/xxx\",\"filename\":\"演示文稿.pptx\"}"
headers = {
'Date': "Wed, 23 Jan 2013 06:43:08 GMT",
'Content-Md5': "d41d8cd98f00b204e9800998ecf8427e",
'Content-Type': "application/json",
'Authorization': "WPS-2:SX20220101ABCDEF:ac59dac1460772a04b3a97d7ef78409f28241e3a"
}
conn.request("POST", "/api/v1/openapi/office/convert/files/to/jpg", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://developer.kdocs.cn/api/v1/openapi/office/convert/files/to/jpg",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "{\"url\":\"https://xxx.com/xxx\",\"filename\":\"演示文稿.pptx\"}",
CURLOPT_HTTPHEADER => [
"Authorization: WPS-2:SX20220101ABCDEF:ac59dac1460772a04b3a97d7ef78409f28241e3a",
"Content-Md5: d41d8cd98f00b204e9800998ecf8427e",
"Content-Type: application/json",
"Date: Wed, 23 Jan 2013 06:43:08 GMT"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
const data = JSON.stringify({
"url": "https://xxx.com/xxx",
"filename": "演示文稿.pptx"
});
const xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener("readystatechange", function () {
if (this.readyState === this.DONE) {
console.log(this.responseText);
}
});
xhr.open("POST", "https://developer.kdocs.cn/api/v1/openapi/office/convert/files/to/jpg");
xhr.setRequestHeader("Date", "Wed, 23 Jan 2013 06:43:08 GMT");
xhr.setRequestHeader("Content-Md5", "d41d8cd98f00b204e9800998ecf8427e");
xhr.setRequestHeader("Content-Type", "application/json");
xhr.setRequestHeader("Authorization", "WPS-2:SX20220101ABCDEF:ac59dac1460772a04b3a97d7ef78409f28241e3a");
xhr.send(data);
const http = require("https");
const options = {
"method": "POST",
"hostname": "developer.kdocs.cn",
"port": null,
"path": "/api/v1/openapi/office/convert/files/to/jpg",
"headers": {
"Date": "Wed, 23 Jan 2013 06:43:08 GMT",
"Content-Md5": "d41d8cd98f00b204e9800998ecf8427e",
"Content-Type": "application/json",
"Authorization": "WPS-2:SX20220101ABCDEF:ac59dac1460772a04b3a97d7ef78409f28241e3a"
}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.write(JSON.stringify({url: 'https://xxx.com/xxx', filename: '演示文稿.pptx'}));
req.end();
CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_URL, "https://developer.kdocs.cn/api/v1/openapi/office/convert/files/to/jpg");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "Date: Wed, 23 Jan 2013 06:43:08 GMT");
headers = curl_slist_append(headers, "Content-Md5: d41d8cd98f00b204e9800998ecf8427e");
headers = curl_slist_append(headers, "Content-Type: application/json");
headers = curl_slist_append(headers, "Authorization: WPS-2:SX20220101ABCDEF:ac59dac1460772a04b3a97d7ef78409f28241e3a");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{\"url\":\"https://xxx.com/xxx\",\"filename\":\"演示文稿.pptx\"}");
CURLcode ret = curl_easy_perform(hnd);
var client = new RestClient("https://developer.kdocs.cn/api/v1/openapi/office/convert/files/to/jpg");
var request = new RestRequest(Method.POST);
request.AddHeader("Date", "Wed, 23 Jan 2013 06:43:08 GMT");
request.AddHeader("Content-Md5", "d41d8cd98f00b204e9800998ecf8427e");
request.AddHeader("Content-Type", "application/json");
request.AddHeader("Authorization", "WPS-2:SX20220101ABCDEF:ac59dac1460772a04b3a97d7ef78409f28241e3a");
request.AddParameter("application/json", "{\"url\":\"https://xxx.com/xxx\",\"filename\":\"演示文稿.pptx\"}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
返回示例
{
"code": 0,
"data": {
"task_id": "open:zjsiwfuotpbqblrlfwtkfkioargjbla"
},
"result": "ok"
}
查询异步任务结果
携带 task_id查询结果
其中 result 对象说明
参数 | 必须 | 类型 | 说明 |
---|---|---|---|
images | 否 | image[] | 转换后的图片列表 |
返回示例
{
"code": 0,
"data": {
"status": "success",
"progress": 100,
"result": {
"images": [
{
"url": "https://xxx.com/xxx",
"size": 70154
},
{
"url": "https://xxx.com/xxx",
"size": 112172
},
{
"url": "https://xxx.com/xxx",
"size": 954
},
{
"url": "https://xxx.com/xxx",
"size": 35327
}
]
}
}
}
错误码
请参考错误码说明