Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to convert pdf to byte[] and vice versa?

share|improve this question
1  
Please elaborate on what you're trying to do. are you trying to read/write a PDF file with a byte array? – Jimmy Mar 16 '10 at 3:07

2 Answers

up vote 33 down vote accepted
byte[] bytes = System.IO.File.ReadAllBytes("myfile.pdf");

System.IO.File.WriteAllBytes("myfile.pdf", bytes);
share|improve this answer
its not working. it returns {byte[0]} – xscape Mar 16 '10 at 3:08
What's the size of your pdf file? – PsychoDad Mar 16 '10 at 3:09
1  
Jeff, thank you. Its working. – xscape Mar 16 '10 at 3:15

Easiest way:

byte[] buffer;
using (Stream stream = new IO.FileStream("file.pdf"))
{
   buffer = new byte[stream.Length - 1];
   stream.Read(buffer, 0, buffer.Length);
}

using (Stream stream = new IO.FileStream("newFile.pdf"))
{
   stream.Write(buffer, 0, buffer.Length);
}

Or something along these lines...

share|improve this answer
You forgot to take care ot the return value of the Read method. You have to loop the reading and read until you actually get all the data. – Guffa Mar 16 '10 at 11:57
@Guffa not quite, if you take a look I've used stream.Length that returns the length of the ENTIRE file stream, hence reading the file as a whole, not only as chunk of data. – Paulo Santos Mar 16 '10 at 19:47
You are missing the point. Even if you request the entire stream from the Read method, it doesn't have to read the entire stream. It will read one byte or more, and return how many bytes were actually read. If you ignore the return value of the Read method, you may only get part of the file. – Guffa Mar 16 '10 at 20:06

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.