Interface ImageProperties

The properties of the Image.

interface ImageProperties {
    ColorModel?: string;
    Depth?: number;
    Exif?: {
        [key: string]: any;
    };
    FileSize: number;
    GIF?: {
        [key: string]: any;
    };
    HasAlpha?: 0 | 1;
    JFIF?: {
        [key: string]: any;
    };
    PNG?: {
        [key: string]: any;
    };
    PixelHeight?: number;
    PixelWidth?: number;
    ProfileName?: string;
    TIFF?: {
        [key: string]: any;
    };
    uti: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

ColorModel?: string
Depth?: number
Exif?: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any
FileSize: number
GIF?: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any
HasAlpha?: 0 | 1
JFIF?: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any
PNG?: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any
PixelHeight?: number
PixelWidth?: number
ProfileName?: string
TIFF?: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any
uti: string

Generated using TypeDoc