在 PyGTK 中,显示 PNG 文件的简单方法是什么?
以下 PyGTK 代码在窗口中显示 PNG 文件。
是否有更简单或更好的方式来显示 PNG 文件,例如使用 gtk.DrawingArea?例如,如何调整文件大小?
import gtk
import pygtk
pygtk.require('2.0')
class Gui:
def __init__(self):
# Create an Image object for a PNG file.
file_name = "file.png"
pixbuf = gtk.gdk.pixbuf_new_from_file(file_name)
pixmap, mask = pixbuf.render_pixmap_and_mask()
image = gtk.Image()
image.set_from_pixmap(pixmap, mask)
# Create a window.
window = gtk.Window()
window.set_title("PNG file")
window.connect("destroy", gtk.main_quit)
# Show the PNG file in the window.
window.add(image)
window.show_all()
if __name__ == "__main__":
Gui()
gtk.main()
致谢:我使用网络上其他人的代码创建了上述代码。
The following PyGTK code displays a PNG file in a window.
Is there a simpler or better way of displaying the PNG file, like, by using a gtk.DrawingArea? For example, how do you resize the file?
import gtk
import pygtk
pygtk.require('2.0')
class Gui:
def __init__(self):
# Create an Image object for a PNG file.
file_name = "file.png"
pixbuf = gtk.gdk.pixbuf_new_from_file(file_name)
pixmap, mask = pixbuf.render_pixmap_and_mask()
image = gtk.Image()
image.set_from_pixmap(pixmap, mask)
# Create a window.
window = gtk.Window()
window.set_title("PNG file")
window.connect("destroy", gtk.main_quit)
# Show the PNG file in the window.
window.add(image)
window.show_all()
if __name__ == "__main__":
Gui()
gtk.main()
Acknowledgments: I created the above code using code from other people on the web.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该直接调用 image.set_from_file< /a> 而不是创建 pixbuf 和 pixmap。至于处理调整大小,我直接使用 gtk.DrawingArea 完成了一次,使用
configure
信号获取绘图区域的高度和宽度,以及expose-event
在整个表面上涂上 cairo 的活动。但也可能有一种使用 gtk.Image 的方法。You should call directly image.set_from_file instead of creating a pixbuf and a pixmap. As to handle resizing, I did it once by using directly a gtk.DrawingArea, using the
configure
signal to get the height and width of the drawing area, and theexpose-event
event to paint it with cairo on the whole surface. But there may be a way of using agtk.Image
too.