Interface ImageRequestParameters

Interface representing supported request parameters for the getItemImage API. (May also work for other image APIs)

interface ImageRequestParameters {
    addPlayedIndicator?: boolean;
    backgroundColor?: string;
    blur?: number;
    cropWhitespace?: boolean;
    fillHeight?: number;
    fillWidth?: number;
    foregroundLayer?: string;
    format?: ImageFormat;
    height?: number;
    imageIndex?: number;
    maxHeight?: number;
    maxWidth?: number;
    percentPlayed?: number;
    quality?: number;
    tag?: string;
    unplayedCount?: number;
    width?: number;
}

Properties

addPlayedIndicator?: boolean
backgroundColor?: string
blur?: number
cropWhitespace?: boolean
fillHeight?: number
fillWidth?: number
foregroundLayer?: string
format?: ImageFormat
height?: number
imageIndex?: number
maxHeight?: number
maxWidth?: number
percentPlayed?: number
quality?: number
tag?: string
unplayedCount?: number
width?: number