Image: BaseAsset & {
    height: number;
    i18n?: {
        [key: string]: {
            description?: string;
            title?: string;
        };
    };
    id?: string;
    isDeepZoom?: boolean;
    isPng?: boolean;
    isWebP?: boolean;
    micrioId?: string;
    tilesId?: string;
    width: number;
}

An image asset uploaded in the Micrio editor

Type declaration

  • height: number

    The image original height

  • Optional i18n?: {
        [key: string]: {
            description?: string;
            title?: string;
        };
    }

    V5+: Translatable description

    • [key: string]: {
          description?: string;
          title?: string;
      }
      • Optional description?: string
      • Optional title?: string
  • Optional id?: string
  • Optional isDeepZoom?: boolean

    Used DeepZoom format

  • Optional isPng?: boolean

    Is PNG

  • Optional isWebP?: boolean

    IsWebP

  • Optional micrioId?: string

    If the image is available as Micrio image, its ID

  • Optional tilesId?: string

    If the image has a Micrio version, optional alternative image tile ID

  • width: number

    The image original width