How do i display an image using QImageReader?
Unsolved
C++ Gurus
-
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));