Micrio Client - v7.0.0
    Preparing search index...

    Type Alias ImageInfo

    A Micrio image's main static image data object

    type ImageInfo = {
        albumId?: string;
        created?: number;
        format?: string;
        height: number;
        id: string;
        is360?: boolean;
        isDeepZoom?: boolean;
        isIIIF?: boolean;
        isPng?: boolean;
        isSingle?: boolean;
        isWebP?: boolean;
        lang?: string;
        path: string;
        revision?: RevisionType;
        spacesId?: string;
        tileBasePath?: string;
        tileExtension?: string;
        tilesId?: string;
        tileSize?: number;
        title?: string;
        version: string;
        viewsWH?: boolean;
        watermark?: string;
        width: number;
    }
    Index
    albumId?: string

    The album (V5+) ID

    created?: number

    Created date

    format?: string

    A custom format (dz for DeepZoom, iiif for IIIF)

    height: number

    The original image height

    autoloaded
    
    id: string

    The image id

    is360?: boolean

    The image is 360 degrees

    isDeepZoom?: boolean

    The tiled image is in DeepZoom format

    isIIIF?: boolean

    The image has a IIIF source

    isPng?: boolean

    The image tiles are in PNG format

    isSingle?: boolean

    Use a custom, single source uri for the zoomable image / video

    isWebP?: boolean

    The image tiles are in WebP format

    lang?: string

    The initial data language

    path: string

    The image base path URI, with a trailing /

    https://b.micr.io/
    
    revision?: RevisionType

    For V5+: published revisions per language

    spacesId?: string

    The 360 tour space ID

    tileBasePath?: string

    Use an alternative basePath for image tiles

    tileExtension?: string

    Optional custom file extension for tiles

    tilesId?: string

    Use an alternative image ID for the image tiles

    tileSize?: number

    The original tile size in px

    1024
    
    title?: string

    The image title (default: autoloaded)

    version: string

    The Micrio version this image was created in

    autoloaded
    
    viewsWH?: boolean

    Has new viewport model, optimized for 360 images. Server-side only, not read client-side.

    watermark?: string

    Optional watermark image URI

    width: number

    The original image width

    autoloaded