我正在努力将二进制数据放入gtk.gdk.pixbuf
.
这应该说明我的问题:
file = open("image.jpg", "rb")
//Ultimately this is going to come from a BLOB
binary = f.read()
//I created a pixbuf directly from the jpg
//and took the rowstride values &c. from that
pixbuf = gtk.gdk.pixbuf_new_from_data(
binary, gtk.gdk.COLORSPACE_RGB, False, 8 , 450, 640, 1352)
这失败了:
ValueError: data length (90825) is less then required by the other parameters (865280)
我目前的解决方法是将二进制数据写入文件,然后Pixbuf
从该文件创建一个。那感觉太hacky了。我正在从数据库中读取二进制数据,所以我真的需要一个可以直接从缓冲区创建 pixbuf 的解决方案。
我不明白为什么我只是BLOB
从数据库中读取并将其写入文件会很容易 - 然后将文件作为 pixbuf 加载,但更难直接从缓冲区中获取!
我究竟做错了什么?