Methods
abort()
Abort load.
- Source
canLoadFile(file) → {boolean}
Check if the loader can load the provided file. True if one of the folowing conditions is true:
- the file has a 'dcm' extension,
- the file has no extension.
Name | Type | Description |
---|---|---|
file | File | The file to check. |
True if the file can be loaded.
- Type:
- boolean
canLoadMemory(mem) → {boolean}
Check if the loader can load the provided memory object.
Name | Type | Description |
---|---|---|
mem | object | The memory object. |
True if the object can be loaded.
- Type:
- boolean
canLoadUrl(url, optionsopt) → {boolean}
Check if the loader can load the provided url. True if one of the folowing conditions is true:
- the
options.forceLoader
is 'dicom', - the
options.requestHeaders
contains a 'Accept: application/dicom', - the url has a 'contentType' and it is 'application/dicom' (as in wado urls),
- the url has no 'contentType' and no extension or the extension is 'dcm'.
Name | Type | Attributes | Description |
---|---|---|---|
url | string | The url to check. | |
options | object | <optional> | Optional url request options. |
True if the url can be loaded.
- Type:
- boolean
isLoading() → {boolean}
Is the load ongoing?
- Source
True if loading.
- Type:
- boolean
load(buffer, origin, index)
Load data.
Name | Type | Description |
---|---|---|
buffer | object | The DICOM buffer. |
origin | string | The data origin. |
index | number | The data index. |
- Source
loadFileAs() → {number}
Get the file content type needed by the loader.
One of the 'fileContentTypes'.
- Type:
- number
loadUrlAs() → {number}
Get the url content type needed by the loader.
One of the 'urlContentTypes'.
- Type:
- number
onabort(_event)
Handle an abort event. Default does nothing.
Name | Type | Description |
---|---|---|
_event | object | The abort event. |
onerror(_event)
Handle an error event. Default does nothing.
Name | Type | Description |
---|---|---|
_event | object | The error event. |
onload(_event)
Handle a load event. Default does nothing.
Name | Type | Description |
---|---|---|
_event | object | The load event fired when a file has been loaded successfully. |
onloadend(_event)
Handle an load end event. Default does nothing.
Name | Type | Description |
---|---|---|
_event | object | The load end event fired when a file load has completed, successfully or not. |
onloaditem(_event)
Handle a load item event. Default does nothing.
Name | Type | Description |
---|---|---|
_event | object | The load item event fired when a file item has been loaded successfully. |
onloadstart(_event)
Handle a load start event. Default does nothing.
Name | Type | Description |
---|---|---|
_event | object | The load start event. |
onprogress(_event)
Handle a progress event. Default does nothing.
Name | Type | Description |
---|---|---|
_event | object | The load progress event. |
setOptions(opt)
Set the loader options.
Name | Type | Description |
---|---|---|
opt | object | The input options. |
- Source