Ticket #49797: qttest.py

File qttest.py, 175 bytes (added by j.ellerbroek@…, 8 years ago)

Python test file

Line 
1from PyQt5.QtWidgets import QApplication
2from PyQt5.QtGui import QImageReader
3
4app = QApplication([])
5
6for i in QImageReader.supportedImageFormats():
7    print i
8
9app.exec_()