hi everyone...
i m just a beginner in qt...i wanted to load multiple images from a folder and display the images in a filmstrip view....
can u please help me in this regard..
i m using Qt4.7 version on windows platform...
hi everyone...
i m just a beginner in qt...i wanted to load multiple images from a folder and display the images in a filmstrip view....
can u please help me in this regard..
i m using Qt4.7 version on windows platform...
Have a look at QPixmap: http://developer.qt.nokia.com/doc/qt-4.7/qpixmap.html
You can create thumbnails using QPixmap::scaled(), and then display your images in QLabel: http://developer.qt.nokia.com/doc/qt-4.7/qlabel.html
For a horizontal filmstrip, you can use a QHBoxLayout to arrange your many QLabels: http://developer.qt.nokia.com/doc/qt...boxlayout.html
Bookmarks