Is there any tool to find the X-Y location on a text content in a pdf file ?
相关问题
- Correctly parse PDF paragraphs with Python
- React Native Inline style for multiple Text in sin
- Set BaseUrl of an existing Pdf Document
- How to change the first two uppercase characters o
- How can I get all text from a PDF in Swift?
相关文章
- 放在input的text下文本一直出现一个/(即使还没输入任何值)是什么情况
- Render embedded image in PDF using Flying-Saucer f
- Python Sendgrid send email with PDF attachment fil
- C# MVC website PDF file in stored in byte array, d
- Generating .afm from .ttf [closed]
- How To Programmatically Enable/Disable 'Displa
- How to reduce PDF file size programmatically in Ja
- Rendering plain text through PHP
Try running "Preflight..." in Acrobat and choosing
PDF Analysis -> List page objects, grouped by type of object
.If you locate the text objects within the results list, you will notice there is a position value (in points) within the
Text Properties -> * Font
section.Docotic.Pdf Library can do it. See C# sample below:
TET, the Text Extraction Toolkit from the pdflib family of products can do that. TET has a commandline interface, and it's the most powerful of all text extraction tools I'm aware of. (It can even handle ligatures...)