Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an image (.png) and I want this picture to convert to binary. How can I do this?

I am using Webforms ASP.NET C#

share|improve this question
1  
What do you mean 'convert to binary'? Do you mean, for example, black and white? – pavium Sep 3 '09 at 12:14
Could you explain it a little more? An image already is binary. Do you want it decompressed, our do you want to access the pixels? – Henk Holterman Sep 3 '09 at 12:15
I have to write the binary data of the image to the screen using Response.BinaryWrite(); – Martijn Sep 3 '09 at 12:16
png is a binary format is there a different format you are thinking of – AnthonyWJones Sep 3 '09 at 12:16

6 Answers

up vote 6 down vote accepted

Since you have a file use:-

 Response.ContentType = "image/png";
 Response.WriteFile(physicalPathOfPngFile);
share|improve this answer
How to convert it back to image? – Mad coder. Jan 13 '12 at 14:51
byte[] b = File.ReadAllBytes(file);

File.ReadAllBytes Method

Opens a binary file, reads the contents of the file into a byte array, and then closes the file.

share|improve this answer
Unless there is some need to process that array before sending it to the response you may as well let ASP.NET handle it using WriteFile – AnthonyWJones Sep 3 '09 at 12:20

Try this:

Byte[] result 
    = (Byte[])new ImageConverter().ConvertTo(yourImage, typeof(Byte[]));
share|improve this answer

You could do:

    MemoryStream stream = new MemoryStream();
    image.Save(stream, ImageFormat.Png);
    BinaryReader streamreader = new BinaryReader(stream);

    byte[] data = streamreader.ReadBytes(stream.Length);

data would then contain the contents of the image.

share|improve this answer
What datatype does image have? I am using Webforms... – Martijn Sep 3 '09 at 12:28
System.Drawing.Image – Kazar Sep 3 '09 at 12:29

First, convert the image into a byte array using ImageConverter class. Then specify the mime type of your png image, and voila!

Here's an example:

TypeConverter tc = TypeDescriptor.GetConverter(typeof(Byte[]));
Response.ContentType = "image/png";
Response.BinaryWrite((Byte[])tc.ConvertTo(img,tc));
share|improve this answer
System.Drawing.Image image = System.Drawing.Image.FromFile("filename");
byte[] buffer;
MemoryStream stream = new MemoryStream();
image.Save(stream, System.Drawing.Imaging.ImageFormat.Jpeg);

buffer = stream.ToArray(); // converted to byte array
stream = new MemoryStream();
stream.Read(buffer, 0, buffer.Length);

System.Drawing.Image img = System.Drawing.Image.FromStream(stream);
share|improve this answer
Before System.Drawing.Image img = System.Drawing.Image.FromStream(stream); stream should be seeked to beginning stream.Seek(0, SeekOrigin.Begin); – Amar Palsapure Jan 31 '12 at 15:22
yes, true story... – omid.n Feb 6 '12 at 6:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.