comparison Applications/StoneWebViewer/WebApplication/configuration.json @ 1699:0598c87e1e88

"WindowingPresets" configuration option
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 27 Nov 2020 10:21:48 +0100
parents 8805a6a01655
children f1bd464dc3e1
comparison
equal deleted inserted replaced
1698:8805a6a01655 1699:0598c87e1e88
8 * Defines how dates are displayed in the UI. If this option is not 8 * Defines how dates are displayed in the UI. If this option is not
9 * set, the DICOM tags will be displayed as such. "DD" will be 9 * set, the DICOM tags will be displayed as such. "DD" will be
10 * replaced by the day, "MM" by the month, and "YYYY" by the year. 10 * replaced by the day, "MM" by the month, and "YYYY" by the year.
11 **/ 11 **/
12 // "DateFormat" : "DD/MM/YYYY", 12 // "DateFormat" : "DD/MM/YYYY",
13
14 /**
15 * This option allows you to define windowing presets.
16 * For each preset, you must provide a name, the window width
17 * and window center.
18 **/
19 "WindowingPresets" : [
20 {"Name": "CT Lung", "WindowCenter": -400, "WindowWidth": 1600},
21 {"Name": "CT Abdomen", "WindowCenter": 60, "WindowWidth": 400},
22 {"Name": "CT Bone", "WindowCenter": 300, "WindowWidth": 1500},
23 {"Name": "CT Brain", "WindowCenter": 40, "WindowWidth": 80},
24 {"Name": "CT Chest", "WindowCenter": 40, "WindowWidth": 400},
25 {"Name": "CT Angio", "WindowCenter": 300, "WindowWidth": 600}
26 ],
13 27
14 /** 28 /**
15 * The allowed origin for messages corresponding to dynamic actions 29 * The allowed origin for messages corresponding to dynamic actions
16 * triggered by another Web page using "window.postMessage()". The 30 * triggered by another Web page using "window.postMessage()". The
17 * special value "*" will allow any origin, which is an insecure 31 * special value "*" will allow any origin, which is an insecure