gpt4 book ai didi

c# - 链接资源中的图像 url

转载 作者:行者123 更新时间:2023-12-02 18:20:15 25 4
gpt4 key购买 nike

我想在 c# 邮件中嵌入来自 url 的图像,我尝试使用此代码,但它不起作用

 LinkedResource logoHeader = null;
AlternateView av1 = AlternateView.CreateAlternateViewFromString(strBody, null, MediaTypeNames.Text.Html);
logoHeader= new LinkedResource("some xyz.com");
logoHeader.ContentId = "logoimage";
av1.LinkedResources.Add(logo);

最佳答案

string image = "example.com/image.jpg";
var webClient = new WebClient();
byte[] imageBytes = webClient.DownloadData(image);
MemoryStream ms = new MemoryStream(imageBytes);
LinkedResource resource = new LinkedResource(ms, MediaTypeNames.Image.Jpeg);

关于c# - 链接资源中的图像 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19002685/

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