Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Last active June 16, 2022 10:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/7b7cf954b6b07d4d96e76e3c0a3e3a96 to your computer and use it in GitHub Desktop.
Save bjoerntx/7b7cf954b6b07d4d96e76e3c0a3e3a96 to your computer and use it in GitHub Desktop.
Lines pdfLines = new Lines("lease_agreement.pdf");
foreach (ContentLine contentLine in pdfLines.ContentLines) {
Console.WriteLine("Content line on page {0}: {1}",
contentLine.Page.ToString(),
contentLine.Text);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment