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
1 answer

Can the AuthPassword be hashed?

I am creating a web site that converts a web page to PDF and download it to the local server. Can the AuthPassword be hashed to kind of encrypt for security reasons?
0
votes
1 answer

How to convert a file into binary format for sending it inside a POST request payload

I'm trying to use this API, which converts files between different formats. As part of the request, it expects the file in Binary format. I'm trying to figure out exactly what that means when it comes to C#. Everything I've read points to using a…
Ege Ersoz
  • 6,461
  • 8
  • 34
  • 53
0
votes
1 answer

Powerpoint upload stops at ~9MB with cURL -F

I have a problem using ConvertApi.com PowerPoint2Pdf conversion, when uploading files that are larger than 9MB. I can upload at least 43MB PowerPoint files through the browser form without problems, so it should not be a restriction in the API. If…
opell
  • 26
  • 5
0
votes
1 answer

Repeat THEAD on each PDF page, using convertApi

I would like to convert a large TABLE in PDF with a THEAD and TFOOT. A cannot have a good result with a THEAD part. In the PDF, after the first page, the TR are under the THEAD block. Someone have the same problem (and find a solution) ? Do I use…
Domdom
  • 1
  • 1
0
votes
1 answer

Convertapi Word2PDF in Java

I'm having problems reading the response from the server. If I use the StoreFile parameter and access via URL the PDF looks great, but serving it up through my own server always renders the pages blank. Possibly an encoding issue? def…
0
votes
0 answers

DOC to PDF conversion using Jersey framework

I am building a simple Jersey application which converts DOC to PDF. I am using a API from http://www.convertapi.com . I would like to know how to send my file to the API.
0
votes
0 answers

Convertapi Failed SSL Handshake in iOS 9

I am trying to get an image using ConvertApi to get an image from a webpage URL. My problem is that iOS >9 requires SSL for connections, and even ConvertAPI gives us https URLs, the SSL Handshake keeps failing. Here's my code to get the image: let…
aramusss
  • 2,391
  • 20
  • 30
0
votes
1 answer

ConvertAPI/PHP code upload/download 0 bytes

I'm trying to call the ConvertAPI RESTful API using PHP/CURL to convert a form upload PDF to PNG. The file upload is working as the file is showing up on the server, but nothing is returned with curl_getinfo showing [size_upload] => 0 and…
Nick
  • 85
  • 7
0
votes
2 answers

Using curb (rails gem) to convert a file with convertapi

I'm working on a Rails app to send Word files I have stored on Amazon S3 to convertapi for conversion into PDFs. I'm using the paperclip gem to manage the files, and the curb gem to make the actual request. # model with property has_attached_file…
lostphilosopher
  • 4,361
  • 4
  • 28
  • 39
0
votes
1 answer

php code for powerpoint2pdf in convertapi not working

I use the following to convert a doc file to pdf in PHP: function CallToApi($fileToConvert, $pathToSaveOutputFile, $apiKey, &$message,$unique_filename) { try { $fileName = $unique_filename.".pdf"; $postdata = …
Hardik Dave
  • 676
  • 1
  • 6
  • 17
0
votes
1 answer

ConvertApi Web2Pdf missint content when mulitiple pages are concatenated

I am using ConvertApi Web2Pdf for a wordpress site. When I use this tool Web2Pdf Api Tool with a single url, the page converts properly with all content and styling, but when I concatenate several together with %20 I lose some of the content. I…
Erinly
  • 3
  • 2
0
votes
0 answers

Recieving NETWORK_ERR:XMLHttpRequest Exception 101 error when using convert API

I am converting an HTML Document (That is dynamically generated from an API call) and using Convert API to convert the HTML page to a PDF. This has been working consistently till yesterday when with no code change I started getting this error from…
Adim
  • 811
  • 2
  • 10
  • 25
0
votes
1 answer

How to use ConvertAPI Word2Pdf?

I'm trying to call ConvertAPI.com/Word2Pdf, but with no success. My sample code is: $fileToConvert = 'test.docx'; $apiKey = *******; $postdata = array('OutputFileName' => 'test.pdf', 'ApiKey' => $apiKey, 'File' => $fileToConvert); $ch =…
Zoran Kalinić
  • 317
  • 2
  • 10
  • 23
0
votes
0 answers

Filepicker.io + Google Document View + ConvertAPI

I am trying to hack some code together to use Google Viewer to generate document previews for files uploaded with a filepicker. However, it keeps coming up blank. No matter what ConversionDelay value I pass in the image is always of an empty…
Malk
  • 11,855
  • 4
  • 33
  • 32
0
votes
1 answer

Ruby Post file to server

I am new to Ruby and trying to post file from web app to another server using the code below but without any success - the file is not posted. How do to it correctly? uri = URI("http://do.convertapi.com/word2pdf") puts file_path req =…
Tomas
  • 17,551
  • 43
  • 152
  • 257