ilovepdf / ilovepdf-php
iLovePDF Php Api
Installs: 228 288
Dependents: 0
Suggesters: 0
Security: 0
Stars: 147
Watchers: 10
Forks: 39
Open Issues: 2
Requires
- php: >=7.3
- ext-json: *
- firebase/php-jwt: ^6.0
- guzzlehttp/guzzle: ^7.4
Requires (Dev)
- phpunit/phpunit: ^9.5
- vimeo/psalm: ^4.21
- dev-master
- v1.2.6
- v1.2.5
- v1.2.4
- v1.2.3
- v1.2.2
- v1.2.1
- v1.1.18
- v1.1.17
- v1.1.16
- v1.1.12
- v1.1.11
- v1.1.10
- v1.1.9
- v1.1.8
- v1.1.7
- v1.1.6
- v1.1.5
- v1.1.4
- v1.1.3
- v1.1.2
- v1.1.1
- v1.1.0
- v1.0.16
- v1.0.15
- v1.0.14
- v1.0.12
- v1.0.11
- v1.0.10
- v1.0.9
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- dev-feature/add-add-pdfinfo-signature
- dev-develop
This package is auto-updated.
Last update: 2024-10-09 08:33:22 UTC
README
A library in php for iLovePDF Api
You can sign up for a iLovePDF account at https://developer.ilovepdf.com
Develop and automate PDF processing tasks like Compress PDF, Merge PDF, Split PDF, convert Office to PDF, PDF to JPG, Images to PDF, add Page Numbers, Rotate PDF, Unlock PDF, stamp a Watermark and Repair PDF. Each one with several settings to get your desired results.
Requirements
PHP 7.4 and later.
Install
You can install the library via Composer. Run the following command:
composer require ilovepdf/ilovepdf-php
To use the library, use Composer's autoload:
require_once('vendor/autoload.php');
Getting Started
Simple usage looks like:
use Ilovepdf\Ilovepdf; $ilovepdf = new Ilovepdf('project_public_id','project_secret_key'); $myTask = $ilovepdf->newTask('compress'); $file1 = $myTask->addFile('file1.pdf'); $myTask->execute(); $myTask->download();
Samples
See samples folder.
Documentation
Please see https://developer.ilovepdf.com/docs for up-to-date documentation.