これは古い質問ですが、将来の参考のために別の解決策を共有したいだけです。
GroupDocs.Conversion Cloud REST APIは、すべての Microsoft Office および OpenDocument ファイル形式、PDF ドキュメント、HTML、CAD、ラスター イメージなどを含む、65 を超える種類のドキュメントと画像の間で相互に変換するためのもう 1 つのオプションです。
cURL サンプル コード:
### Retrieve access token
### TODO: Get your AppSID and AppKey at https://dashboard.groupdocs.cloud (free registration is required).
curl --request POST https://api.groupdocs.cloud/connect/token
--header "Content-Type: application/x-www-form-urlencoded"
--data "grant_type=client_credentials&client_id=[APP_SID]&client_secret=[APP_KEY]"
### Convert and Add Watermark
curl --request POST "https://api.groupdocs.cloud/v2.0/conversion"
--header "authorization: Bearer [ACCESS_TOKEN]"
--header "accept: application/json"
--header "Content-Type: application/json" --data "{ "FilePath": "test_doc.docx", "Format": "pdf", "ConvertOptions": { "FromPage": 1, "PagesCount": 1, "WatermarkOptions": { "text": "Watermark" } }, "OutputPath": "Output"}"
Aspose で開発者エバンジェリストとして働いています。