我有一个Web服务,它接受canvas标记的内容并将其保存到MongoDB GridFS存储中。
下面的代码有效,但是在将图像发送到MongoDB之前需要将图像保存到磁盘。
Using postBody As Stream = Request.InputStream
' Get the body of the HTTP POST (the data:image/png)
postBody.Seek(0, SeekOrigin.Begin)
Dim imageData As String = New StreamReader(postBody).ReadToEnd
Dim base64Data = Regex.Match(imageData, "data:image/(?<type>.+?),(?<data>.+)").Groups("data").Value
Dim data As Byte() = Convert.FromBase64String(base64Data)
Using stream = New MemoryStream(data, 0, data.Length)
Dim img As System.Drawing.Image = System.Drawing.Image.FromStream(stream)
Dim directory = Server.MapPath("~/App_Data/temp/")
Dim file = String.Concat(directory, id, ".png")
img.Save(file, System.Drawing.Imaging.ImageFormat.Png)
Using fs = New FileStream(file, FileMode.Open)
db.GridFS.Upload(fs, id & ".png")
End Using
End Using
End Using
是否有更好的方法,可能无需在上传到MongoDB之前将其保留到磁盘上?
答案 0 :(得分:0)
正如评论中所建议的那样,只需使用 Stream 作为Upload的参数,而不是写出文件。
还要注意,不必转换为base64,以便通过GridFS(或简单的mongo字段)发送文件。输入可以是二进制,除非您总是希望您的数据base64编码以方便使用。