Convert Octet Stream To Pdf

Sonic heroes pc game. File converter / Documents / Archive / Convert to PDF / ZIP converter / PDF to ZIP Convert PDF to ZIP You can convert PDF file to ZIP as well as to variety of other formats with free online converter.

Pdf

Hi guys I have to catch a form post from flash, and convert the octet stream into an image to save on the server. Any help would be greatly appreciated Below is my code: byte[] imgBytes = new byte[Request.InputStream.Length]; using (BinaryReader br = new BinaryReader(Request.InputStream)) br.Read(imgBytes, 0, imgBytes.Length); MemoryStream memoryStream = new MemoryStream(imgBytes); System.Drawing.Image image = System.Drawing.Image.FromStream(memoryStream); string filename = DateTime.Now.Ticks.ToString() + '.jpg'; image.Save(Server.MapPath('/wallpapers/' + filename), ImageFormat.Jpeg); memoryStream.Close(); Chris image octet-stream conversion.