Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created November 13, 2023 17:44
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/8f1e2768fe19adf4384237f62473f5c3 to your computer and use it in GitHub Desktop.
Save bjoerntx/8f1e2768fe19adf4384237f62473f5c3 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!";
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