Home
last modified time | relevance | path

Searched refs:TIFFFile (Results 1 – 7 of 7) sorted by relevance

/dports/graphics/gpxsee/GPXSee-7.32/src/data/
H A Dexifparser.h7 class TIFFFile; variable
27 bool readIFD(TIFFFile &file, quint32 offset, const QSet<quint16> &tags,
29 bool readEntry(TIFFFile &file, const QSet<quint16> &tags,
32 double coordinate(TIFFFile &file, const IFDEntry &ll) const;
33 Coordinates coordinates(TIFFFile &file, const IFDEntry &lon,
35 double altitude(TIFFFile &file, const IFDEntry &alt,
37 QTime time(TIFFFile &file, const IFDEntry &ts) const;
38 QString text(TIFFFile &file, const IFDEntry &e) const;
H A Dexifparser.cpp24 QString EXIFParser::text(TIFFFile &file, const IFDEntry &e) const in text()
42 QTime EXIFParser::time(TIFFFile &file, const IFDEntry &ts) const in time()
64 double EXIFParser::altitude(TIFFFile &file, const IFDEntry &alt, in altitude()
83 double EXIFParser::coordinate(TIFFFile &file, const IFDEntry &ll) const in coordinate()
108 Coordinates EXIFParser::coordinates(TIFFFile &file, const IFDEntry &lon, in coordinates()
130 bool EXIFParser::readEntry(TIFFFile &file, const QSet<quint16> &tags, in readEntry()
151 bool EXIFParser::readIFD(TIFFFile &file, quint32 offset, in readIFD()
170 TIFFFile tiff(file); in parseTIFF()
/dports/graphics/gpxsee/GPXSee-7.32/src/map/
H A Dgeotiff.h9 class TIFFFile; variable
41 bool readEntry(TIFFFile &file, Ctx &ctx) const;
42 bool readIFD(TIFFFile &file, quint32 offset, Ctx &ctx) const;
43 bool readScale(TIFFFile &file, quint32 offset, PointD &scale) const;
44 bool readTiepoints(TIFFFile &file, quint32 offset, quint32 count,
46 bool readMatrix(TIFFFile &file, quint32 offset, double matrix[16]) const;
47 bool readKeys(TIFFFile &file, Ctx &ctx, QMap<quint16, Value> &kv) const;
48 bool readGeoValue(TIFFFile &file, quint32 offset, quint16 index,
H A Dgeotiff.cpp79 bool GeoTIFF::readEntry(TIFFFile &file, Ctx &ctx) const in readEntry()
126 bool GeoTIFF::readIFD(TIFFFile &file, quint32 offset, Ctx &ctx) const in readIFD()
142 bool GeoTIFF::readScale(TIFFFile &file, quint32 offset, PointD &scale) const in readScale()
155 bool GeoTIFF::readTiepoints(TIFFFile &file, quint32 offset, quint32 count, in readTiepoints()
185 bool GeoTIFF::readMatrix(TIFFFile &file, quint32 offset, double matrix[16]) const in readMatrix()
197 bool GeoTIFF::readKeys(TIFFFile &file, Ctx &ctx, QMap<quint16, Value> &kv) const in readKeys()
275 bool GeoTIFF::readGeoValue(TIFFFile &file, quint32 offset, quint16 index, in readGeoValue()
484 TIFFFile tiff(&file); in GeoTIFF()
/dports/graphics/gpxsee/GPXSee-7.32/src/common/
H A Dtifffile.cpp7 TIFFFile::TIFFFile(QIODevice *device) : _device(device), _ifd(0), _offset(0) in TIFFFile() function in TIFFFile
H A Dtifffile.h15 class TIFFFile
18 TIFFFile(QIODevice *device);
/dports/audio/py-mutagen/mutagen-1.42.0/tests/
H A Dtest_aiff.py176 class TIFFFile(TestCase): class