FetchImageOptions

Properties

Link copied to clipboard
abstract val flipY: Boolean?

Whether to vertically flip the image during fetch and decode. Only applies when requesting an image and the browser supports createImageBitmap. Default value - false

Link copied to clipboard
abstract val headers: Any?

Additional HTTP headers that will be sent. Default value - {}

Link copied to clipboard
abstract val preferBlob: Boolean?

If true, we will load the image via a blob. Default value - false

Link copied to clipboard
abstract val preferImageBitmap: Boolean?

If true, image will be decoded during fetch and an ImageBitmap is returned. Default value - false

Link copied to clipboard
abstract val proxy: Proxy?

A proxy to be used when loading the resource.

Link copied to clipboard
abstract val queryParameters: Any?

An object containing query parameters that will be sent when retrieving the resource.

Link copied to clipboard
abstract val request: Request?

A Request object that will be used. Intended for internal use only.

Link copied to clipboard
abstract val retryAttempts: Int?

The number of times the retryCallback should be called before giving up. Default value - 0

Link copied to clipboard

The Function to call when a request for this resource fails. If it returns true, the request will be retried.

Link copied to clipboard

If true, any custom gamma or color profiles in the image will be ignored. Only applies when requesting an image and the browser supports createImageBitmap. Default value - false

Link copied to clipboard
abstract val templateValues: Any?

Key/Value pairs that are used to replace template values (eg. {x}).

Link copied to clipboard
abstract val url: String

The url of the resource.