-
Notifications
You must be signed in to change notification settings - Fork 0
/
quickTips.html
159 lines (137 loc) · 4.79 KB
/
quickTips.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="en">
<head>
<title>DICOM+</title>
<link rel="stylesheet"
href="../../../bootstrap/3.3.6/css/bootstrap.min.css" />
<link rel="stylesheet"
href="../../../bootstrap/3.3.6/css/bootstrap-theme.min.css" />
<script src="../../../jquery/1.11.3/jquery.min.js"></script>
<script src="../../../bootstrap/3.3.6/js/bootstrap.min.js"></script>
<style>
body {
max-width: 1024px;
}
@media ( min-width : 768px) {
.sidebar-nav .navbar .navbar-collapse {
padding: 0;
max-height: none;
}
.sidebar-nav .navbar ul {
float: none;
display: block;
}
.sidebar-nav .navbar li {
float: none;
display: block;
}
.sidebar-nav .navbar li a {
padding-top: 12px;
padding-bottom: 12px;
}
}
</style>
</head>
<body>
<div style="margin-top: 20px;margin-bottom: 50px;" class="row">
<div class="col-md-3 col-md-offset-1">
<h1 class="fill">
<a href="index.html"> <img
src="../../../images/DICOM+.png" height="232"/>
</a>
</h1>
<div class="sidebar-nav">
<div class="navbar navbar-default" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse"
data-target=".sidebar-navbar-collapse">
<span class="sr-only">Toggle navigation</span> <span
class="icon-bar"></span> <span class="icon-bar"></span> <span
class="icon-bar"></span>
</button>
<span class="visible-xs navbar-brand">Sidebar menu</span>
</div>
<div class="navbar-collapse collapse sidebar-navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">Starting the
program</a></li>
<li><a href="main.html">Main Window Layout</a></li>
<li><a href="preview.html">Previewing Files</a></li>
<li><a href="anonymizingFiles.html">Anonymizing Files</a></li>
<li><a href="anonymizeOptions.html">Anonymize Options</a></li>
<li><a href="edit.html">Editing</a></li>
<li><a href="quickTips.html">Quick Start and Tips</a></li>
<li><a href="faq.html">Frequently Asked Questions</a></li>
<li><a href="commandLine.html">Running as a command line
program</a></li>
<!-- <li><a style="margin-left:40px;" href="preload.html">Saving and loading a session</a> TODO </li> -->
<li><a
href="http://dicom.nema.org/medical/dicom/current/output/chtml/part05/sect_6.2.html#table_6.2-1" target="_blank">DICOM
Value Representations (from the DICOM standard)</a></li>
<li><a href="valueMultiplicity.html">DICOM Value
Multiplicity</a></li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
</div>
</div>
<div class="col-md-8">
<h2>Quick Start How To's</h2>
<p/><br/>
<h4 id="preview">Preview a series</h4>
<ul>
<li>Load DICOM files</li>
<li>Click <code>Preview</code> button to the right of the series</li>
</ul>
<p/><br/>
<h4 id="previewText">Preview the meta-data (text) of a series</h4>
<ul>
<li>Load DICOM files</li>
<li>Click <code>Preview</code> button to the right of the series</li>
<li>In the preview window, click the <code>Text</code> radio button
in the lower right-hand corner of the window</li>
</ul>
<p/><br/>
<h4 id="getDicomAsText">Get the text of a DICOM file</h4>
<ul>
<li>Preview the file as text</li>
<li>Use CTRL-A and then CTRL-C to copy the text, then paste it into another application (such as Notepad).</li>
</ul>
<p/><br/>
<h4 id="fixDicomFile">Fix a damaged DICOM file</h4>
DICOM+ is often more tolerant of DICOM files with errors or that use older encoding methods. If you are using
another application that has trouble reading a DICOM file, try this:
<p/>
<ul>
<li>Load and preview the files in text mode</li>
<li>Click <code>Edit</code> to edit the file</li>
<li>Click <code>Save+Close</code></li>
</ul>
The files will be saved without changing the metadata, but cleanly reformatted. Then try using the new files in
the other application.
<p/><br/>
<h4 id="convert">Convert DICOM files to text, XML, or PNG</h4>
<ul>
<li>Load and preview the files in text mode</li>
<li>Click <code>Edit</code> to edit the file</li>
<li>Click <code>Options</code></li>
<li>Select the format(s) you want to save in</li>
<li>Click <code>Back to Main</code></li>
<li>Click <code>Save+Close</code></li>
</ul>
<p/><br/>
<h4 id="anonymize">Anonymize a series:</h4>
<ul>
<li>Load DICOM files</li>
<li>Switch to <code>Anonymize</code> mode</li>
<li>Click <code>Anonymize</code> button to the right of the series</li>
</ul>
Generated files will be put in the <code>Destination</code> folder.
To view them, drag them into the application and click the corresponding
<code>Preview</code> button.
<p/><br/>
</div>
</div>
</body>
</html>