Interface ImageApiGetArtistImageRequest

Request parameters for getArtistImage operation in ImageApi.

ImageApiGetArtistImageRequest

interface ImageApiGetArtistImageRequest {
    backgroundColor?: string;
    blur?: number;
    fillHeight?: number;
    fillWidth?: number;
    foregroundLayer?: string;
    format?: ImageFormat;
    height?: number;
    imageIndex: number;
    imageType: ImageType;
    maxHeight?: number;
    maxWidth?: number;
    name: string;
    percentPlayed?: number;
    quality?: number;
    tag?: string;
    unplayedCount?: number;
    width?: number;
}

Properties

backgroundColor?: string

Optional. Apply a background color for transparent images.

ImageApiGetArtistImage

blur?: number

Optional. Blur image.

ImageApiGetArtistImage

fillHeight?: number

Height of box to fill.

ImageApiGetArtistImage

fillWidth?: number

Width of box to fill.

ImageApiGetArtistImage

foregroundLayer?: string

Optional. Apply a foreground layer on top of the image.

ImageApiGetArtistImage

format?: ImageFormat

Determines the output format of the image - original,gif,jpg,png.

ImageApiGetArtistImage

height?: number

The fixed image height to return.

ImageApiGetArtistImage

imageIndex: number

Image index.

ImageApiGetArtistImage

imageType: ImageType

Image type.

ImageApiGetArtistImage

maxHeight?: number

The maximum image height to return.

ImageApiGetArtistImage

maxWidth?: number

The maximum image width to return.

ImageApiGetArtistImage

name: string

Artist name.

ImageApiGetArtistImage

percentPlayed?: number

Optional. Percent to render for the percent played overlay.

ImageApiGetArtistImage

quality?: number

Optional. Quality setting, from 0-100. Defaults to 90 and should suffice in most cases.

ImageApiGetArtistImage

tag?: string

Optional. Supply the cache tag from the item object to receive strong caching headers.

ImageApiGetArtistImage

unplayedCount?: number

Optional. Unplayed count overlay to render.

ImageApiGetArtistImage

width?: number

The fixed image width to return.

ImageApiGetArtistImage