UNPKG

@cornerstonejs/dicom-image-loader

Version:

Cornerstone Image Loader for DICOM WADO-URI and WADO-RS and Local file

6 lines (5 loc) 377 B
import type { ByteArray } from 'dicom-parser'; import type { DICOMLoaderImageOptions, DICOMLoaderIImage } from '../types'; import type { Types } from '@cornerstonejs/core'; declare function createImage(imageId: string, pixelData: ByteArray, transferSyntax: string, options?: DICOMLoaderImageOptions): Promise<DICOMLoaderIImage | Types.IImageFrame>; export default createImage;