how to get the picture's resolution, file's size quickly without open the file?
i now use
QPixmap xxx(filePath);
int w = xxx.width();
int h = xxx.height();
...........
.........
as for file size, i use
QImage xxx(filePath);
int size = xxx.byteCount();
..........
..........