本文整理汇总了Python中gi.repository.GdkPixbuf.Pixbuf.new_from_stream_async方法的典型用法代码示例。如果您正苦于以下问题:Python Pixbuf.new_from_stream_async方法的具体用法?Python Pixbuf.new_from_stream_async怎么用?Python Pixbuf.new_from_stream_async使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gi.repository.GdkPixbuf.Pixbuf
的用法示例。
在下文中一共展示了Pixbuf.new_from_stream_async方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from gi.repository.GdkPixbuf import Pixbuf [as 别名]
# 或者: from gi.repository.GdkPixbuf.Pixbuf import new_from_stream_async [as 别名]
def __init__(self, image_path, image_size=None, markup=None):
Gtk.Box.__init__(self, orientation=Gtk.Orientation.VERTICAL, spacing=5)
self.image_file = Gio.File.new_for_path(image_path)
self.image_widget = Gtk.Image()
self.image_label = Gtk.Label(label=self.image_file.get_basename(), justify=Gtk.Justification.CENTER)
if markup is not None:
self.set_markup(markup)
self.set_center_widget(self.image_widget)
self.pack_end(self.image_label, True, True, 0)
if image_size is not None:
self.set_size_request(image_size, image_size)
Pixbuf.new_from_stream_at_scale_async(self.image_file.read(), image_size, image_size, True, None, self._set_image_callback)
else:
Pixbuf.new_from_stream_async(self.image_file.read(), None, self._set_image_callback)