1

I'm developing a plugin for Adobe Acrobat X with C++ that copies all text from opened .pdf in a .txt file. I've tried text runs and text characters from PDEText, it copies all text but it concatenates all lines.

Q: how can I find where end line is in my text?

Cretzu
  • 61
  • 9

1 Answers1

0

I made it!

I parse the text letter by letter and I check if they're on the same row verifying top or bottom attribute from ASFixedRect ( I use PDETextGetBBox() to get ASFixedRect ).

Farewell!

Cretzu
  • 61
  • 9