Interface ImageMetadata

ImageMetadata Represents the metadata for an image, including description, origin, author, copyright, and keywords.

interface ImageMetadata {
    author?: string;
    copyright?: string;
    description?: string;
    keywords?: string[];
    origin?: string;
}

Properties

author?: string

The author of the image.

copyright?: string

The copyright information for the image.

description?: string

A brief description of the image.

keywords?: string[]

An array of keywords associated with the image.

origin?: string

The origin or source of the image.