Skip to content
Tauri

image

An RGBA Image in row-major order from top to bottom.

get rid(): number

number

Resource.rid

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/core.ts#L309

close(): Promise<void>

Destroys and cleans up this resource from memory. You should not call any method on this object anymore and should drop any reference to it.

Promise<void>

Resource.close

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/core.ts#L321

rgba(): Promise<Uint8Array<ArrayBufferLike>>

Returns the RGBA data for this image, in row-major order from top to bottom.

Promise<Uint8Array<ArrayBufferLike>>

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/image.ts#L79

size(): Promise<ImageSize>

Returns the size of this image.

Promise<ImageSize>

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/image.ts#L86

static fromBytes(bytes): Promise<Image>

Creates a new image using the provided bytes by inferring the file format. If the format is known, prefer [@link Image.fromPngBytes] or [@link Image.fromIcoBytes].

Only ico and png are supported (based on activated feature flag).

Note that you need the image-ico or image-png Cargo features to use this API. To enable it, change your Cargo.toml file:

[dependencies]
tauri = { version = "...", features = ["...", "image-png"] }
ParameterType
bytesnumber[] | ArrayBuffer | Uint8Array<ArrayBufferLike>

Promise<Image>

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/image.ts#L52

static fromPath(path): Promise<Image>

Creates a new image using the provided path.

Only ico and png are supported (based on activated feature flag).

Note that you need the image-ico or image-png Cargo features to use this API. To enable it, change your Cargo.toml file:

[dependencies]
tauri = { version = "...", features = ["...", "image-png"] }
ParameterType
pathstring

Promise<Image>

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/image.ts#L72

static new(
rgba,
width,
height): Promise<Image>

Creates a new Image using RGBA data, in row-major order from top to bottom, and with specified width and height.

ParameterType
rgbanumber[] | ArrayBuffer | Uint8Array<ArrayBufferLike>
widthnumber
heightnumber

Promise<Image>

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/image.ts#L27

PropertyTypeDefined in
heightnumberSource: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/image.ts#L12
widthnumberSource: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/image.ts#L10

function transformImage<T>(image): T

Transforms image from various types into a type acceptable by Rust.

See tauri::image::JsImage for more information. Note the API signature is not stable and might change.

Type Parameter
T
ParameterType
image| null | string | number[] | ArrayBuffer | Uint8Array<ArrayBufferLike> | Image

T

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/image.ts#L97


© 2025 Tauri Contributors. CC-BY / MIT