ID3V2AttachedPictureFrame constructor

__init__(self, picture_data)

Initializes a new instance of the ID3V2AttachedPictureFrame class.


def __init__(self, picture_data):
    ...
Parameter Type Description
picture_data bytes The picture data.

__init__(self, picture_type, description, picture_data)

Initializes a new instance of the ID3V2AttachedPictureFrame class.


def __init__(self, picture_type, description, picture_data):
    ...
Parameter Type Description
picture_type groupdocs.metadata.formats.audio.ID3V2AttachedPictureType The type of the picture.
description System.String The description of the picture.
picture_data bytes The picture data.

__init__(self, encoding, mime_type, picture_type, description, picture_data)

Initializes a new instance of the ID3V2AttachedPictureFrame class.


def __init__(self, encoding, mime_type, picture_type, description, picture_data):
    ...
Parameter Type Description
encoding groupdocs.metadata.formats.audio.ID3V2EncodingType The frame encoding.
mime_type System.String The MIME-type of the image.
picture_type groupdocs.metadata.formats.audio.ID3V2AttachedPictureType The type of the picture.
description System.String The description of the picture.
picture_data bytes The picture data.

See Also