Tag Parser  8.2.0
C++ library for reading and writing MP4 (iTunes), ID3, Vorbis, Opus, FLAC and Matroska tags
bitmapinfoheader.h
Go to the documentation of this file.
1 #ifndef TAG_PARSER_BITMAPINFOHEADER_H
2 #define TAG_PARSER_BITMAPINFOHEADER_H
3 
4 #include "../global.h"
5 
6 #include <c++utilities/conversion/types.h>
7 
8 namespace IoUtilities {
9 class BinaryReader;
10 }
11 
12 namespace TagParser {
13 
15 public:
17 
18  void parse(IoUtilities::BinaryReader &reader);
19 
20  uint32 size;
21  uint32 width;
22  uint32 height;
23  uint16 planes;
24  uint16 bitCount;
25  uint32 compression;
26  uint32 imageSize;
29  uint32 clrUsed;
30  uint32 clrImportant;
31 };
32 
33 } // namespace TagParser
34 
35 #endif // TAG_PARSER_BITMAPINFOHEADER_H
Contains utility classes helping to read and write streams.
The BitmapInfoHeader class parses the BITMAPINFOHEADER structure defined by MS.
Contains all classes and functions of the TagInfo library.
Definition: aaccodebook.h:9
#define TAG_PARSER_EXPORT
Marks the symbol to be exported by the tagparser library.