本页内容
Office 文件转档
若要将 Office 文件转换为 PDF,请向/file/handle
发送请求,包括作为输入的 Office 文件和文件处理参数。在开始之前,请确保 ComPDFKit Processor 已启动并正在运行。
您将向处理器的端点/file/handle
发送 POST 请求。要了解有关多部分请求的更多信息,请参阅 API 参考指南。
使用本地Office文件转换
向 /file/handle
发送分段请求并附加 Office 文件:
shell
curl -f -X POST http://localhost:7000/file/handle \
-H "Content-Type: multipart/form-data" \
-F file=@"document.docx" \
-F executeType="docx/pdf" \
-F password="file open password" \
> result.pdf