2
Is it possible to extract the information according to the PDF position (x,y coordinate) in PHP? I have seen that it is possible to do this in C# using the Pdfreader class.
2
Is it possible to extract the information according to the PDF position (x,y coordinate) in PHP? I have seen that it is possible to do this in C# using the Pdfreader class.
3
You can use the following:
PDF Text Extractor - (requires registration)
or this class - (last update 2014)
Browser other questions tagged php pdf
You are not signed in. Login or sign up in order to post.
I’ve already used these functions... They take everything you have in the PDF.. I would like to take only one area of the PDF, that is, pass the coordinates and only get the text of that selected area!
– Jordan Bragon
If that area that Voce wants to pick up with strings is always fixed then it is a property of the document as
CreationDate
orPage
right?– RFL
So here’s the thing... There will be several types of PDF’s, for each model I will create a "mask" to extract the information and this information is not like Creationdate or Page.
– Jordan Bragon
use Pdfparser and with the generated text use the function
strripos
PHP to find the word or chunk you want, try to manipulate it this way.– RFL
If there’s no other way, I’ll do it like this... I am trying to do this so that I do not take irrelevant information, because the PDF’s that I will manipulate do not always understand all letters. My goal is to extract the PDF data and make the insertion in the database so that the insertion of documents in my GED system is automatic. I thank you for your help and your good will!
– Jordan Bragon
@Did Jordanbragon manage to make it work this way? Tehno the need for something similar.
– Willian Coqueiro
@Did Jordanbragon solve it? I’m in need of something similar.
– Renato Nascimento
@Williancoqueiro I could not!
– Jordan Bragon