Skip to content

Instantly share code, notes, and snippets.

@jazzedge
Created July 12, 2017 10:19
Show Gist options
  • Select an option

  • Save jazzedge/08bd00b2332d5171191068a380750cce to your computer and use it in GitHub Desktop.

Select an option

Save jazzedge/08bd00b2332d5171191068a380750cce to your computer and use it in GitHub Desktop.
Bot Load local images
byte[] imagedata = {image}
var image64 = "data:image/jpeg;base64," + Convert.ToBase64String(imagedata);
reply.Attachments.Add(new Attachment()
{
ContentUrl = image64,
ContentType = "image/jpeg",
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment