Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ファイルpicture.jpgがあり、メモリに読み込んでいます
f = open('picture.jpg', 'rb') pic = f.read() f.close()
pic を gtk.gdk.Pixbuf に変換するにはどうすればよいですか? gdk_pixbuf_new_from_stream() があることは知っていますが、pyGTK にはないようです:/
Pixbufローダーを使用できます:
Pixbuf
loader = gtk.gdk.PixbufLoader('jpeg') loader.write(pic) loader.close() pixbuf = loader.get_pixbuf()