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

How do you encode a png image into base64 using python on Windows?

iconfile = open("icon.png")
icondata = iconfile.read()
icondata = base64.b64encode(icondata)

The above works fine in Linux and OSX, but on Windows it will encode the first few characters then cut short. Why is this?

share|improve this question

2 Answers

up vote 25 down vote accepted

Open the file in binary mode:

open("icon.png", "rb")

I'm not very familiar with Windows, but I'd imagine what's happening is that the file contains a character (0x1A) that Windows is interpreting as the end of the file (for legacy reasons) when it is opened in text mode. The other issue is that opening a file in text mode (without the 'b') on Windows will cause line endings to be rewritten, which will generally break binary files where those characters don't actually indicate the end of a line.

share|improve this answer
+1 because it works. – Brian Mar 10 '09 at 19:31
he is indeed correct, odd how it works fine without it in linux/osx – directedition Mar 10 '09 at 19:44
Linus/OSX treat binary and text files the same, while Windows treats carriage return different in text files than it does in binary files. Also, you should click the checkbox next to his answer to mark it as the correct answer. – Powerlord Mar 10 '09 at 19:48
Just to make this a wee bit clearer, @Miles is saying replace the first file open with: <pre> iconfile = open("icon.png","rb") </pre> then follow with the rest of the commands. The open command by itself (on Windows) doesn't automatically convert to base64. Duh:-) – timlukins Mar 22 '12 at 16:03

To augment the answer from Miles, the first eight bytes in a PNG file are specially designed:

  • 89 - the first byte is a check that bit 8 hasn't been stripped
  • "PNG" - let someone read that it's a PNG format
  • 0d 0a - the DOS end-of-line indicator, to check if there was DOS->unix conversion
  • 1a - the DOS end-of-file character, to check that the file was opened in binary mode
  • 0a - unix end-of-line character, to check if there was a unix->DOS conversion

Your code stops at the 1a, as designed.

share|improve this answer

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.