I have a file stream of an image in Python:

\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x04\x87...

How do I convert this to a data URI?

'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAU...'
link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Encode it in base64, then remove the newlines.

>>> '\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x04\x87...'.encode('base64').replace('\n', '')
'iVBORw0KGgoAAAANSUhEUgAABI....'
link|improve this answer
I didn't know you could encode that way, I always thought you needed the base64 module – Jakob Bowyer Jun 13 '11 at 8:20
Python has quite a few non-text encodings. – Ignacio Vazquez-Abrams Jun 13 '11 at 8:23
ha rot13 ^^ I thought you needed separate imports rather than just calling it through the encode method. – Jakob Bowyer Jun 13 '11 at 8:36
Thanks! Is there any way to find the mimetype from the encoded image, or do I need to capture that from the stream? – Wraith Jun 13 '11 at 23:40
1  
Once you've decoded the data you can pass it to magic to detect the MIME type. – Ignacio Vazquez-Abrams Jun 13 '11 at 23:49
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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