FLAC picture tag structure.
typedef struct {
DWORD apic;
char *mime;
char *desc;
DWORD width;
DWORD height;
DWORD depth;
DWORD colors;
DWORD length;
void *data;
} TAG_FLAC_PICTURE;
| apic | The picture type, according to the ID3v2 "APIC" frame specification: see id3.org/id3v2.3.0 for details. |
| mime | The MIME type. This may be "-->" to signify that data contains a URL of the picture rather than the picture data itself. |
| desc | A description of the picture, in UTF-8 form. |
| width | The width in pixels. |
| height | The height in pixels. |
| depth | The colour depth in bits-per-pixel. |
| colors | The number of colours used for indexed-colour pictures (eg. GIF). |
| length | The size of data in bytes. |
| data | The picture data. |