Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created October 23, 2023 08:41
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/19df7279fe0a158546c1544c5d48326d to your computer and use it in GitHub Desktop.
Save bjoerntx/19df7279fe0a158546c1544c5d48326d to your computer and use it in GitHub Desktop.
using (TXTextControl.ServerTextControl tx = new TXTextControl.ServerTextControl())
{
tx.Create();
string html = "<html><body><h1>Hello, World!</h1></body></html>";
// load HTML string
tx.Load(html, TXTextControl.StringStreamType.HTMLFormat);
// save as PDF
tx.Save("output.pdf", TXTextControl.StreamType.AdobePDF);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment