c# image 加载http
时间: 2023-11-12 20:07:58 浏览: 146
在 C# 中,可以使用 `System.Net.WebClient` 类来从 HTTP URL 加载图像。下面是一个示例代码:
```csharp
using System;
using System.Drawing;
using System.Net;
class Program
{
static void Main(string[] args)
{
WebClient client = new WebClient();
byte[] imageBytes = client.DownloadData("http://example.com/image.jpg");
Image image = Image.FromStream(new MemoryStream(imageBytes));
// 处理图像
}
}
```
在上面的代码中,使用 `WebClient` 类下载图像的字节数据,然后使用 `Image.FromStream` 方法将字节数据转换为 `Image` 对象。之后就可以对图像进行处理了。请记得替换示例代码中的 URL 为你自己的图像 URL。
阅读全文