我正在使用具有FromBinary方法的圖像組件。想知道如何將我的輸入流中的字節數組如何從HttpPostedFile創建字節數組
HttpPostedFile file = context.Request.Files[0];
byte[] buffer = new byte[file.ContentLength];
file.InputStream.Read(buffer, 0, file.ContentLength);
ImageElement image = ImageElement.FromBinary(byteArray);
我們如何發佈文件中的另一個.aspx頁面中? – shivi 2015-06-23 01:42:17
不是這行** file.InputStream.Read(buffer,0,file.ContentLength); **用輸入流中的字節填充緩衝區?爲什麼我們應該使用** BinaryReader.ReadBytes(...)**作爲@Wolfwyrd在下面的答案中提到的?不會** ImageElement.FromBinary(緩衝區); **解決問題? – 2017-06-20 06:00:45