Le Tuesday 24 March 2009 01:18:54 Saúl Ibarra, vous avez écrit :
> Hi all,
>
> I'm sure this question has been answered many times, but I'm not able
> to achieve what I want :-/ I just want a splashscreen with a single
> png with transparent background.
>
> I'm using the following code:
>
pic = QtGui.QPixmap(":splash/images/splash.png")
splash = QSplashScreen(pic, Qt.WindowStaysOnTopHint)
splash.setMask(pic.mask())
splash.show()should work fine (it does on Linux and win32, never tested on others). > > I know the issue has to do with the alpha channel, but can't get it > working... > > > Thanks in advance! -- David Douard LOGILAB, Paris (France), +33 1 45 32 03 12 Formations Python, Zope, Debian : http://www.logilab.fr/formations Développement logiciel sur mesure : http://www.logilab.fr/services Informatique scientifique : http://www.logilab.fr/science _______________________________________________ PyQt mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/pyqt
