itk-wasm
Version:
High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.
8 lines (7 loc) • 399 B
TypeScript
import ReadImageResult from './read-image-result.js';
import ReadImageArrayBufferOptions from './read-image-array-buffer-options.js';
/**
* @deprecated Use readImageBlob from @itk-wasm/image-io instead
*/
declare function readImageBlob(webWorker: Worker | null, blob: Blob, fileName: string, options?: ReadImageArrayBufferOptions | string): Promise<ReadImageResult>;
export default readImageBlob;