getid3_flac::pictureTypeLookup() –

You appear to be a bot. Output may be restricted

Description

Usage

$string = getid3_flac::pictureTypeLookup( $type_id );

Parameters

$type_id
( int ) required

Returns

string

Source

File name: wordpress/wp-includes/ID3/module.audio.flac.php
Lines:

1 to 26 of 26
  public static function pictureTypeLookup($type_id) {
    static $lookup = array (
       0 => 'Other',
       1 => '32x32 pixels \'file icon\' (PNG only)',
       2 => 'Other file icon',
       3 => 'Cover (front)',
       4 => 'Cover (back)',
       5 => 'Leaflet page',
       6 => 'Media (e.g. label side of CD)',
       7 => 'Lead artist/lead performer/soloist',
       8 => 'Artist/performer',
       9 => 'Conductor',
      10 => 'Band/Orchestra',
      11 => 'Composer',
      12 => 'Lyricist/text writer',
      13 => 'Recording Location',
      14 => 'During recording',
      15 => 'During performance',
      16 => 'Movie/video screen capture',
      17 => 'A bright coloured fish',
      18 => 'Illustration',
      19 => 'Band/artist logotype',
      20 => 'Publisher/Studio logotype',
    );
    return (isset($lookup[$type_id]) ? $lookup[$type_id] : 'reserved');
  }
 

 View on GitHub View on Trac