cmc-sales/php/app/vendors/pagecounter.php

25 lines
338 B
PHP
Raw Normal View History

<?php
App::import('Vendor','tcpdf/tcpdf');
App::import('Vendor', 'fpdi/fpdi');
/* Count pages of the PDF attachments using FPDI */
class PageCounter extends FPDI {
function count($file) {
$pdf = new FPDI();
$count = $pdf->setSourceFile($file);
if(is_numeric($count)) {
return $count;
}
else {
return;
}
}
}
?>