Search code examples
pdfdocxconvertapi

Is there way to convert docx to image-only pdf with convertapi?


I'm trying to find a way to convert docx to image-only pdf, so I could put a watermark on the pdf document right after conversion.

I've looked through convertapi documentation and I can't find any available options.


Solution

  • First convert the .docx file to a .jpg:

    https://www.convertapi.com/docx-to-jpg

    then feed the .jpg to

    https://www.convertapi.com/jpg-to-pdf

    to generate .pdf

    You can chain the API calls to get your desired output.