0

我们正在尝试将多个图像合并到单个 pdf 文档中。convertapi 似乎是我们的完美解决方案。但是,当我尝试使用您的 api 的示例时,它会返回

{
    "Code": 5999,
    "Message": "The error mapping is missing."
}

我的要求在下面,请您指出正确的方向:

网址:https ://v2.convertapi.com/pdf/to/merge?Secret=XXXXXXXXXXXXXXXX

发布数据:

{
    "Parameters": [
        {
            "Name": "StoreFile",
            "Value": "true"
        },
        {
            "Name": "PdfVersion",
            "Value": "1.7"
        },
        {
            "Name": "Files",
            "FileValues": [
                {
                    "Url": "https://vignette.wikia.nocookie.net/gameofthrones/images/5/52/Viserion_brought_down.jpg"
                },
                {
                    "Url": "https://vignette.wikia.nocookie.net/gameofthrones/images/5/52/Viserion_brought_down.jpg"
                },
                {
                    "Url": "https://vignette.wikia.nocookie.net/gameofthrones/images/5/52/Viserion_brought_down.jpg"
                }
            ]
        }
    ]
}
4

1 回答 1

0

转换可以通过在连续转换中使用结果文件链接作为源文件来链接。结果文件 URL 将被例外处理,转换将被高性能处理。例子:

  1. 将 JPG 转换为 PDF

    要求:

    POST https://v2.convertapi.com/jpg/to/pdf?secret=XXX&storefile=true&file=https://example.com/file1.jpg
    

    结果:

    {
      "ConversionTime": 2,
      "Files": [
        {
          "FileName": "file1.pdf",
          "FileSize": 19456,
          "Url": "https://v2.convertapi.com/d/ZYXFNMPT/file1.pdf"
        }
      ]
    }
    

    要求:

    POST https://v2.convertapi.com/jpg/to/pdf?secret=XXX&storefile=true&file=https://example.com/file2.jpg
    

    结果:

    {
      "ConversionTime": 2,
      "Files": [
        {
          "FileName": "file2.pdf",
          "FileSize": 19456,
          "Url": "https://v2.convertapi.com/d/QAZEDCTG/file2.pdf"
        }
      ]
    }
    
  2. 合并结果 PDF 文件

    POST https://v2.convertapi.com/pdf/to/merge?Secret=XXXXXXXXXXXXXXXX
    
    {
      "Parameters": [
        {
          "Name": "Files",
          "FileValues": [
             {
                 "Url": "https://v2.convertapi.com/d/ZYXFNMPT/file1.pdf"
             },
             {
                 "Url": "https://v2.convertapi.com/d/QAZEDCTG/file2.pdf"
             }
          ]
        }
      ]
    }
    
于 2017-10-09T10:28:24.080 回答