ilovepdf-php icon indicating copy to clipboard operation
ilovepdf-php copied to clipboard

iLovePDF Rest Api - PHP Library (https://developer.ilovepdf.com)

Results 4 ilovepdf-php issues
Sort by recently updated
recently updated
newest added

**Description** We are experiencing an issue where the "Content-Disposition" header is missing from the API response, which is critical for our file download functionality. This problem has recently surfaced and...

This is my code to convert html to PDF, but I get cURL error 7 ``` $ilovepdf = new Ilovepdf('{public_key}','{secret_key}'); $myTaskHtmlpdf = $ilovepdf->newTask('htmlpdf'); $file = $myTaskHtmlpdf->addUrl($post_url); $myTaskHtmlpdf->execute(); $myTaskHtmlpdf->download(); ``` This...

I need to save in temp path the converted document to upload again to another task compress and save again in server? Dont have the situation of add 2 tasks...

I tried to run a task, that should trigger a webhook when finished (Like [example webhook_send]). That is my code: ```php require_once('vendor/autoload.php'); use Ilovepdf\OfficepdfTask; // Load my keys into $keys...