tintran/pdf_exif

There is no license information available for the latest version (1.0.0) of this package.

Package for extracting information from PDF file

1.0.0 2018-04-04 08:43 UTC

This package is not auto-updated.

Last update: 2024-04-14 03:12:15 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());