我有image1.png和image2.png
当我的应用程序启动时会显示image1.png,应用程序运行后我需要隐藏 image1.png和show image2.png在图像上使用了图像2.png的fadein image1.png
我该怎么做?我正在使用python和pygtk我也可以导入PIL模块 是必要的
答案 0 :(得分:4)
这是一个快速而肮脏的pygtk应用程序,我刚刚为淡入效果做了。它改编自C code:
import gtk
import gobject
import cairo
import sys
class PyApp(gtk.Window):
def __init__(self):
super(PyApp, self).__init__()
self.set_title("Fade In")
self.resize(300, 350)
self.set_position(gtk.WIN_POS_CENTER)
## alpha is starting transparency
self.alpha = 0
## delta is amount to increase alpha
self.delta = 0.01
self.connect("destroy", gtk.main_quit)
self.darea = gtk.DrawingArea()
self.darea.connect("expose-event", self.expose)
self.add(self.darea)
try:
self.surface = cairo.ImageSurface.create_from_png("/usr/share/icons/gnome/256x256/emotes/face-angel.png")
except Exception, e:
print e.message
sys.exit(1)
self.show_all()
def fadeImage(self):
self.darea.queue_draw()
def expose(self, widget, event):
cr = widget.window.cairo_create()
cr.set_source_surface(self.surface, 10, 10)
cr.paint_with_alpha(self.alpha)
self.alpha += self.delta
if self.alpha >= 1: return False
else: gobject.timeout_add(50,self.fadeImage)
PyApp()
gtk.main()
答案 1 :(得分:1)
听起来像GTK不是这项工作的最佳工具。我建议使用Clutter。