通过表单上传图片上传

我试图通过multipart/form-data文章上传图片,并使用下面的代码。 我只会上传.jpg图片。

问题是保存的图像不是有效的图像,无法查看。 它比我上传的文件大200字节,所以我假设我在这里错过了一些东西?

public class FileUploadController : ApiController
{
    public Task<HttpResponseMessage> PostUploadFile()
    {
        return UploadFileAsync().ContinueWith<HttpResponseMessage>((tsk) =>
            {
                HttpResponseMessage response = null;

                if (tsk.IsCompleted)
                {
                    response = new HttpResponseMessage(HttpStatusCode.Created);
                }
                else if (tsk.IsFaulted || tsk.IsCanceled)
                {
                   response = 
                   new HttpResponseMessage(HttpStatusCode.InternalServerError);
                }

                return response;
            });
    }

    public Task UploadFileAsync()
    {
        return this.Request.Content.ReadAsStreamAsync().ContinueWith((tsk) => 
        { SaveToFile(tsk.Result); },
        TaskContinuationOptions.OnlyOnRanToCompletion);
    }

    private void SaveToFile(Stream requestStream)
    {
        string path =
        System.IO.Path.Combine(System.AppDomain.CurrentDomain.BaseDirectory);
        using (FileStream targetStream = 
        File.Create(path + "/Uploads/" + DateTime.Now.ToFileTime() + ".jpg"))
        {
            using (requestStream)
            {
                requestStream.CopyTo(targetStream);
            }
        }
    }
}

这是我用来发布图片的简单表单。

<form action="/api/postuploadfile" enctype="multipart/form-data" method="post">
    Upload Image:
    <input type="file" id="imagename" name="imagename" />
    <input type="submit" />
</form> 

关于图像的信息,之前/之后:
如果我检查已上传图像的属性,则磁盘上大小与原始图像相同,但Size属性大于200-205个字节。 无论我上传的图片有多大,情况总是如此。

这是POST标题的一部分。 我不需要去除边界部分或任何东西?

Source
-----------------------------1944294225892 Content-Disposition: form-data;
name="imagename"; filename="small.jpg" Content-Type: image/jpeg

还有一些标题...

Request Headers From Upload Stream
Content-Length  125661
Content-Type    multipart/form-data; boundary=---------------------------1944294225892

实际上,您需要使用某种多部分解析器来解析requestStream ,如下所述,以剥离标头:

  • 从多部分/表单数据POST中读取文件输入,
  • C#中是否有任何多部分/表单数据解析器 - (NO ASP)
  • 链接地址: http://www.djcxy.com/p/13145.html

    上一篇: Upload image through form post

    下一篇: select files with name contains a character php