TID3 picture. Only in version 2.00 and above.
public struct TID3Picture { public bool PicturePresent; public int PictureType; public string Description; public Bitmap Bitmap; public System.IO.MemoryStream BitStream; }
Parameters |
Description |
PicturePresent |
Indicates if image is present in info tag and Bitmap is valid. If this value is false, Bitmap is not valid. |
PictureType |
Picture type. Search on Goole for informations about id3v2 frames (APIC frame). Valid if PicturePresent is true. |
Description_ |
User description for attached picture. Valid if PicturePresent is true. |
Bitmap |
Bitmap class containing image. Valid if PicturePresent is true. |
BitStream |
Bitstream for Bitmap class. Internal use. Don't use this. |
If there is valid picture attached into ID3v2 or VORBIS COMMENT tag, PicturePresent will be set to true and Bitmap will contain image from ID3 tag.
Copyright (c) 2010. Zoran Cindori - All rights reserved.
Web: http://libzplay.sourceforge.net/ Email: zcindori@inet.hr |