Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created October 23, 2023 09:38
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/e51cdfad2d8a9ee04c0d33d5c2460fcf to your computer and use it in GitHub Desktop.
Save bjoerntx/e51cdfad2d8a9ee04c0d33d5c2460fcf to your computer and use it in GitHub Desktop.
using (TXTextControl.ServerTextControl tx = new TXTextControl.ServerTextControl())
{
tx.Create();
string html = File.ReadAllText("sample.html");
// load HTML string
tx.Load(html, TXTextControl.StringStreamType.HTMLFormat);
// change HTML root style BODY
TXTextControl.ParagraphStyle bodyStyle = tx.ParagraphStyles.GetItem("BODY");
bodyStyle.FontName = "Times New Roman";
bodyStyle.Apply();
// 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