Search code examples
imageascii85

How to display an ascii85 encoded picture


I try to display an ascii85 encoded image, like:

<img src='data:image/jpg;base85,...'/>

or

<img src='data:image/jpg;ascii85,...' />

I found several examples on base64 files, but nothing about ascii85...

What do you think?

Thanks


Solution

  • You can't do it because, as far as I know, only PostScript and PDF are able to handle ascii85 (base85). Browsers are only handling base64 for now.

    If you already have data in this encoding you will need convert it to base64 before putting it into the browser.