我有一个用户上传的图片中的字节数组。我需要使用 Bot-framework
在 Skype 和其他渠道上将此字节数组渲染为图像答案 0 :(得分:5)
图像可以作为base64编码发送:
byte[] imagedata = {your image}
var image64 = "data:image/jpeg;base64," + Convert.ToBase64String(imagedata);
reply.Attachments.Add(new Attachment()
{
ContentUrl = image64,
ContentType = "image/jpeg",
});