gpt4 book ai didi

botframework - 使用 botframework 将字节数组显示为图像

转载 作者:行者123 更新时间:2023-12-01 11:24:54 25 4
gpt4 key购买 nike

我有一个来自用户上传图片的字节数组。我需要使用 Bot-framework

Skype 和其他 channel 上将此字节数组呈现为图像

最佳答案

图像可以作为 base64 编码发送:

        byte[] imagedata = {your image}
var image64 = "data:image/jpeg;base64," + Convert.ToBase64String(imagedata);

reply.Attachments.Add(new Attachment()
{
ContentUrl = image64,
ContentType = "image/jpeg",
});

关于botframework - 使用 botframework 将字节数组显示为图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38217811/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com