Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created May 3, 2024 14:59
Show Gist options
  • Save bjoerntx/1feae6eff5551d608023f2662917e462 to your computer and use it in GitHub Desktop.
Save bjoerntx/1feae6eff5551d608023f2662917e462 to your computer and use it in GitHub Desktop.
string url = "https://www.textcontrol.com/img/corporate_id/tx_logo.svg";
using (WebClient client = new WebClient())
{
byte[] bytes = client.DownloadData(url);
using (MemoryStream ms = new MemoryStream(
bytes, 0, bytes.Length, writable: false, publiclyVisible: true))
{
// create image object
TXTextControl.Image myImage = new TXTextControl.Image(ms);
textControl1.Images.Add(myImage, -1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment