I'm using php function
file_get_contents($filename)
to get the file content, but I'd also like to skip the first page.
How can I do it?
you have several pages in your file?
halojoy wrote:you have several pages in your file?
Yes, I have more than 1 page for my pdf files
The file_get_contents function will return the content as a string so you need to find out how to parse that string. I believe the pdf format is open but i have not searched for it. In the spec you should be able to find out how the page separators are encoded.