tintran / pdf_exif
Package for extracting information from PDF file
Installs: 13
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/tintran/pdf_exif
Requires (Dev)
- phpunit/phpunit: ^6.0
This package is not auto-updated.
Last update: 2025-09-28 10:58:12 UTC
README
This package make use of the PDFlib package to interact and extract information from PDF files
Requirements
You should have PDFlib installed properly to your system. Refer at this link
Installation
The package can be installed via composer:
$ composer require tintran/pdf_exif
Usage
Read and extract information from a PDF file
$read = new PDFLibrary($file); var_dump($read->get_pdf_all()); var_dump($read->get_pdf_title()); var_dump($read->get_pdf_author());