I have a drawing area, and an \'png\' image I want to load that image to my drawing area as background.
the screen is bigger then my image and the problem is it does not
i found the answer i put the code here for others
area=gtk.Drawingarea() pixbuf=gtk.gdk.pixbuf_new_from_file('background.png') pixmap, mask=pixbuf.render_pixmap_and_mask() area.window.set_back_pixmap(pixmap, False)