@itk-wasm/image-io
Version:
Input and output for scientific and medical image file formats.
13 lines (12 loc) • 601 B
TypeScript
import JpegReadImageNodeOptions from './jpeg-read-image-node-options.js';
import JpegReadImageNodeResult from './jpeg-read-image-node-result.js';
/**
* Read an image file format and convert it to the itk-wasm file format
*
* @param {string} serializedImage - Input image serialized in the file format
* @param {JpegReadImageNodeOptions} options - options object
*
* @returns {Promise<JpegReadImageNodeResult>} - result object
*/
declare function jpegReadImageNode(serializedImage: string, options?: JpegReadImageNodeOptions): Promise<JpegReadImageNodeResult>;
export default jpegReadImageNode;