1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-06-27 03:29:16 +02:00

Rotate JPEG thumbnails acording to EXIF data

fixes #385
This commit is contained in:
2021-08-04 08:57:42 +02:00
parent 6e4cc406ab
commit 933f2c3837
40 changed files with 467 additions and 139 deletions

View File

@ -16,6 +16,11 @@ public:
bool isValid() const {return _size.isValid() && !_path.isEmpty();}
bool operator==(const ImageInfo &other) const
{
return (_path == other._path);
}
private:
QString _path;
QSize _size;