A memory stream is a kind of stream that has several methods to access and store data in memory.

learn more… | top users | synonyms

0
votes
1answer
16 views

how do i refere my textbox of type file from view to controller

Im trying to upload an image to the database but i im getting an error with object refernece not set to an instance of an object. i have a textbox in the view and im using memorystream in the ...
0
votes
0answers
20 views

How to connect input type file to memorystream so i can upload it to the database

Im trying to upload a file to the sql server database, but the problem is that var filebyte is null even if i have chosen an image. so my question is how can i connect the input type="file" or ...
2
votes
2answers
44 views

Creating BitmapImage from a byte array

I am trying to create a BitmapImage from a byte array which is returned by a service. My code is: using (sc = new ServiceClient()) { using (MemoryStream ms = new MemoryStream(sc.GetImage())) ...
0
votes
0answers
24 views

Combining memory stream and convert to file in C#

I have a multipage TIFF file, and each page of this will be extracted in to memorystream passed to another method as a collection of stream. At the receiving end is it possible to combine these ...
1
vote
5answers
114 views

How to download memorystream to a file?

I'm using the below sample code for writing and downloading a memory stream to a file in C#. MemoryStream memoryStream = new MemoryStream(); TextWriter textWriter = new StreamWriter(memoryStream); ...
0
votes
1answer
65 views

how to save MemoryStream to JPEG in Windows 8 c#

I see solution for this problem: Saving as jpeg from memorystream in c# but it does not work in winRT. Is there a simple way to save MemoryStream as JPEG using FileSavePicker? I tried: private ...
3
votes
2answers
209 views

Delphi - MemoryStream or FileStream

I am downloading an EXE file from internet using Indy (idHTTP), and I can use memorystream or filestream to save it to disk, but I really do not know if there is any difference between them (maybe in ...
0
votes
1answer
61 views

C# How do I export a MemoryStream's content to the console and write the stream's content onto the console?

The title says pretty much all. I am making a logging system using the "Debug" class (Debug.WriteLine, etc.), and I've attached a TextWriterTraceListener to it so it can log all the strings that has ...
0
votes
1answer
61 views

write audio to memorystream from file

I'm trying to send this file to the outputstream but cannot figure out why it spits out basically an empty mp3 file. As you can see I would get an exception closing the stream prematurely so I have ...
0
votes
1answer
84 views

Open document with word, without path

I'm searching how to open a document with word, without its path. I get my document like this : byte[] text = item.Doc; The document comes directly from database. I only found way to open with a ...
-1
votes
0answers
57 views

reading partial information from a MemoryStream

I have a C# function that reads only part of the data from a MemoryStream (actually this is data provided from NetworkStream but I don't think its too relevant...) Now - what I want to do is read ...
0
votes
0answers
47 views

Chrome reading wav file as html from MemoryStream

I'm trying to create an embed that a user can click to play the captcha on the page. I have to use the solution I have so I can't use recaptcha etc.. I load an aspx file into the embed but chrome ...
1
vote
2answers
50 views

Can't create MemoryStream

Is there any reason why this code shouldn't produce a memory stream with the word Slappy in it? private MemoryStream StringBuilderToMemoryStream(StringBuilder source) { MemoryStream ...
0
votes
0answers
39 views

playing MemoryStream with Windows mediaplayer “src='MemoryStream”

I have a wav file in MemoryStream. This file was held in a SQL DB as a Byte[] and converted to MemoryStream like MemoryStream ms = new MemoryStream(audo.aFile); I have a embed ...
0
votes
1answer
51 views

Lots of unexpected “nul” caracters at the end of an xml with MemoryStream

I wrote an action for a user to downoad a generated xml generated whithout having to write it on the server disk, but keep it into memory. Here is my code : public FileContentResult MyAction() { ...
2
votes
3answers
86 views

MemoryStream CopyTo only partially writing

I'm about to lose my freaking mind. I've been trying to get GzipStream to compress a string for the past hour, but for whatever reason, it refuses to write the entire byte array to the memory stream. ...
0
votes
1answer
43 views

Retrieving msi package from azure blob storage using memory stream results in invalid file

I have a method that returns an msi package using a filestream. public FileStream DownloadMsiFileStream() { FileStream fs = new FileStream(@"C:\temp\test.msi", FileMode.Create, ...
-1
votes
1answer
33 views

Deserialize from MemoryStream issue

I need help to figure out how to deserialize from MemoryStream. var xmlStream = new MemoryStream(); e.Extract(xmlStream); if (xmlStream != null) { TextReader tr = new StreamReader(xmlStream); ...
0
votes
1answer
44 views

MemoryStream download fails from IIS6 to IIS7

We are converting from IIS6 to IIS7 and all has went very well except our download section. What happens is the download is initiated, but it appears a redirect is taking place and our default.aspx ...
2
votes
1answer
220 views

Delphi: Easiest way to search for string in memorystream

What's the easiest way to search for a string within a memory stream (and multiple strings) and return true or false?
0
votes
2answers
78 views

Cropping Centre of Image Stored In A MemoryStream

I have an image upload form that stores two sizes of images: Large and Thumbnail image. For the thumbnail image, I am trying to crop image from the center and re-size to: 30px x 30px. Here is my ...
0
votes
1answer
278 views

vb.net image save to memory stream results in an ArgumentNullException

In VB.NET I have the following function that allows me to calculate a hash for an image I have not yet saved to a file : Public Function pictureHash(ByVal image As System.Drawing.Image) As String ...
-2
votes
3answers
203 views

How to merge two memory streams?

I have two MemoryStream instances. How to merge them into one instance? Well, now I can't copy from one MemoryStream to another. Here is a method: public static Stream ...
0
votes
1answer
239 views

How to save a Text/document file to specific folder using MemoryStream in asp.net using c#?

I have a file path from Sharepoint Document Library. The FileStrem contains the stream bytes of file from server. Now i want to Save file from these bytes using MemoryStream to specific folder using ...
0
votes
1answer
129 views

Writing CSV to MemoryStream using LinqToCSV does not return any data

I've verified using System.Text.Encoding.ASCII.GetString(ms.ToArray)); that my memorystream has the expected data. However using the LinqToCSV nuget library will not generate my csv file. I get no ...
2
votes
3answers
161 views

How to serialize a complex structure to send via tcp/ip?

I have following struct [Serializable()] public struct Transfer_packet { public int _packet_type; // 0 is action 1 is data public int _packet_len; // length of data public byte[] ...
1
vote
1answer
147 views

Binary stream '0' does not contain a valid BinaryHeader

I have server and client application and they are communicating over NetworkStream. On server I binary serialize an object and send it over NetworkStream, it is read on client and deserialized. But it ...
0
votes
0answers
171 views

Trouble writing writeable bitmap into png C#

public class Filing { public void SaveFile(WriteableBitmap image) { byte[] data = new byte[image.BackBufferStride * image.PixelHeight]; image.CopyPixels(data, ...
0
votes
2answers
165 views

Any way of converting datareader/dataset/lists to XLS formatted string and load to memory stream?

I need to get data from the database and send it to the FTP server in XLS format. I have done the same for XML using memory stream. But, I am not sure how to format and load XLS to memory stream. Any ...
0
votes
1answer
195 views

PdfStamper changes size of MemoryStream

Have a PDF on disk that is 498kb. I'm reading this into a MemoryStream which reports the size as 508978 when viewed in the debugger. Then using a reader and stamper, the output MemoryStream has a ...
1
vote
1answer
164 views

Converting byte[] to an object

I'm trying to convert an object which I have in a byte[] to an object. I've tried using this code I found online: object byteArrayToObject(byte[] bytes) { try { ...
0
votes
1answer
158 views

PdfReader from MemoryStream()

Can anyone give me an example of how to get a PdfReader from a MemoryStream? I can see that the PdfReader class has a couple of methods which look likely candidates(GetStreamBytes & ...
1
vote
1answer
574 views

StreamReader from MemoryStream UTF8 Encoding

I want to open a XML file (from an zip archive) in a MemoryStream and create a StreamReader form this stream to put it into a GridView. I use this code : MemoryStream ms = new MemoryStream(); ...
0
votes
1answer
64 views

OutOfMemoryException with MemoryStream()

I have a problem of OutOfMemoryException in this piece of C# code. private void SaveZip(IDataReader reader, string header, string fileName, Ionic.Zip.ZipFile zip) { using (var stream = ...
2
votes
1answer
200 views

Writing strings to TMemoryStream

I have read alot of discussions on here regarding writing strings to a TMemoryStream and saving to file and reading the strings back in to TMemoryStream I dont know what I have done wrong here, but ...
0
votes
1answer
242 views

Access File in memory stream ? c#

I'm using this code to save a file to memory stream using System.Drawing.Imaging; Dictionary<string,MemoryStream> dict = new Dictionary<string,MemoryStream>(); ...
1
vote
2answers
302 views

Get length of Streamreader

How can I get the length of a StreamReader, as I know nothing will be written to it anymore. I thought that maybe I could pass all the data to a MemoryStream, which has a method called Length, but I ...
0
votes
1answer
203 views

Lower image quality after converting from bytes

to give a background on what this topic is about. I am trying to convert an image file to byte[] by using a memorystream to return the memorystream.ToArray(); However, i have noticed that the image ...
1
vote
1answer
123 views

Convert memorystream to double-array?

I've got a pcm-stream of raw music data from a wave-file and would like to convert it to a double-array (to apply a fft afterwards). The result I got now contains very high or low double-numbers ...
1
vote
1answer
762 views

open byte array from memory stream in new tab or window

This seems to be a common problem but after a lengthy search I have yet to find a solution that fits my needs. I am using itextsharp to fill out a pdf form from which i create a byte array. (There ...
3
votes
1answer
186 views

Read multiple consecutive XML files in C#'s XmlReader [duplicate]

Possible Duplicate: Is there a built-in way to handle multiple files as one stream? I have an extremely large amount of consecutive data split into multiple files. Using XmlDocument or LINQ ...
8
votes
2answers
234 views

Why do I get the an out of memory error when I use using?

I have the following method, to convert a BitmapImage to a System.Drawing.Bitmap: public static Bitmap BitmapImageToBitmap(BitmapImage bitmapImage) { Bitmap bitmap; using (var ms = new ...
3
votes
2answers
275 views

Converting TMemoryStream to variant

How do I convert contents of a TMemoryStream to a variant? I use Delphi 2010. TMemoryStream stores contents of a file, it can be PDF or JPG (scanned document). File is being kept inside MS SQL base. ...
2
votes
3answers
154 views

Is it possible to derive(fake) a location path to an in-memory MemoryStream file?

Is it possible to derive a location path of an in-memory file? My justification for doing this is based on having a collection of images that are retrieved by my WinForms application in a Base64 ...
0
votes
1answer
322 views

How to create Source for WPF Media Element from byte array using c#?

I have converted a video to bytes array and stored it in MsSql Database. Now I fetch it from database and I get the byte array. I want to set this byte array as Source of media element and then show ...
2
votes
2answers
141 views

IIS memory usage won't go back to normal after generating large document

In my ASP.NET MVC application I am using the NPOI framework to generate a rather large excel file (30-100mb) http://npoi.codeplex.com/ After generating the document, i save it to a memorystream, and ...
1
vote
0answers
497 views

c# dotnetzip memorystream with zip file

What I am trying to do in the code below is to open up a zip file from a memoryStream which has files within it that are created from memoryStream as well. Note that I am using c# MVC as I have a ...
4
votes
2answers
365 views

How can I clone MemoryStream object?

I have a MemoryStream object which is passed by Stream type parameter (Stream is abstract class in C#). I want to clone him and to create another MemoryStream object a side with current position of ...
0
votes
1answer
104 views

How do stream a file from WCF that didn't originate from a filesystem. (sharepoint content database)

I'm trying to return a stream in WCF 3.5 using a REST-Style URL instead of SOAP. The idea is to read a file from SharePoint 2010, then pass it back to the client. (We have reasons for doing it this ...
0
votes
1answer
139 views

Merge two pdf memorystreams from PDFStampers into one memorystream w/ 2 pages

This is my first experience with ITextSharp, and so far has been quite successful, except for one task.I have created two VB.Net classes, each which successfully returns a valid memorystream ...

1 2 3 4 5 7