Sto usando un componente di immagine che ha un metodo FromBinary. Mi chiedo come posso convertire il mio flusso di input in un array di byte
HttpPostedFile file = context.Request.Files[0];
byte[] buffer = new byte[file.ContentLength];
file.InputStream.Read(buffer, 0, file.ContentLength);
ImageElement image = ImageElement.FromBinary(byteArray);