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

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

Results 10 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...

I'm experiencing an issue when attempting to merge PDF files using the IlovePDF API. Although my credits are being deducted each time I run the code, the downloaded PDF file...

I think this is the same as in https://github.com/ilovepdf/ilovepdf-php/issues/46 and I posted it as a comment there earlier, but I assume this is unwatched - so I add a new...

Hi, I use PHPStan within my project and use your library. PHPStan reports some errors on `ElementAbstract` when we use it's derivations such as `ElementSignature`. Mainly when chaining methods. See...

Hi, I use the library in my project to ask for signatures. As the documentation states after a task start request, we get the remaining credits only. I just tested...

use ilove pdf version 1.1.18: getting error on download file type pdf cause the response Content-Disposition is no exist look at function downloadFile image above

private function getFirstErrorString($error){ if (!is_string($error)) { return $this->getFirstErrorString(array_values($error)[0]); } return $error; } on this code i have an error. "if (!is_string($error)) {" but $error is not a string or an...