blob: cf6b2404e97135627ca8f405b6749dbfcfd7deba (
plain)
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
# Copyright (C) 1999-2018
# Smithsonian Astrophysical Observatory, Cambridge, MA, USA
# For conditions of distribution and use, see copyright notice in "copyright"
package provide DS9 1.0
proc SaveImageDef {} {
global saveimage
set saveimage(jpeg,quality) 75
set saveimage(tiff,compress) none
set aa [msgcat::mc {An error has occurred while creating the image. Please be sure that the entire image window is visible on the screen.}]
set bb [msgcat::mc {An error has occurred while creating the image. Please be sure that the ds9 window is in the upper left corner of the default screen and the entire window is visible.}]
set cc [msgcat::mc {This function is not currently supported for this port.}]
global ds9
switch $ds9(wm) {
x11 {
global tcl_platform
switch $tcl_platform(os) {
Darwin {
switch [lindex [split $tcl_platform(osVersion) {.}] 0] {
10 -
11 {set saveimage(error) $bb}
8 -
9 -
default {set saveimage(error) $aa}
}
}
default {set saveimage(error) $aa}
}
}
aqua -
win32 {set saveimage(error) $cc}
}
}
proc SaveImageDialog {format} {
global saveimage
global fitsfbox
global epsfbox
global giffbox
global jpegfbox
global tifffbox
global pngfbox
switch -- $format {
fits {set fn [SaveFileDialog fitsfbox]}
eps {set fn [SaveFileDialog epsfbox]}
gif {set fn [SaveFileDialog giffbox]}
jpeg {set fn [SaveFileDialog jpegfbox]}
tiff {set fn [SaveFileDialog tifffbox]}
png {set fn [SaveFileDialog pngfbox]}
}
if {$fn != {}} {
set ok 1
switch -- $format {
fits -
eps -
gif -
png {}
jpeg {set ok [JPEGExportDialog saveimage(jpeg,quality)]}
tiff {set ok [TIFFExportDialog saveimage(tiff,compress)]}
}
if {$ok} {
SaveImage $fn $format
}
}
}
proc SaveImage {fn format} {
global ds9
global current
global saveimage
global cube
if {$fn == {} || ![$current(frame) has fits]} {
return
}
# besure we are on top
raise $ds9(top)
# and no highlite
$current(frame) highlite off
# and refresh screen
RealizeDS9
switch -- $format {
fits {$current(frame) save fits resample file "\{$fn\}"}
eps {EPS $fn}
gif -
tiff -
jpeg -
png {SaveImagePhoto $fn $format}
}
# reset
switch -- $ds9(display) {
single -
blink {}
tile {$current(frame) highlite on}
}
# and refresh screen
RealizeDS9
}
# Support
proc SaveImagePhoto {fn format} {
global ds9
global saveimage
switch $ds9(wm) {
x11 {}
aqua -
win32 {
Error $saveimage(error)
return
}
}
set rr [catch {image create photo -format window -data $ds9(canvas)} ph]
if {$rr != 0} {
Error $saveimage(error)
}
switch -- $format {
gif -
png {$ph write $fn -format $format}
jpeg {$ph write $fn \
-format [list $format -quality $saveimage(jpeg,quality)]}
tiff {$ph write $fn \
-format [list $format -compression $saveimage(tiff,compress)]}
}
image delete $ph
}
# Process Cmds
proc ProcessSaveImageCmd {varname iname} {
upvar $varname var
upvar $iname i
# we need to be realized
# yes, really need this
# ProcessRealizeDS9
UpdateDS9
RealizeDS9
saveimage::YY_FLUSH_BUFFER
saveimage::yy_scan_string [lrange $var $i end]
saveimage::yyparse
incr i [expr $saveimage::yycnt-1]
}
proc SaveImageCmdLoad {format fn} {
switch -- $format {
fits {FileLast fitsfbox $fn}
eps {FileLast epsfbox $fn}
gif {FileLast giffbox $fn}
jpeg {FileLast jpegfbox $fn}
tiff {FileLast tifffbox $fn}
png {FileLast pngfbox $fn}
}
SaveImage $fn $format
}
proc SaveImageCmdMPEG {fn na} {
global movie
set movie(action) slice
Movie $fn
}
|