I have a Gtk.Image object and I want to convert it's data to a base64 encoded string (for use with imgur). How would I achieve that?

link|improve this question

70% accept rate
I am guessing you want a base64 encoded string of a file image format (png, jpeg, gif, etc...) and not a the actual Gtk.Image object, right? – Mark Feb 5 at 15:14
Yeah, I think imgur expects a base64 encoded png, jpeg et cetera – Leon Feb 5 at 15:19
So, what is the source of the data that gets loaded into the Gtk.Image? Does it get loaded from such a file? – Mark Feb 5 at 15:21
I don't exactly know where it comes from. I get it from the api of a clipboard manager (Diodon). – Leon Feb 5 at 15:25
feedback

1 Answer

up vote 1 down vote accepted

Has to run it through a gdk.pixbuf, but this seems the easiest:

import cStringIO
import base64

pixBuf = gtkImage.get_pixbuf()

fH = cStringIO.StringIO() 
pixBuf.save_to_callback(fH.write, "png") 
encodedBuffer = base64.b64encode(fH.getvalue()) #base64 encoded png
link|improve this answer
I believe this is the right answer. But unfortunately these methods seem broken on Ubuntu... – Leon Feb 5 at 16:01
A possible workaround is to get the image data with pixbuf.get_pixels (returns str) or pixbuf.get_pixels_array (returns numpy array), and then go through Cairo or PIL; not sure how, though. – Johannes Sasongko Feb 6 at 0:57
feedback

Your Answer

 
or
required, but never shown

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