Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created October 24, 2023 12:40
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/7146cf5e2c5a45dbe42a4d6b4071bd40 to your computer and use it in GitHub Desktop.
Save bjoerntx/7146cf5e2c5a45dbe42a4d6b4071bd40 to your computer and use it in GitHub Desktop.
using (TXTextControl.ServerTextControl tx = new TXTextControl.ServerTextControl())
{
tx.Create();
TXTextControl.Selection selection = new TXTextControl.Selection();
selection.Text = "Hello, PDF/A!";
selection.FontSize = 360;
selection.FontName = "Arial";
selection.ForeColor = System.Drawing.Color.Red;
tx.Selection = selection;
tx.Save("output.pdf", TXTextControl.StreamType.AdobePDFA);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment