@itk-wasm/image-io
Version:
Input and output for scientific and medical image file formats.
14 lines (13 loc) • 610 B
TypeScript
import { BinaryFile } from 'itk-wasm';
import BmpReadImageOptions from './bmp-read-image-options.js';
import BmpReadImageResult from './bmp-read-image-result.js';
/**
* Read an image file format and convert it to the itk-wasm file format
*
* @param {File | BinaryFile} serializedImage - Input image serialized in the file format
* @param {BmpReadImageOptions} options - options object
*
* @returns {Promise<BmpReadImageResult>} - result object
*/
declare function bmpReadImage(serializedImage: File | BinaryFile, options?: BmpReadImageOptions): Promise<BmpReadImageResult>;
export default bmpReadImage;