Enroute Flight Navigation
A navigation app for VFR pilots
TIFF.h
1/***************************************************************************
2 * Copyright (C) 2023-2024 by Stefan Kebekus *
3 * stefan.kebekus@gmail.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20
21#pragma once
22
23#include <QSize>
24#include <QVariant>
25
26#include "DataFileAbstract.h"
27
28using namespace Qt::Literals::StringLiterals;
29
30
31namespace FileFormats
32{
33
40
41class TIFF : public DataFileAbstract
42{
43public:
51 TIFF(const QString& fileName);
52
61 TIFF(QIODevice& device);
62
63
64
65 //
66 // Getter Methods
67 //
68
73 [[nodiscard]] QMap<quint16, QVariantList> fields() { return m_TIFFFields; }
74
79 [[nodiscard]] QSize rasterSize() { return m_rasterSize; }
80
81
82 //
83 // Static methods
84 //
85
90 [[nodiscard]] static QStringList mimeTypes() { return {u"image/tiff"_s}; }
91
92private:
93 /* This methods reads the TIFF data from the device. On success, it fills
94 * the memeber m_TIFFFields with appropriate data. On failure, it throws a
95 * QString with a human-readable, translated error message.
96 *
97 * @param device QIODevice from which the TIFF header will be read. This
98 * device must be seekable.
99 */
100 void readTIFFData(QIODevice& device);
101
102 /* This methods reads a single TIFF field from the device. On success, it
103 * adds an entry to the member m_TIFFFields and positions the device on the
104 * byte following the structure. On failure, it throws a QString with a
105 * human-readable, translated error message.
106 *
107 * This method only reads values of type ASCII, SHORT and DOUBLE. Values of
108 * other types will be ignored.
109 *
110 * @param device QIODevice from which the TIFF header will be read. This
111 * device must be open, seekable, and positioned to the beginning of the
112 * TIFF field structure.
113 *
114 * @param dataStream QDataStream that is connected to the device and has the
115 * correct endianness set.
116 */
117 void readTIFFField(QIODevice& device, QDataStream& dataStream);
118
119 /* This method interprets m_TIFFFields, extracts the size of the raster
120 * image and writes the result into m_rasterSize.
121 */
122 void readRasterSize();
123
124 // Size of the raster imags
125 QSize m_rasterSize;
126
127 // TIFF tags and associated data
128 QMap<quint16, QVariantList> m_TIFFFields;
129};
130
131} // namespace FileFormats
TIFF(QIODevice &device)
Constructor.
TIFF(const QString &fileName)
Constructor.
QMap< quint16, QVariantList > fields()
TIFF data fields.
Definition TIFF.h:73
static QStringList mimeTypes()
Mime type for files that can be opened by this class.
Definition TIFF.h:90
QSize rasterSize()
Size of the TIFF raster image.
Definition TIFF.h:79