interface GalleryPhoto {
    exif?: any;
    format: string;
    path?: string;
    webPath: string;
}

Properties

exif?: any

Exif data, if any, retrieved from the image

Since

1.2.0

format: string

The format of the image, ex: jpeg, png, gif.

iOS and Android only support jpeg. Web supports jpeg, png and gif.

Since

1.2.0

path?: string

Full, platform-specific file URL that can be read later using the Filesystem API.

Since

1.2.0

webPath: string

webPath returns a path that can be used to set the src attribute of an image for efficient loading and rendering.

Since

1.2.0