Interface FlmngrImageFormat

This interface defines which format (width and height) your images can have. For example your images can have such formats: full (default), large preview, small preview, etc. This interface defines which format (width and height) your images can have. For example your images can have such formats: full (default), large preview, small preview, etc.

These formats you can use in Flmngr.pickFiles to require some specified sizes of images user selects. For example, you ask user to select images for photo gallery and require to have both full-sized image and image preview for each photo. User will select only original images and your app receives all required formats transparently.

The list of formats will be used in Flmngr browse dialog (called by [[Flmngr.browse]]) method to group images by formats: user will see only original images. pickFiles also uses browse method.

These formats you can use in Flmngr.pickFiles to require some specified sizes of images user selects. For example, you ask user to select images for photo gallery and require to have both full-sized image and image preview for each photo. User will select only original images and your app receives all required formats transparently.

The list of formats will be used in Flmngr browse dialog (called by Flmngr.pickFiles) method to group images by formats: user will see only original images.

Hierarchy

  • FlmngrImageFormat

Index

Properties

id

id: string

Just some string ID you will use when pass into Flmngr.pickFiles method to require formats. Formats with these IDs you define on Flmngr.constructor and then only link to them by this string ID. Just some string ID you will use when pass into Flmngr.pickFiles method to require formats. Formats with these IDs you define on Flmngr.constructor and then only link to them by this string ID.

maxHeight

maxHeight: number | null

Maximum height in pixels for this format Maximum height in pixels for this format

maxWidth

maxWidth: number | null

Maximum width in pixels for this format Maximum width in pixels for this format

suffix

suffix: string

Suffix for file names used to save an image with this format. For example suffix -preview will save resized image.png as image-preview.png. Suffix for file names used to save an image with this format. For example suffix -preview will save resized image.png as image-preview.png.

title

title: string

Title of this format Title of this format