Created
July 12, 2017 10:19
-
-
Save jazzedge/08bd00b2332d5171191068a380750cce to your computer and use it in GitHub Desktop.
Bot Load local images
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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