我正在使用Webclient尝试将我在winform应用程序上的图像发送到中央服务器。但是我以前从未使用过WebClient,我很确定我所做的是错的。
首先,我在我的表单上存储和显示我的图像,如下所示:
_screenCap = new ScreenCapture();
_screenCap.OnUpdateStatus += _screen_CapOnUpdateStatus;
capturedImage = imjObj;
imagePreview.Image = capturedImage;
我设置了一个事件管理器,以便在我截取屏幕截图时更新我的imagePreview图像。然后在状态发生变化时显示它:
private void _screen_CapOnUpdateStatus(object sender, ProgressEventArgs e)
{
imagePreview.Image = e.CapturedImage;
}
使用此图像我试图将其传递给我的服务器,如下所示:
using (var wc = new WebClient())
{
wc.UploadData("http://filelocation.com/uploadimage.html", "POST", imagePreview.Image);
}
我知道我应该将图像转换为byte [],但我不知道该怎么做。有人可以指出我正确的方向去做正确吗?
答案 0 :(得分:3)
你可以像这样转换为byte []
public byte[] imageToByteArray(System.Drawing.Image imageIn)
{
MemoryStream ms = new MemoryStream();
imageIn.Save(ms,System.Drawing.Imaging.ImageFormat.Gif);
return ms.ToArray();
}
如果你有图像路径,你也可以这样做
byte[] bytes = File.ReadAllBytes("imagepath");
答案 1 :(得分:2)
这可能对你有所帮助......
using(WebClient client = new WebClient())
{
client.UploadFile(address, filePath);
}
摘自this。
答案 2 :(得分:0)
您需要将ContentType
标题设置为image/gif
或binary/octet-stream
的标题,并在图片上调用GetBytes()
。
using (var wc = new WebClient { UseDefaultCredentials = true })
{
wc.Headers.Add(HttpRequestHeader.ContentType, "image/gif");
//wc.Headers.Add("Content-Type", "binary/octet-stream");
wc.UploadData("http://filelocation.com/uploadimage.html",
"POST",
Encoding.UTF8.GetBytes(imagePreview.Image));
}