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.

I want to base-64 encode a PNG file, to include it in a data:url in my stylesheet. How can I do that?

I’m on a Mac, so something on the Unix command line would work great. A Python-based solution would also be grand.

share|improve this question

1 Answer

up vote 8 down vote accepted

This should do it in Python:

import urllib
encoded = urllib.quote(open("filename.png", "rb").read().encode("base64"))
share|improve this answer
That looks good. When I try to use the results in my CSS file, Firefox is currently telling me that the image is corrupt or truncated, but I may be doing something wrong somewhere. – Paul D. Waite Jun 16 '11 at 17:32
@Paul D. Waite: What does the Base64 output look like, and how do you use it in your CSS? – BoltClock Jun 16 '11 at 18:09
@BoltClock: the output I got was iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAP0lEQVQY02P4/fv3f1z4ypUrcDYD\ni‌​IOMkQEyH6tCdDEQZkDWRZKJ6CajKEQ3BV0Mr4noGhiw6SbJjVhNJEYhAKztct58fLlaAAAAAElF\nTkSu‌​QmCC\n. In my CSS file, it looks like background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAP0lEQV‌​QY02P4/fv3f1z4ypUrcDYD\niIOMkQEyH6tCdDEQZkDWRZKJ6CajKEQ3BV0Mr4noGhiw6SbJjVhNJEYhA‌​Kztct58fLlaAAAAAElF\nTkSuQmCC\n);. – Paul D. Waite Jun 16 '11 at 18:43
2  
@PaulD.Waite: Those \ns definitely look out of place in there. – Jon Jun 16 '11 at 19:23
@Jon: aha! Right: those are newline characters that Python's printing. Turns out I needed to url-encode them so they'd work in the CSS file. I'll amend the answer accordingly. – Paul D. Waite Jun 17 '11 at 9:23
show 2 more comments

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.