1

我正在尝试使用 GdkPixbuf.Pixbuf.new_from_data() ,如 gtk 2.x 中所示,我正在传递 7 个参数。但它给了我一个错误,我需要传递 9 个参数。

我现在正在为 gtk2.x 工作。所以我想出了我需要传递的另外两个参数。

http://developer.gimp.org/api/2.0/gdk-pixbuf/gdk-pixbuf-creating.html

http://developer.gimp.org/api/2.0/gdk-pixbuf/gdk-pixbuf-refcounting.html#GdkPixbufDestroyNotify

参数之一是 GdkPixbuf.PixbufDestroyNotify 类型。我不知道该怎么做。

我正在 ipython 中尝试帮助(GdkPixbuf.PixbufDestroyNotfiy),但出现错误。

错误:NotImplementedError。

self.img_pixbuf = GdkPixbuf.Pixbuf.new_from_data(self.img.tostring(),
                                                GdkPixbuf.Colorspace.RGB,
                                                False,
                                                self.img.depth,
                                                self.img.width,
                                                self.img.height,
                                                self.img.width*self.img.nChannels)

#Here my self.img is cv2.cv.iplimage object (OpenCV iplimage)

我收到以下错误:

/home/jay/<ipython console> in <module>()

/usr/lib/python2.7/dist-packages/gi/module.pyc in __getattr__(self, name)
    241                 return registry[key]
    242 
--> 243         return getattr(self._introspection_module, name)
    244 
    245     def __dir__ (self):

/usr/lib/python2.7/dist-packages/gi/module.pyc in __getattr__(self, name)
    189             wrapper = info.get_value()
    190         else:
--> 191             raise NotImplementedError(info)
    192 
    193         self.__dict__[name] = wrapper

NotImplementedError: <gi.CallbackInfo object (PixbufDestroyNotify) at 0x0x8df5b6c>

这里可能是什么问题?

4

1 回答 1

1

在 PyGObject 中,您不必处理 DestroyNotify 函数。如果 API 中暴露了一个,那么这是一个错误。您应该将其报告给bugzilla.gnome.org

于 2012-04-23T21:21:41.610 回答