Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
How do i display an image using QImageReader?
-
Guys ,how do I display an image using QImageReader
-
Hi! You can use a QLabel to display images:
QImageReader reader("/path/to/file.png"); ui->label->setPixmap(QPixmap::fromImageReader(&reader));