Hi,
I'm developing an Qt4 (ATM 4.4) app that will be started from a CD on Windows Hosts. It contains an image viewer and some other stuff.
Now, i use a QLabel to display the image via QPixmap (exactly like in the examples). A SQLite3-DB is attached storing some information to the images.
Is a QLabel already the best way for displaying images? I saw the use of QGraphicsScene and QGraphicsView in an other post in this forum.

ATM, the images are JPG-files laying in an directory (using subfolders as albums). Do I have to take care of anything if i want to store the images completly in the DB? Images are in an binary format, SQLite only offers text and some numerical types, so do i have to use base64-algorythms for that?
C167