Copyright © 2005-2019 MultiMedia Soft

TagsReader.WMA_PictureFrameTypeGet method

Previous pageReturn to chapter overviewNext page

Remarks

 

Obtains the type of picture stored inside a WMA picture frame.

 

For further details about methods related to tags reading refer to the TagsReaderMan class.

For details about the reading of tags see the How to read TAG information in sound files tutorial.

 

 

Syntax

 

[Visual Basic]

Public Function WMA_PictureFrameTypeGet (

nIndex as Int32,

ByRef nPictureType as enumId3v2FrameInfo

) as enumErrorCodes


 

[C#]

public enumErrorCodes WMA_PictureFrameTypeGet (

Int32 nIndex,

ref enumId3v2FrameInfo nPictureType

);


 

[C++]

public: enumErrorCodes WMA_PictureFrameTypeGet (

Int32 nIndex,

enumId3v2FrameInfo __gc *nPictureType

);


 

Parameter

Description

 

 

nIndex

Zero-based index of the picture frame. The total number of picture frames available inside the WMA tag can be obtained through a call to the TagsReader.WMA_PictureFrameCountGet method.

nPictureType

Reference that, on return from the method call, will contain the type of picture stored inside the frame.

Supported values are the following:

Mnemonic Value

Value

Meaning

ID3V2_PICTURE_OTHER

0

Other

ID3V2_PICTURE_ICON_32x32

1

32x32 icon

ID3V2_PICTURE_ICON_OTHER

2

Other icon

ID3V2_PICTURE_COVER_FRONT

3

Front cover

ID3V2_PICTURE_COVER_BACK

4

Back cover

ID3V2_PICTURE_LEAFLET_PAGE

5

Leaflet page

ID3V2_PICTURE_MEDIA

6

Media (e.g. label side of CD)

ID3V2_PICTURE_LEAD_ARTIST_PERFORMER_SOLOIST

7

Lead artist/lead performer/soloist

ID3V2_PICTURE_ARTIST_PERFORMER

8

Artist/performer

ID3V2_PICTURE_CONDUCTOR

9

Conductor

ID3V2_PICTURE_BAND_ORCHESTRA

10

Band/Orchestra

ID3V2_PICTURE_COMPOSER

11

Composer

ID3V2_PICTURE_LYRICIST_TEXT_WRITER

12

Lyricist/text writer

ID3V2_PICTURE_RECORDING_LOCATION

13

Recording Location

ID3V2_PICTURE_DURING_RECORDING

14

During recording

ID3V2_PICTURE_DURING_PERFORMANCE

15

During performance

ID3V2_PICTURE_MOVIE_VIDEO_SCREEN_CAPTURE

16

Movie/video screen capture

ID3V2_PICTURE_BRIGHT_FISH

17

A bright coloured fish

ID3V2_PICTURE_ILLUSTRATION

18

Illustration

ID3V2_PICTURE_BAND_ARTIST_LOGO

19

Band/artist logotype

ID3V2_PICTURE_PUBLISHER_STUDIO_LOGO

20

Publisher/Studio logotype

 

 

Return value

 

Value

Meaning

 

 

Negative value

An error occurred (see the LastError property for further error details)

enumErrorCodes.NOERROR (0)

The method call was successful.