In previous versions of the Zend framework I would do the following:
Zend_Pdf::load('/path/to/pdf.pdf');
$metaAuthor = $pdf->properties['Author'];
$metaTitle = $pdf->properties['Title'];
$metaSubject = $pdf->properties['Subject'];
$metaKeywords = $pdf->properties['Keywords'];
$metaProducer = $pdf->properties['Producer'];
It seems that Zend has eliminated Zend_pdf from the framework sometime after version 1.9.
Is there another way to get the same details out of a .pdf file with something other than an old version of the Zend framework? (I'm running PHP 5.4 at this point on RedHat if that makes any difference)