Interface ImageApiHeadItemImageByIndexRequest

Request parameters for headItemImageByIndex operation in ImageApi.

ImageApiHeadItemImageByIndexRequest

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

Properties

backgroundColor?: string

Optional. Apply a background color for transparent images.

ImageApiHeadItemImageByIndex

blur?: number

Optional. Blur image.

ImageApiHeadItemImageByIndex

fillHeight?: number

Height of box to fill.

ImageApiHeadItemImageByIndex

fillWidth?: number

Width of box to fill.

ImageApiHeadItemImageByIndex

foregroundLayer?: string

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

ImageApiHeadItemImageByIndex

format?: ImageFormat

Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image.

ImageApiHeadItemImageByIndex

height?: number

The fixed image height to return.

ImageApiHeadItemImageByIndex

imageIndex: number

Image index.

ImageApiHeadItemImageByIndex

imageType: ImageType

Image type.

ImageApiHeadItemImageByIndex

itemId: string

Item id.

ImageApiHeadItemImageByIndex

maxHeight?: number

The maximum image height to return.

ImageApiHeadItemImageByIndex

maxWidth?: number

The maximum image width to return.

ImageApiHeadItemImageByIndex

percentPlayed?: number

Optional. Percent to render for the percent played overlay.

ImageApiHeadItemImageByIndex

quality?: number

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

ImageApiHeadItemImageByIndex

tag?: string

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

ImageApiHeadItemImageByIndex

unplayedCount?: number

Optional. Unplayed count overlay to render.

ImageApiHeadItemImageByIndex

width?: number

The fixed image width to return.

ImageApiHeadItemImageByIndex