在 PyGTK 中,在 GUI 中显示图像的好方法是什么?
我有一个 PyGTK GUI,其中有一个 gtk.Table。
按一个按钮将生成一个 PNG 文件。
我可以通过将 PNG 文件添加到表中的某个位置并再次调用主窗口的 show_all 方法来在 GUI 中显示该文件。
有更好的办法吗?如果我想一次显示多个 PNG 文件怎么办?
I have a PyGTK GUI that has a gtk.Table.
Pressing one button will generate a PNG file.
I can show the PNG file in the GUI by adding it somewhere in the table and calling the main window's show_all method again.
Is there a better way? What if I want to show more than one PNG file at a time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 gtk.Image、gtk.HBox(或 VBox)的组合,如果您打算显示大量图像,也可以使用 gtk.ScrolledWindow。只需创建一个新的 gtk.Image,使用
set_from_file
设置图像,然后在盒子上调用pack_end
即可显示它。You can use a combination of gtk.Image, gtk.HBox (or VBox), and maybe gtk.ScrolledWindow if you plan on showing a lot of images. Just create a new gtk.Image, set the image using
set_from_file
, then callpack_end
on the box to display it.