Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bo-Chun Chen
fsqc
Commits
ffe3f16a
Commit
ffe3f16a
authored
Oct 12, 2020
by
Bo-Chun Chen
Browse files
Update fsqc.sh
Convert tif files to png files
parent
822f028b
Changes
1
Show whitespace changes
Inline
Side-by-side
fsqc.sh
View file @
ffe3f16a
...
...
@@ -5,10 +5,10 @@ echo "<table>" >> index.html
for
sub
in
$(
ls
${
SUBJECTS_DIR
}
)
;
do
echo
"<tr>"
>>
index.html
echo
"<td><a href=
\"
file:"
$sub
".lh.lat.hr.
tif
\"
><img src=
\"
"
$sub
".lh.lat.lr.
tif
\"
></a></td>"
>>
index.html
echo
"<td><a href=
\"
file:"
$sub
".lh.med.hr.
tif
\"
><img src=
\"
"
$sub
".lh.med.lr.
tif
\"
></a></td>"
>>
index.html
echo
"<td><a href=
\"
file:"
$sub
".rh.lat.hr.
tif
\"
><img src=
\"
"
$sub
".rh.lat.lr.
tif
\"
></a></td>"
>>
index.html
echo
"<td><a href=
\"
file:"
$sub
".rh.med.hr.
tif
\"
><img src=
\"
"
$sub
".rh.med.lr.
tif
\"
></a></td>"
>>
index.html
echo
"<td><a href=
\"
file:"
$sub
".lh.lat.hr.
png
\"
><img src=
\"
"
$sub
".lh.lat.lr.
png
\"
></a></td>"
>>
index.html
echo
"<td><a href=
\"
file:"
$sub
".lh.med.hr.
png
\"
><img src=
\"
"
$sub
".lh.med.lr.
png
\"
></a></td>"
>>
index.html
echo
"<td><a href=
\"
file:"
$sub
".rh.lat.hr.
png
\"
><img src=
\"
"
$sub
".rh.lat.lr.
png
\"
></a></td>"
>>
index.html
echo
"<td><a href=
\"
file:"
$sub
".rh.med.hr.
png
\"
><img src=
\"
"
$sub
".rh.med.lr.
png
\"
></a></td>"
>>
index.html
echo
"</tr>"
>>
index.html
echo
"<tr>"
>>
index.html
echo
"<td colspan=4><center>"
$sub
"</center><br></td>"
>>
index.html
...
...
@@ -53,3 +53,10 @@ do
done
;
echo
"</table>"
>>
index.html
echo
"</html>"
>>
index.html
# Convert tif to PNG and remove TIFF files
for
f
in
*
.tif
;
do
echo
"Converting
$f
"
;
convert
"
$f
"
"
$(
basename
"
$f
"
.tif
)
.png"
;
rm
$f
done
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment