gpt4 book ai didi

python - 转换 PIL GdkPixbuf

转载 作者:太空狗 更新时间:2023-10-30 01:16:51 26 4
gpt4 key购买 nike

如何在 pixbuf 中转换 PIL 图像?。我尝试更改许多示例但没有解决方案

import array
from gi.repository import GdkPixbuf

def image2pixbuf(self,im):
arr = array.array('B', im.tostring())
height, width = im.size
return GdkPixbuf.Pixbuf.new_from_data(arr, GdkPixbuf.Colorspace.RGB,
True, 8, width, height, width * 4)

错误

TypeError: new_from_data () takes Exactly 9 arguments (7 given)

我使用 Pygobject https://live.gnome.org/PyGObject

最佳答案

我在使用 Gtk3 时遇到了同样的问题。 GdkPixbuf.PixbufDestroyNotify - NotImplementedError - python gtk3

好像有bug。我已经举报了。 https://bugzilla.gnome.org/show_bug.cgi?id=674691

Gtk3 有这个错误。但是你仍然可以在 Gtk2 中做到这一点。

关于python - 转换 PIL GdkPixbuf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10341988/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com