Gets the clipboard content as Uint8Array image.
import { readImage } from '@tauri-apps/plugin-clipboard-manager';const clipboardImage = await readImage();const blob = new Blob([await clipboardImage.rgba()], { type: 'image' })const url = URL.createObjectURL(blob) Copy
import { readImage } from '@tauri-apps/plugin-clipboard-manager';const clipboardImage = await readImage();const blob = new Blob([await clipboardImage.rgba()], { type: 'image' })const url = URL.createObjectURL(blob)
2.0.0
Gets the clipboard content as Uint8Array image.
Platform-specific