I want to show an image from mysql db on my pyqt4 application. I researched some pages about this topic. But I can not get that. I want to show the image on qlabel.
I have gui file and a callpage.py
From callpage.py I want to show like this:
self.ui.labelPicture.setPixmap(QtGui.QPixmap(img))
How to display a picture from mysql database using python?
How to insert / retrieve a file stored as a BLOB in a MySQL db using python