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.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

This should do it in Python:

import urllib
encoded = urllib.quote(open("filename.png", "rb").read().encode("base64"))
link|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
1  
@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
feedback

Your Answer

 
or
required, but never shown

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