Questions tagged [convertapi]

ConvertAPI is a high-performance 200+ file format conversion and manipulation REST API service. It can be integrated into any application or platform using either our SDK libraries or plain HTTP requests. Use this tag for questions related to the ConvertAPI service. Please include all relevant tags on your question, e.g., programming language, file formats, etc.

ConvertAPI is a fast and fault-tolerant web service used by software developers to convert between MS Office, Open Office, and iWorks stack, as well as HTML documents, images, manipulate PDF files, and numerous other formats. Being a RESTful API, the service can be used with any programming language — C#, Java, Ruby, Python, PHP, JavaScript, Node.js, Kotlin, Go, etc.

ConvertAPI boasts 99.99% uptime since its launch in 2011. Such robustness is achieved due to the globally distributed, highly available platform, which can scale up or down to effectively process any amount of traffic. ConvertAPI is fully GDPR compliant.

You can find all supported file formats and conversions here: https://www.convertapi.com/doc/file-formats.

ConvertAPI provides official API libraries for all your favorite languages and frameworks:

We encourage you to build custom conversion workflows for multiple-stage file processing. This best-practice-driven REST API approach improves performance and gives you full control over file processing at any stage of the flow. You can also create ConvertAPI workflows on Zapier. Feel free to post Zapier related issues on SO too.

80 questions
0
votes
0 answers

Accents issue doc to txt

First I want to convert pdf file to html, but the api can't do that. So I tried to convert pdf to txt. I have a lot of problems with multiple space or line... So I tried (again) to convert pdf to word and word. The word is perfect. Unfortunately,…
Thomas Durand
  • 46
  • 1
  • 10
0
votes
1 answer

Convert files and merge using ConvertAPI

I am trying to convert my doc and png files to PDF and merge them using ConvertAPI, Whenever I try to run the code snippet provided on their site it just doesn't return any file result. The online stats on my page shows it has been converted This…
Karthik Ganesan
  • 4,142
  • 2
  • 26
  • 42
0
votes
1 answer

Multi line header using phpspreadsheet

I insert multi line header using phpspreadsheet. Then, I save as xlsx file. I use convertapi to convert the xlsx file to pdf. In pdf, only header line one only aligned to…
Premlatha
  • 1,676
  • 2
  • 20
  • 40
0
votes
2 answers

How to select range before convert xlsx to pdf using convertapi

Using convertapi, I would like to set range and convert only selected area to pdf. Is this possible?
Premlatha
  • 1,676
  • 2
  • 20
  • 40
0
votes
3 answers

ConvertAPI: PDF to JPEG in Python 2.7.10 - how to get the conversion result URL?

I'm pretty much a noob with Python (and coding in general), so please excuse me if I'm being stupid. I'm writing a short script for a custom Zapier step, which is supposed to iterate through a list of URLs, pick the ones that end in .pdf and send…
0
votes
1 answer

ConvertApi doesn't follow HTTP 302 Redirect

I'm trying to convert a file which is located on a remote server. I use ConvertApi for .NET. My code: string url = "http://test.com/myfile"; var convertApi = new ConvertApi("secret"); var response = await convertApi.ConvertAsync("web", "pdf", new…
Vladimir Panchenko
  • 1,141
  • 2
  • 15
  • 25
0
votes
0 answers

Why does ConvertAPI gives me error in drupal7

I m using ConvertAPI for convert doc to jpg . It works correct in PHP. But When I put same code In drupal 7 it Gives me error below ConvertApi\Error\Api: File link is set incorrectly. URL or File Id must be set. My code is : require…
Patel Nitesh
  • 53
  • 2
  • 12
0
votes
1 answer

How to convert HTML String to PDF using ConvertAPI (without a physical file)

Previously I was using http://do.convertapi.com/Web2Pdf to convert HTML String to PDF using a simple GET request (not POST) using Java. The entire content was passed using curl parameter. However, that API seems to have stopped working recently.…
DFB
  • 861
  • 10
  • 25
0
votes
0 answers

convertApi not including fonts in html jpg conversion

I am using convertapi in order to generate an image from a html page (web 2 jpg) and it is not including the fonts that i am loading from a css file. Have unsuccessfully tried to include this fonts in the file head. this is the way im loading the…
Tyra Pululi
  • 436
  • 1
  • 7
  • 19
0
votes
1 answer

How to PHP Convertapi HTML to PDF without physcal HTML file

i wish to convert an html document, which is stored as a string ($html) into PDF using convertAPI via CURL (ie no physical file) i don't understand how I need to post the $html to the API, i was looking at the example on the convertapi webpage, but…
Clint
  • 973
  • 7
  • 18
0
votes
2 answers

Avoid "double post" browser message with web to pdf api post

I have a working web-to-pdf button using v2 of convert api.
chuelibrueder
  • 85
  • 1
  • 4
0
votes
2 answers

ConvertAPI - WEB to PDF using WebClient C# throws (400) Bad Request

I am Getting the error "(400) Bad Request" on Calling ConvertApi web to Pdf Api.
Avinash
  • 19
  • 3
0
votes
1 answer

ConvertAPI - PDF to PPT in C#

We were upgrading to the new logic specified by ConvertAPI. But the framework used by us is 4 because of which System.Net.Http(HttpResponseMessage, HttpClient ,MultipartFormDataContent ,StreamContent ,StringContent) classes are not being found.…
Shifa
  • 5
  • 4
0
votes
1 answer

ConvertApi Post Error

We are trying to merge multiple images into single pdf document. And convertapi seemed the perfect solution for us. However when I tried a sample with using your api, it returns { "Code": 5999, "Message": "The error mapping is…
tolgatanriverdi
  • 561
  • 9
  • 31
0
votes
1 answer

https://do.convertapi.com/Pdf2PowerPoint without providing physical file location

I am calling API https://do.convertapi.com/Pdf2PowerPoint Their website for the API details is https://www.convertapi.com/ To upload the file in their C# documentation they have used client.UploadFile() function which expects file name parameter…