Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 251 Bytes

README.markdown

File metadata and controls

10 lines (6 loc) · 251 Bytes

This is a mostly complete port of pyPdf. The API is basically the same.

<?php

include 'pdf-parser/pdf.php';

$pdf = new PdfFileReader(fopen('test.pdf', 'rb'));
print $pdf->page_count;

?>