So I am experimenting with using icons in my CSS using base64 encoded pngs. I have used http://www.motobit.com/util/base64-decoder-encoder.asp to convert them. However, the pngs only have an 8bit alpha channel, the pixels are either fully opaque, or fully transparent, no partial transparency. This is leaving my icons with hard edges. Any ideas of a 24bit alpha channel is possible through base64_encode?

link|improve this question

60% accept rate
feedback

1 Answer

up vote 2 down vote accepted

The encoder in that page may be buggy. I made a PNG with alpha channels in Photoshop, encoded it using PHP's base64_encode(), put it in an image, and it works. Take a look at this fiddle for HTML and this fiddle for CSS.

link|improve this answer
I just looked at the code for my fiddles and realized how long the data URIs are for a mere 64x64 icon of a circle with a shadow... – BoltClock Oct 10 '11 at 19:06
1  
Of course that encoder is buggy, it's using Classic ASP. – thirtydot Oct 10 '11 at 19:40
feedback

Your Answer

 
or
required, but never shown

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