Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created June 10, 2024 10:17
Show Gist options
  • Save bjoerntx/9be53820c53f302b177d1b8cd5647e06 to your computer and use it in GitHub Desktop.
Save bjoerntx/9be53820c53f302b177d1b8cd5647e06 to your computer and use it in GitHub Desktop.
using (TXTextControl.ServerTextControl tx = new TXTextControl.ServerTextControl())
{
tx.Create();
TXTextControl.LoadSettings loadSettings = new TXTextControl.LoadSettings()
{
PDFImportSettings = TXTextControl.PDFImportSettings.GenerateLines
};
tx.Load("invoice.pdf", TXTextControl.StreamType.AdobePDF, loadSettings);
var plainText = tx.Text;
Console.WriteLine(plainText);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment