Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created March 28, 2022 15:15
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/0c0d6457252ea29a0d01185050a353d1 to your computer and use it in GitHub Desktop.
Save bjoerntx/0c0d6457252ea29a0d01185050a353d1 to your computer and use it in GitHub Desktop.
byte[] bytes = System.IO.File.ReadAllBytes("image.png");
MemoryStream ms = new MemoryStream(
bytes, 0, bytes.Length, writable: false, publiclyVisible: true);
TXTextControl.Image image = new TXTextControl.Image(ms);
textControl1.Images.Add(image, -1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment