On Friday 20 October 2006 00:21, Tara Hernandez wrote:
> Duh.
>
> Qt 4.1.3, 64 bit Fedora Core 2
OK, but did you try something like this?
from PyQt4.QtGui import QApplication, QImageReader
app = QApplication([])
print "Supported:"
for type in QImageReader.supportedImageFormats():
print " ",type
Does this give you the full list?
David