I'm trying to load a pdf document that contains text and images, then I want to view selected contents from this document ( will apply regex later). So far this is my progress, it is not much but I'm getting an error (Message: Can not open 'desktop\test.pdf' file for reading.), please help.
<?php $filename = 'desktop\test.pdf';
$pdf = Zend_Pdf::load($filename);
?>
just try with below one of them will sure work for you
Method 1: Get the binary string outside of Zend_Pdf
Method 2: Set the $load parameter true
Method 3: Use the static load-method
try to give correct path every time might be absulute path will work or relative may be.