cgimage.pro
119 KB
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
; docformat = 'rst'
;
; PURPOSE:
; The purpose of this program is to create a TV command that works the way
; the TV command would be expected to work if it was written today, rather
; than 25 years ago. In other words, it knows the difference between an
; 8-bit device and a 24-bit device, it honors the POSITION keyword like
; other graphics commands in IDL, it honors the !P.MULTI value, like other
; graphics commands in IDL, it works seamlessly with both 8-bit and 24-bit
; images. In addition to other modern features, this program can also
; display images that contain an alpha channel and can display images with
; transparency.
;
;******************************************************************************************;
; ;
; Copyright (c) 2011, by Fanning Software Consulting, Inc. All rights reserved. ;
; ;
; Redistribution and use in source and binary forms, with or without ;
; modification, are permitted provided that the following conditions are met: ;
; ;
; * Redistributions of source code must retain the above copyright ;
; notice, this list of conditions and the following disclaimer. ;
; * Redistributions in binary form must reproduce the above copyright ;
; notice, this list of conditions and the following disclaimer in the ;
; documentation and/or other materials provided with the distribution. ;
; * Neither the name of Fanning Software Consulting, Inc. nor the names of its ;
; contributors may be used to endorse or promote products derived from this ;
; software without specific prior written permission. ;
; ;
; THIS SOFTWARE IS PROVIDED BY FANNING SOFTWARE CONSULTING, INC. ''AS IS'' AND ANY ;
; EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES ;
; OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT ;
; SHALL FANNING SOFTWARE CONSULTING, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, ;
; INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED ;
; TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; ;
; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ;
; ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ;
; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS ;
; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ;
;******************************************************************************************;
;
;+
; The purpose of this program is to create a TV command that works the way
; the TV command would be expected to work if it was written today, rather
; than 25 years ago. In other words, it knows the difference between an
; 8-bit device and a 24-bit device, it honors the POSITION keyword like
; other graphics commands in IDL, it honors the !P.MULTI value, like other
; graphics commands in IDL, it works seamlessly with both 8-bit and 24-bit
; images. In addition to other modern features, this program can also
; display images that contain an alpha channel and can display transparent
; images.
;
; There is a common block in cgImage that is defined as follows upon exiting
; this command::
;
; COMMON FSC_$CGIMAGE, $
; _cgimage_xsize, $ ; The X size of the image.
; _cgimage_ysize, $ ; The Y size of the imge.
; _cgimage_winxsize, $ ; The X size of the window displaying the image.
; _cgimage_winysize, $ ; The Y size of the window displaying the image.
; _cgimage_position, $ ; The final position of the image in the window.
; _cgimage_winID, $ ; The window index number of the window displaying the image.
; _cgimage_current ; Set to 1 if a call to cgImage is made.
;
; The program requires the `Coyote Library <http://www.idlcoyote.com/documents/programs.php>`
; to be installed on your machine.
;
; To learn more about transparent images and cgImage see the article
; `Working with Transparent Images and cgImage <http://www.idlcoyote.com/cg_tips/transimage.php>`.
;
; :Categories:
; Graphics
;
; :Examples:
; To display an image with a contour plot on top of it, type::
;
; filename = FILEPATH(SUBDIR=['examples','data'], 'worldelv.dat')
; image = BYTARR(360,360)
; OPENR, lun, filename, /GET_LUN
; READU, lun, image
; FREE_LUN, lun
;
; thisPostion = [0.1, 0.1, 0.9, 0.9]
; cgIMAGE, image, POSITION=thisPosition, /KEEP_ASPECT_RATIO
; CONTOUR, image, POSITION=thisPosition, /NOERASE, XSTYLE=1, $
; YSTYLE=1, XRANGE=[0,360], YRANGE=[0,360], NLEVELS=10
;
; To display four images in a window without spacing between them::
;
; !P.Multi=[0,2,2]
; cgImage, image, Margin=0
; cgImage, image, Margin=0
; cgImage, image, Margin=0
; cgImage, image, Margin=0
; !P.Multi = 0
;
; To display four image in a window with associated color bars::
;
; !P.Multi=[0,2,2]
; p = [0.02, 0.3, 0.98, 0.98]
; LoadCT, 0
; cgImage, image, Position=p
; cgColorbar, Position=[p[0], p[1]-0.1, p[2], p[1]-0.05]
; p = [0.02, 0.3, 0.98, 0.98]
; LoadCT, 2
; cgImage, image, Position=p
; cgColorbar, Position=[p[0], p[1]-0.1, p[2], p[1]-0.05]
; p = [0.02, 0.3, 0.98, 0.98]
; LoadCT, 3
; cgImage, image, Position=p
; cgColorbar, Position=[p[0], p[1]-0.1, p[2], p[1]-0.05]
; p = [0.02, 0.3, 0.98, 0.98]
; LoadCT, 5
; cgImage, image, Position=p
; cgColorbar, Position=[p[0], p[1]-0.1, p[2], p[1]-0.05]
; !P.Multi =0
;
; To set a missing value to -32767 and the color white and do
; a 3% histogram clip of the image::
;
; cgLoadCT, 4, /Brewer, NColors=254
; TVLCT, palette, /Get
; cgImage, image, Missing_Value=-32767, Missing_Color='white', Stretch='Clip', Clip=3
;
; To display a transparent image on top of another image::
;
; cgImage, cgDemoData(7), CTIndex=0
; cgImage, cgDemoData(5), CTIndex=33, Transparent=50, $
; AlphaFGPosition=[0.25, 0.25, 0.75, 0.75], Missing_Value=0
;
; .. image:: cgimage.png
;
; :Author:
; FANNING SOFTWARE CONSULTING::
; David W. Fanning
; 1645 Sheely Drive
; Fort Collins, CO 80526 USA
; Phone: 970-221-0438
; E-mail: david@idlcoyote.com
; Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
;
; :History:
; Modification History::
; Written by: David W. Fanning, from modifications to TVIMAGE. 3 Feb 2011.
; 8 Feb 2011. Added OPOSITION keyword. DWF.
; 27 Feb 2011. Added keywords to make cgImage more compatible with TVImage calls. DWF.
; Color table vectors must be obtained AFTER loading the color palette. 6 March 2011. DWF.
; I have been convinced (conversations with Wayne Landsman) that if the
; CENTER keyword is set, the MINUS_ONE keyword is not needed, since
; it was created to solve the same problem. So, I have changed the
; default setting of MINUS_ONE to 0. 14 March 2011. DWF.
; Corrected a problem with restoring color tables if a PALETTE is used. 31 March 2011. DWF.
; Whoops! Documented a CHARSIZE keyword, but forgot to define it. 7 July 2011.
; Damnation! I did the same thing with the FONT keyword! 25 July 2011.
; And now a TITLE keyword! What the devil is going on!? 29 Aug 2011.
; Very slight modifications to image size and start position so that the image is
; positioned completely inside the axes. 30 Sept 2011. DWF.
; Fitting the image inside the axes causes image matching problems (and lines!) in
; other programs, so I've decided to only do positioning inside axes when the
; user asks for this capability by setting the new FIT_INSIDE keyword. 16 Nov 2011. DWF.
; Problem with transparent images with alpha channels caused by changes in the TVImage->cgImage
; transition. Added AlphaFGPosition keyword to address issues. Cleaned up the
; code and improved the internal documentation. 22 Nov 2011. DWF.
; Added the ability to stretch 2D image arrays in various ways before display. 1 Dec 2011.
; Added the ability to handle missing data in 2D arrays before display. 1 Dec 2011.
; Added a DISPLAY keyword to display the image in windows with the image aspect ratio. 2 Dec 2011.
; Added the ability to send the output directly to a file via the OUTPUT keyword. 9 Dec 2011, DWF.
; PostScript, PDF, and Imagemagick parameters can now be tailored with cgWindow_SetDefs. 14 Dec 2001. DWF.
; Modified to use cgDefaultColor for default color selection. 24 Dec 2011. DWF.
; Changes to allow better default colors, based on changes to cgColor and cgDefaultColor. 1 Feb 2012. DWF.
; I was passing the wrong MINVALUE and MAXVALUE values to the scaling function. 12 Feb 2012. DWF.
; I made cgImage aware of a "feature" of MAP_SET that sets !P.MULTI[0]=-1, which was screwing
; up the algorithm to cause cgImage to erase the display window. 28 Feb 2012. DWF.
; Added a Standard Deviation stretch, including the EXCLUDE and MULTIPLIER keywords to the
; SDevScl command. 6 June 2012. DWF.
; Now saving the image POSITION in FSC_$CGIMAGE common block, even if in PostScript, because other
; routines (e.g., cgMap) may depend on it (e.g., using ONIMAGE keyword). 26 July 2012. DWF.
; Added the ability to use escape characters in plot titles to specify cgSymbol symbols. 27 July 2012. DWF.
; Modified the way the XRANGE and YRANGE keywords work when the OVERPLOT keyword is also set. In this case,
; I will modify the image position to honor the XRANGE and YRANGE values with respect to the axes that the
; image is being overplot onto. 15 August 2012. DWF.
; Set the NOERASE keyword if the OVERPLOT keyword is set and NOERASE is undefined. 16 Aug 2012. DWF.
; Modified the way the HIST_EQUAL stretch works. Previously the image was displayed as all zeros
; if the input image had a minimum value less that zero. 21 Aug 2012. DWF.
; Fixed a problem with the INTERPOLATE variable that prevented interpolaton from occurring. 12 Sept 2012. DWF.
; A misspelled MULTIPLIER keyword was interfering with a Standard Deviation stretch. 16 Sept 2012. DWF
; Added the TRANSPARENT keyword to allow transparent display of images. 17 October 2012. DWF.
; Added the MAPCOORD keyword to allow the XRANGE and YRANGE of the image to be specified by the map
; coordinate object. 17 October 2012. DWF.
; Added CTINDEX, BREWER, and REVERSE keywords to make loading a color table palette easier. 17 October 2012. DWF.
; Now setting MISSING_VALUE pixels to completely transparent if a transparent image is created. 17 October 2012. DWF.
; Added the ability to apply a stretch to a 2D image prior to converting it to a transparent image. 18 October 2012.DWF.
; Added a FILENAME keyword so that files of known format (GeoTIFF, JPEG, PNG, etc.) can be read to supply an
; image for display. 18 October 2012. DWF.
; Fixed a problem that prevented transparent images from be displayed with !P.Multi. 20 Oct 2012. DWF.
; Provided a fix to allow transparent images in versions of IDL from IDL 6.4 and earlier. 18 Nov 2012. DWF.
; When reading a GeoTiff file, the map object created should be named mapCoord, not map, so that
; the image data ranges can be set automatically. 11 January 2013. DWF.
; Additional work to allow overplotting of transparent images. 12 Jan 2013. DWF.
; For some reason I thought I had to have transparency ON when overplotting. This turns out to be wrong
; and gets in the way of outputting to PostScript and working with some map projected images. I've
; removed this requirement in the code. I also fixed a problem in which the OUTPUT position changes
; if the TRANSPARENT keyword is used. 27 January 2013. DWF.
; I had some code dealing with XRANGE and YRANGE properties of the image when a map coodinate object
; was used with cgImage. This was inadvertently setting the XRANGE and YRANGE properties of the
; image, which was in turn causing the range values to be SAVED in the plotting system variables.
; This interferred with backward compatibility with the TV command, so I have removed it. 31 Jan 2013. DWF.
; Whoops! Typo in my last fix. Getting too old, I guess. 6 Feb 2013. DWF.
; Setting any of the MISSING_*** keywords while doing multiple plots resulted in the value
; of !P.Multi being ignored for the image. This is fixed for now, but just a warning. Setting
; these keywords creates transparent images, and makes things MUCH more complicated. So, I'm
; probably at the limit of what is possible now. :-) 30 April 2013. DWF.
; The LAYOUT keyword went on walkabout after the last changes. Restored to operation. 12 July 2013. DWF.
; The YTITLE keyword was missing when passed to cgWindow. Fixed now. 24 Oct 2013. DWF.
;
; :Copyright:
; Copyright (c) 2011-2013, Fanning Software Consulting, Inc.
;-
;
;+
; This function creates a transparent image out of a normal 2D or 3D image.
;
; :Params:
; image: in, required
; The input image. Must be either 2D or a true-color image.
; transparent: in, optional, type=integer, default=50
; The transparentcy of the image with respect to the background image. A number
; from 0 to 100.
;
; :Keywords:
; missing_value: in, optional, type=integer
; The number that represents the missing value in the image. Available only with 2D images.
; This value is set to be completely transparent in the image.
; palette: in, optional, type=bytarr
; A 3x256 byte array containing the color table vectors that the image is to
; be displayed in.
; success: out, optional
; An output keyword that is set to 1 if the transparent image is created
; successfully. Otherwise, set to 0.
;-
FUNCTION cgImage_Make_Transparent_Image, image, transparent, $
MISSING_VALUE=missing_value, $
PALETTE=palette, $
SUCCESS=success
Compile_Opt idl2
Catch, theError
IF theError NE 0 THEN BEGIN
Catch, /CANCEL
void = cgErrorMsg()
success = 0
RETURN, 0
ENDIF
success = 1
IF N_Elements(image) EQ 0 THEN Message, 'An image parameter is required'
IF N_Elements(transparent) EQ 0 THEN transparent = 50
; Make sure the transparent value is between 0 and 100 initially, and between 0 and 1 finally.
transparent = (0 > transparent < 100) / 100.0
ndims = Size(image, /N_DIMENSIONS)
CASE ndims OF
2: BEGIN
s = Size(image, /DIMENSIONS)
IF N_Elements(palette) NE 0 THEN BEGIN
IF (Size(palette, /DIMENSIONS))[0] EQ 3 THEN BEGIN
r = Reform(palette[0,*])
g = Reform(palette[1,*])
b = Reform(palette[2,*])
ENDIF ELSE BEGIN
r = palette[*,0]
g = palette[*,1]
b = palette[*,2]
ENDELSE
ENDIF ELSE BEGIN
TVLCT, r, g, b, /Get
ENDELSE
newimage = BytArr(4, s[0], s[1])
newImage[0,*,*] = r[image]
newImage[1,*,*] = g[image]
newImage[2,*,*] = b[image]
newimage[3,*,*] = BytArr(s[0],s[1]) + (255 * (1.0 - transparent))
; Is there missing data to consider?
IF (N_Elements(missing_value) NE 0) THEN BEGIN
; The missing value may be the symbol for NAN.
IF Finite(missing_value) THEN BEGIN
missingIndices = Where(image EQ missing_value, missingCnt)
ENDIF ELSE BEGIN
missingIndices = Where(Finite(image) EQ 0, missingCnt)
ENDELSE
; Make the missing pixels completely transparent in the alpha channel.
IF missingCnt GT 0 THEN BEGIN
alpha = Reform(newimage[3,*,*])
alpha[missingIndices] = 0B
newimage[3,*,*] = Temporary(alpha)
ENDIF
ENDIF
END
3: BEGIN
dims = Image_Dimensions(image, XSIZE=xsize, YSIZE=ysize, ALPHACHANNEL=alpha, TRUEINDEX=true)
newimage = BytArr(4, xsize, ysize)
; Prepare an alpha image, if needed.
IF ~alpha THEN BEGIN
index = Where(Size(image,/DIMENSIONS) EQ 3)
CASE index OF
0: aImage = image
1: aImage = Transpose(image, [1,0,2])
2: aimage = Transpose(image, [2,0,1])
ENDCASE
newImage[0:2,*,*] = aImage
newimage[3,*,*] = BytArr(xsize,ysize) + (255 * (1.0 - transparent))
ENDIF ELSE BEGIN
index = Where(Size(image,/DIMENSIONS) EQ 4)
CASE index OF
0: aImage = image
1: aImage = Transpose(image, [1,0,2])
2: aimage = Transpose(image, [2,0,1])
ENDCASE
newImage[0:2,*,*] = aImage[0:2,*,*]
newimage[3,*,*] = BytArr(xsize,ysize) + (255 * (1.0 - transparent))
ENDELSE
END
ELSE: Message, 'Cannot process images that are not 2D or True-Color for transparentcy.'
ENDCASE
RETURN, newImage
END
;+
; This routine prepares a transparent image (an image with an alpha channel)
; for display.
;
; :Returns:
; Returns an image that has been blended with the background image and is
; suitable for display with cgImage.
;
; :Params:
; image: in, required
; The input image that is being prepared for display. It will contain
; an alpha channel.
; alphabackgroundimage: in, required
; The background image. The input image will be blended
; with the background image.
;
; :Keywords:
; alphabgposition: in, required, type=fltarr
; The normalized position or portion of the background image used to create the alpha image.
; alphafgposition: in, required, type=fltarr
; The normalized position in the background image where the input image is to be located.
; tv: in, optional, type=boolean, default=0
; If this keyword is set, the alpha channel is removed from the
; input image, because we cannot display an image with an alpha
; channel if the cgImage command is acting like a smarter IDL
; TV command.
;-
FUNCTION cgImage_Prepare_Alpha, image, alphaBackgroundImage, $
ALPHABGPOSITION=alphabgpos, $
ALPHAFGPOSITION=alphafgpos, $
TV=tv
; Error handling.
Catch, theError
IF theError NE 0 THEN BEGIN
Catch, /Cancel
ok = cgErrorMsg()
IF Ptr_Valid(ptr) THEN BEGIN
image = Temporary(*ptr)
Ptr_Free, ptr
ENDIF
IF N_Elements(thisDevice) NE 0 THEN Set_Plot, thisDevice
RETURN, image
ENDIF
; Prepare an alpha image, if needed.
index = Where(Size(image,/DIMENSIONS) EQ 4)
CASE index OF
0: aImage = Transpose(image, [1,2,0])
1: aImage = Transpose(image, [0,2,1])
ELSE: aImage = image
ENDCASE
; Separate the alpha channel.
alpha_channel = aImage[*,*,3]
; If this is acting like a TV command, then there is no alpha channel.
; Exit now.
IF Keyword_Set(tv) THEN RETURN, aImage[*,*,0:2]
; Now we have an alpha channel.
alpha_channel = (alpha_channel / 255.0) * 1.0
foregndImage = aImage[*,*,0:2]
; Get the size and dimensions of the background image.
ndim = Size(alphaBackgroundImage, /N_DIMENSIONS)
CASE ndim OF
2: BEGIN
TVLCT, r, g, b, /GET
s = Size(alphaBackgroundImage, /DIMENSIONS)
bImage = BytArr(s[0], s[1], 3)
bImage[*,*,0] = r[alphaBackgroundImage]
bImage[*,*,1] = g[alphaBackgroundImage]
bImage[*,*,2] = b[alphaBackgroundImage]
END
3: BEGIN
index = Where(Size(alphaBackgroundImage,/DIMENSIONS) EQ 3)
CASE index OF
0: bImage = Transpose(alphaBackgroundImage, [1,2,0])
1: bImage = Transpose(alphaBackgroundImage, [0,2,1])
ELSE: bImage = alphaBackgroundImage
ENDCASE
END
ELSE: Message, 'Unexpected dimensions of the background image.'
ENDCASE
; I need a 24-bit image to work with. This is most easily done
; in the Z-Graphics buffer, set to work in 24-bit mode. Unfortunately,
; this mode was introduced in IDL 7, so I can't use it with IDL 6.4
; or earlier versions. I can, however, TRY to use a pixmap in earlier
; versions. I have reports that this works fine. So, I am modifying this
; section of code to get the 24-bit image I need out of a pixmap for versions
; of IDL before IDL 7.0.
thisRelease = Float(!Version.Release)
; Now that we have a background image, display that in
; the Z-Graphics buffer or in a pixmap if IDL 6.4 or earlier.
sb = Size(bImage, /DIMENSIONS)
sf = Size(foregndImage, /DIMENSIONS)
IF thisRelease GE 6.5 THEN BEGIN
thisDevice = !D.Name
Set_Plot, 'Z'
Device, Get_Decomposed=theState
Device, Set_Resolution=sb[0:1], Decomposed=1, Set_Pixel_Depth=24
ENDIF ELSE BEGIN
thisDevice = !D.Name
IF (thisDevice EQ 'PS') OR (thisDevice EQ 'Z') THEN BEGIN
IF StrUpCase(!Version.OS_Family) EQ 'WINDOWS' THEN setToDev = 'WIN' ELSE setToDev = 'X'
ENDIF
currentWindow = !D.Window
IF N_Elements(setToDev) NE 0 THEN Set_Plot, setToDev
cgDisplay, /FREE, /PIXMAP, sb[0], sb[1]
pixmap = !D.Window
ENDELSE
; Turn off !P.MULTI handling for this part.
multi = !P.Multi
!P.Multi = 0
IF N_Elements(alphabgpos) EQ 0 THEN BEGIN
cgImage, bImage
ENDIF ELSE BEGIN
cgImage, bImage, Position=alphabgpos
ENDELSE
!P.Multi = multi
; Calculate the parameters for taking a snapshot of the
; relevant portion of the window.
xstart = alphafgpos[0]*sb[0]
cols = Round((alphafgpos[2] - alphafgpos[0]) * sb[0])
ystart = alphafgpos[1]*sb[1]
rows = Round((alphafgpos[3] - alphafgpos[1]) * sb[1])
; Take a snapshot
bsnap = TVRD(xstart, ystart, cols, rows, TRUE=3)
; Get the size of the snapshot.
sb = Size(bsnap, /DIMENSIONS)
; Clean-up
IF thisRelease GE 6.5 THEN BEGIN
Device, Decomposed=theState
Set_Plot, thisDevice
ENDIF ELSE BEGIN
WDelete, pixmap
IF N_Elements(setToDev) NE 0 THEN Set_Plot, thisDevice
IF (currentWindow LE 0) AND ((!D.Flags AND 256) NE 0) THEN WSet, currentWindow
ENDELSE
; Make the foreground image the right size.
foregndImage = cgResizeImage(foregndImage, cols, rows)
alpha = cgResizeImage(alpha_channel, sb[0], sb[1], /INTERPOLATE)
alpha = Rebin(alpha, sb[0], sb[1], 3)
; Blend the two images in the location of the POSITION.
blendImage = foregndImage*alpha + (1 - alpha)*bsnap
; Now put this blended portion back into the background image.
outimage = bimage
outimage[xstart:xstart+cols-1, ystart:ystart+rows-1, *] = blendImage
; Put the dimensions back the way they came in.
index = Where(Size(foregndImage,/DIMENSIONS) EQ 3)
CASE index OF
0: outImage = Transpose(outImage, [2,0,1])
1: outImage = Transpose(outImage, [1,0,2])
ELSE: outImage = outImage
ENDCASE
RETURN, outimage
END
;--------------------------------------------------------------------------
;+
; This routine scales or otherwise prepares an image to be displayed.
;
; :Returns:
; Returns an image that can be displaye properly.
;
; :Params:
; image: in, required
; The input image that is being prepared for display.
; xsize: in, optional
; The output X size of the image.
; ysize: in, optional
; The output Y size of the image.
;
; :Keywords:
; bottom: in, optional, type=integer, default=0
; If the SCALE keyword is set, the image is scaled before display so that all
; displayed pixels have values greater than or equal to BOTTOM and less than
; or equal to TOP.
; beta: in, optional, type=float, default=3.0
; The beta factor in a Hyperpolic Sine stretch.
; clip: in, optional, type=float, default=2
; A number between 0 and 50 that indicates the percentage of pixels to clip
; off either end of the image histogram before performing a linear stretch.
; exclude: in, optional
; The value to exclude in a standard deviation stretch.
; exponent: in, optional, type=float, default=4.0
; The logarithm exponent in a logarithmic stretch.
; gamma: in, optional, type=float, default=1.5
; The gamma factor in a gamma stretch.
; interpolate: in, optional, type=boolean, default=0
; Set this keyword to interpolate with bilinear interpolation the display image as it
; is sized to its final position in the display window. Interpolation will potentially
; create image values that do not exist in the original image. The default is to do no
; interpolation, so that image values to not change upon resizing. Interpolation can
; result in smoother looking final images.
; maxvalue: in, optional, type=varies
; If this value is defined, the data is linearly scaled between MINVALUE
; and MAXVALUE. MAXVALUE is set to MAX(image) by default. Setting this
; keyword to a value automatically sets `SCALE` to 1. If the maximum value of the
; image is greater than 255, this keyword is defined and SCALE=1.
; mean: in, optional, type=float, default=0.5
; The mean factor in a logarithmic stretch.
; minus_one: in, optional, type=boolean, default=0
; The value of this keyword is passed along to the cgResizeImage
; command. It prevents cgResizeImage from adding an extra row and
; column to the resulting array, which can be a problem with
; small image arrays.
; minvalue: in, optional, type=varies
; If this value is defined, the data is linearly scaled between MINVALUE
; and `MAXVALUE`. MINVALUE is set to MIN(image) by default. Setting this
; keyword to a value automatically sets SCALE=1. If the minimum value of the
; image is less than 0, this keyword is defined and SCALE=1.
; missing_index: in, optional, type=integer, default=255
; The index of the missing color in the final byte scaled image.
; missing_value: in, optional, type=integer
; The number that represents the missing value in the image.
; multiplier: in, optional, type=float
; The multiplication factor in a standard deviation stretch. The standard deviation
; is multiplied by this factor to produce the thresholds for a linear stretch.
; negative: in, optional, type=boolean, default=0
; Set this keyword if you want to display the image with a negative or reverse stretch.
; scale: in, optional, type=boolean, default=0
; Set this keyword to byte scale the image before display. If this keyword is not set,
; the image is not scaled before display. This keyword will be set automatically by using
; any of the keywords normally associated with byte scaling an image.
; stretch: in, optional, type=integer/string, default=1
; The type of scaling performed prior to display.
; May be specified as a number or as a string (e.g, 4 or "Log").
;
; Number Type of Stretch
; 0 None No scaling whatsoever is done.
; 1 Linear scaled = BytScl(image, MIN=minValue, MAX=maxValue)
; 2 Clip A histogram stretch, with a percentage of pixels clipped at both the top and bottom
; 3 Gamma scaled = GmaScl(image, MIN=minValue, MAX=maxValue, Gamma=gamma)
; 4 Log scaled = LogScl(image, MIN=minValue, MAX=maxValue, Mean=mean, Exponent=exponent)
; 5 Asinh scaled = AsinhScl(image, MIN=minValue, MAX=maxValue, Beta=beta)
; 6 SquareRoot A linear stretch of the square root histogram of the image values.
; 7 Equalization A linear stretch of the histogram equalized image histogram.
; 8 Gaussian A Gaussian normal function is applied to the image histogram.
; 9 MODIS Scaling done in the differential manner of the MODIS Rapid Response Team
; and implemented in the Coyote Library routine ScaleModis.
; 10 StdDev A standard deviation stretch. scaled = SDevScl(image, Multiplier=2.0).
; sigma: in, optional, type=float, default=1.0
; The sigma scale factor in a Gaussian stretch.
; top: in, optional, type=integer, default=255
; If the SCALE keyword is set, the image is scaled before display so that all
; displayed pixels have values greater than or equal to BOTTOM and less than
; or equal to TOP.
;-
FUNCTION cgImage_Prepare_Output, image, xsize, ysize, $
BOTTOM=bottom, $
BETA=beta, $
CLIP=clip, $
EXCLUDE=exclude, $
EXPONENT=exponent, $
GAMMA=gamma, $
INTERPOLATE=interpolate, $
MAXVALUE=maxvalue, $
MEAN=mean, $
MINUS_ONE=minus_one, $
MINVALUE=minvalue, $
MISSING_INDEX=missing_index, $
MISSING_VALUE=missing_value, $
MULTIPLIER=multiplier, $
NEGATIVE=negative, $
SCALE=scale, $
STRETCH=stretch, $
SIGMA=sigma, $
TOP=top
Compile_Opt idl2
; Error handling.
Catch, theError
IF theError NE 0 THEN BEGIN
Catch, /Cancel
ok = cgErrorMsg()
RETURN, image
ENDIF
; I would like to avoid making a copy of the image, if possible.
; If nothing needs to be done, just return the image.
IF (N_Elements(xsize) EQ 0) && $
(N_Elements(missing_value) EQ 0) && $
~scale THEN RETURN, image
; Is there a missing value to worry about? We can only worry
; about missing values with 2D image arrays.
ndims = Size(image, /N_DIMENSIONS)
IF (N_Elements(missing_value) NE 0) && (ndims EQ 2) THEN BEGIN
; Get the image type.
imageType = Size(image, /TNAME)
; Create a temporary image variable. If you will be scaling the data,
; make the image a float if it is not float or double already.
CASE imageType OF
'FLOAT': tempImage = image
'DOUBLE': tempImage = image
ELSE: tempImage = Float(image)
ENDCASE
; The missing value may be the symbol for NAN.
IF Finite(missing_value) THEN BEGIN
missingIndices = Where(tempImage EQ missing_value, missingCnt)
ENDIF ELSE BEGIN
missingIndices = Where(Finite(tempImage) EQ 0, missingCnt)
ENDELSE
; Set the missing indices to the correct NAN value.
IF imageType EQ 'DOUBLE' THEN BEGIN
IF missingCnt GT 0 THEN tempImage[missingIndices] = !Values.D_NAN
ENDIF ELSE BEGIN
IF missingCnt GT 0 THEN tempImage[missingIndices] = !Values.F_NAN
ENDELSE
ENDIF
; Do you need scaling?
IF Keyword_Set(scale) || (stretch NE 0) THEN BEGIN
; Create a temporary image, if you don't already have one.
IF N_Elements(tempImage) EQ 0 THEN BEGIN
imageType = Size(image, /TNAME)
CASE imageType OF
'FLOAT': tempimage = image
'DOUBLE': tempimage = image
ELSE: tempImage = Float(image)
ENDCASE
ENDIF
; Select the particular kind of stretch you want to do. Unfortunately, we
; can still cause underflow error messages when doing stretch, despite best
; attempts to prevent this. Turn these messages off here.
curExcept = !Except
!Except = 0
CASE stretch OF
; 0 None No scaling whatsoever is done.
; 1 Linear scaled = BytScl(image, MIN=minValue, MAX=maxValue)
; 2 Clip A histogram stretch, with a percentage of pixels clipped at both the top and bottom
; 3 Gamma scaled = GmaScl(image, MIN=minValue, MAX=maxValue, Gamma=gamma)
; 4 Log scaled = LogScl(image, MIN=minValue, MAX=maxValue, Mean=mean, Exponent=exponent)
; 5 Asinh scaled = AsinhScl(image, MIN=minValue, MAX=maxValue, Beta=beta)
; 6 SquareRoot A linear stretch of the square root histogram of the image values.
; 7 Equalization A linear stretch of the histogram equalized image histogram.
; 8 Gaussian A Gaussian normal function is applied to the image histogram.
; 9 MODIS Scaling done in the differential manner of the MODIS Rapid Response Team
; 10 StdDev A standard deviation stretch.
0: ; No stretch at all.
1: BEGIN ; Linear stretch.
tempImage = BytScl(tempImage, Max=maxvalue, Min=minvalue, /NAN, TOP=top) + bottom
IF negative THEN tempImage = Byte(top) - tempImage
END
2: BEGIN ; Histogram clip stretch.
tempImage = ClipScl(tempImage, clip, OMIN=bottom, OMAX=top, NEGATIVE=negative)
END
3: BEGIN ; Gamma log scale stretch.
tempImage = GmaScl(tempImage, Max=maxvalue, Min=minvalue, $
Gamma=gamma, Negative=negative, OMAX=top, OMIN=bottom)
END
4: BEGIN ; Log scale stretch.
tempImage = LogScl(tempImage, Max=maxvalue, Min=minvalue, $
Mean=mean, Exponent=exponent, Negative=negative, $
OMIN=bottom, OMAX=top)
END
5: BEGIN ; Hyperpolic sine stretch.
tempImage = ASinhScl(tempImage, Max=maxvalue, Min=minvalue, $
BETA=beta, Negative=negative, OMAX=top, OMIN=bottom)
END
6: BEGIN ; Square Root stretch.
tempImage = BytScl(SQRT(tempImage), Max=maxvalue, Min=minvalue, /NAN, TOP=top) + bottom
IF negative THEN tempImage = Byte(top) - tempImage
END
7: BEGIN ; Histogram equalization stretch.
IF (top EQ 255) && (bottom EQ 0) THEN BEGIN
tempImage = Hist_Equal(tempImage, MaxV=maxvalue, MinV=minvalue)
ENDIF ELSE BEGIN
tempImage = Bytscl(Float(Hist_Equal(tempImage, MaxV=maxvalue, MinV=minvalue)), /NAN, TOP=top) + bottom
ENDELSE
IF negative THEN tempImage = Byte(top) - tempImage
END
8: BEGIN ; Gaussian stretch.
tempImage = GaussScl(tempImage, Max=maxvalue, Min=minvalue, $
Sigma=sigma, Negative=negative, OMIN=bottom, OMAX=top)
END
9: BEGIN ; MODIS image stretch.
tempImage = ScaleModis(tempImage)
END
10: BEGIN ; Standard deviation stretch.
tempImage = SDevScl(tempImage, MULTIPLIER=multiplier, EXCLUDE=exclude, $
Negative=negative, OMAX=top, OMIN=bottom)
END
ELSE: Message, 'Unknown scaling index.'
ENDCASE
; Clear the math error register and turn normal error checking on.
void = Check_Math()
!Except = curExcept
ENDIF
; After scaling, you may need to replace missing values with the
; missing index.
IF N_Elements(missingCnt) NE 0 THEN BEGIN
IF missingCnt GT 0 THEN tempImage[missingIndices] = missing_index
ENDIF
; If you created a temporary image, then return that.
; Otherwise you can return the original image, modified
; to the appropriate size.
IF N_Elements(tempImage) EQ 0 THEN BEGIN
IF (N_Elements(xsize) EQ 0) THEN BEGIN
RETURN, image
ENDIF ELSE BEGIN
RETURN, cgResizeImage(image, xsize, ysize, $
INTERP=interpolate, MINUS_ONE=minus_one)
ENDELSE
ENDIF ELSE BEGIN
IF (N_Elements(xsize) EQ 0) THEN BEGIN
RETURN, tempImage
ENDIF ELSE BEGIN
RETURN, cgResizeImage(tempImage, xsize, ysize, $
INTERP=interpolate, MINUS_ONE=minus_one)
ENDELSE
ENDELSE
END
;+
; The purpose of this program is to create a TV command that works the way
; the TV command would be expected to work if it was written today, rather
; than 25 years ago. In other words, it knows the difference between an
; 8-bit device and a 24-bit device, it honors the POSITION keyword like
; other graphics commands in IDL, it honors the !P.MULTI value, like other
; graphics commands in IDL, it works seamlessly with both 8-bit and 24-bit
; images. In addition to other modern features, this program can also
; display images that contain an alpha channel and can display transparent
; images.
;
; Also, two-dimensional image arrays can be manipulated, stretched,
; and scaled directly with keywords to cgImage. These keywords do not
; work with alpha channel images, or if the TV keyword is used with
; cgImage.
;
; :Params:
; image: in, required, type=various
; An 8-bit (MxN), 24-bit (e.g., MxNx3), or a 24-bit + alpha channel
; (e.g., MxNx4) image to display.
; x: in, optional, type=integer
; The X position of the lower-left corner of the image in device
; coordinates. This parameter is only recognized if the TV keyword
; is set. If the Y position is not used, X is taken to be the image
; "position" in the window. See the TV command documenation for details.
; y: in, optional, type=integer
; The Y position of the lower-left corner of the image in device
; coordinates. This parameter is only recognized if the TV keyword
; is set.
;
; :Keywords:
; addcmd: in, optional, type=boolean, default=0
; Set this keyword to add this command to an already open cgWindow to
; be executed when the window is resized. If the DISPLAY keyword is also
; set, this keyword will act as if the WINDOW keyword were set.
; alphabackgroundimage: in, optional, type=varies
; Normally, when a image with an alpha channel is displayed, the image is
; blended with whatever is currently in the display window. This means, the
; program has to obtain that background image. This is not a problem on devices
; (e.g., WIN, X, Z) that allow this kind of operation, but it is on devices
; (e.g., the PostScript device, PS) that do not. To get around this problem,
; you can pass the background image to the cgImage program. This background image
; will be blended with the alpha channel image you wish to display. If an alpha
; channel image is displayed on a device in which there is no way to obtain the
; background image, and this keyword is not used to pass a background image, then
; the alpha channel image will be blended with a white background image.
; This keyword is only used if an alpha channel image is passed to the
; program via the IMAGE parameter. The AlphaBackgroundImage does not need
; to have the same dimensions as the alpha channel image. The background image
; can be either a 2D image or a 24-bit image.
; alphabgposition: in, optional, type=fltarr(4)
; The normalized position or portion of the background image that is going to be used
; to create the alpha channel image. Normally, and by default, the alphabgposition encompasses
; the entire graphics window, [0.0, 0.0, 1.0, 1.0].
; alphafgposition: in, optional, type=fltarr(4)
; The normalized position in the background image where the input image is to be located.
; By default, the input image takes up the entire extent of the background image, [0.0, 0.0, 1.0, 1.0].
; axis: in, optional, type=boolean, default=0
; A misspelled version of the AXES keyword. Provided as a service to people whose
; fingers have minds of their own.
; axes: in, optional, type=boolean, default=0
; Set this keyword to display the image with axes surrounding the image. If the POSITION
; keyword is not used, a MARGIN of 0.1 is used to allow the axes to show. If you wish
; to make the image fit entirely inside the axes, set the `FIT_INSIDE` keyword. Otherwise,
; the axis sit on top of the image data.
; axkeywords: in, optional, type=structure
; A structure of AXIS keywords and values that can be used to configure the axes
; in whatever way the user desires. Many of the most often used axis keywords are available
; as cgImage keywords. For example::
; IDL> axis_format = {XTicks:4, XTickname:['Cow', 'Pig', 'Dog', 'Cat', 'Owl']}
; IDL> cgImage, cgDemoData(7), AXKEYWORDS=axis_format, /Axes, XRange=[0,20]
; background: in, optional, type=string, default='white'
; The name of the background color for the image display. Unlike the TV command in IDL,
; the cgImage command will erase the display before executing the command like other
; fundamental graphics commands (e.g., Plot, Contour, Surface) in IDL.
; beta: in, optional, type=float, default=3.0
; The beta factor in a Hyperpolic Sine stretch. Available only with 2D images.
; bottom: in, optional, type=integer, default=0
; If the SCALE keyword is set, the image is scaled before display so that all
; displayed pixels have values greater than or equal to BOTTOM and less than
; or equal to TOP. Available only with 2D images.
; brewer: in, optional, type=boolean, default=0
; This keyword is used only if the `CTIndex` keyword is used to select a color table number.
; Setting this keyword allows Brewer color tables to be used.
; charsize: in, optional, type=float
; Sets the character size. Used only if the AXES keyword is also set. By default,
; the value from cgDefCharsize().
; clip: in, optional, type=float, default=2
; A number between 0 and 50 that indicates the percentage of pixels to clip
; off either end of the image histogram before performing a linear stretch.
; Available only with 2D images.
; color: in, optional, type=string, default='opposite'
; The name of the color in which to draw the axes. Used only if the `AXES` keyword is set.
; ctindex: in, optional, type=integer
; The index number of a color table. The `Brewer` and `Reverse` keywords will be checked
; to see how to load the color table into the `Palette` keyword. This keyword will take
; precidence over any colors that are loaded with the `Palette` keyword. The default is
; to use whatever colors are loaded in the current hardware color table.
; display: in, optional, type=boolean, default=0
; If this keyword is set, a new display window is created (with cgDisplay) that has the
; same aspect ratio as the image. The image is displayed in that window. If the WINDOW
; keyword is also set, a new cgWindow is created with the WASPECT keyword set to the image
; aspect ratio, and the image is displayed in that new cgwindow.
; erase: in, optional, type=boolean, default=1
; An obsolete keyword. Used only for compatibility with the earlier TVImage command. The
; default for cgImage is to always erase the graphics display before displaying the image
; unless told otherwise by setting the `NOERASE` keyword. This makes cgImage consistent with
; other IDL graphics commands.
; exclude: in, optional
; The value to exclude in a standard deviation stretch.
; exponent: in, optional, type=float, default=4.0
; The logarithm exponent in a logarithmic stretch. Available only with 2D images.
; filename: in, optional, type=string
; The name of a file that IDL can read with READ_IMAGE (e.g, GEOTIFF, TIF, JPEG, PNG, etc.).
; The file is read to obtain the image to be displayed.
; fit_inside: in, optional, type=boolean, default=0
; When the AXES keyword is set, the default is to position the axes on top of the image
; using the POSITION. However, if this keyword is set, the axes are positioned at POSITION
; and the image is sized so that it fits entirely inside the axes.
; font: in, optional, type=integer
; This keyword selects the font used for axis and title display. The default is to use
; the value of !P.Font.
; gamma: in, optional, type=float, default=1.5
; The gamma factor in a gamma stretch. Available only with 2D images.
; interpolate: in, optional, type=boolean, default=0
; Set this keyword to interpolate with bilinear interpolation the display image as it
; is sized to its final position in the display window. Interpolation will potentially
; create image values that do not exist in the original image. The default is to do no
; interpolation, so that image values to not change upon resizing. Interpolation can
; result in smoother looking final images.
; keep_aspect_ratio: in, optional, type=boolean, default=0
; By default, the output image is resized into the `POSITION` in the graphics window.
; This can result in a distortion of the image aspect ratio (the Y size of the image
; divided by the X size of the image). Setting this keyword will preserve the original
; aspect ratio of the image in the output display window. In effect, the image will
; be placed in the window `POSITION` in a way that preserves its aspect ratio. The
; actual final location of the image in the display window can be obtained via the
; `OPOSITION` keyword.
; layout: in, optional, type=intarr
; This keyword specifies a grid with a graphics window and determines
; where the graphic should appear. The syntax of LAYOUT is a 3-element
; array: [ncolumns, nrows, location]. The grid is determined by the
; number of columns (ncolumns) by the number of rows (nrows). The location
; of the graphic is determined by the third number. The grid numbering
; starts in the upper left (1) and goes sequentually by column and then
; by row. Note that using the LAYOUT keyword automatically sets the NOERASE
; keyword to 1.
; mapcoord: in, optional, type=object
; An object reference to a map coordinate object (e.g., cgMap). If present, the
; XRANGE and YRANGE keyword values will be obtained from this map object, if they
; are not defined otherwise.
; margin: in, optional, type=float, default=0.0
; A single value, expressed as a normalized coordinate, that
; can easily be used to calculate a position in the window.
; The margin is used to calculate a `POSITION` that gives
; the image an equal margin around the edge of the window.
; The margin must be a number in the range 0.0 to 0.333. This
; keyword is ignored if the `POSITION` or `OVERPLOT` keywords are
; used. It is also ignored when cgImage is executed in a
; multi-plot window, EXCEPT if it's value is zero. In this
; special case, the image will be drawn into its position in
; the multi-plot window with no margins whatsoever. (The
; default is to have a slight margin about the image to separate
; it from other images or graphics. The default margin is 0.05.)
; maxvalue: in, optional, type=varies
; If this value is defined, the data is linearly scaled between MINVALUE
; and MAXVALUE. MAXVALUE is set to MAX(image) by default. Setting this
; keyword to a value automatically sets `SCALE` to 1. If the maximum value of the
; image is greater than 255, this keyword is defined and SCALE=1.
; mean: in, optional, type=float, default=0.5
; The mean factor in a logarithmic stretch. Available only with 2D images.
; minus_one: in, optional, type=boolean, default=0
; The value of this keyword is passed along to the cgResizeImage
; command. It prevents cgResizeImage from adding an extra row and
; column to the resulting array, which can be a problem with
; small image arrays.
; minvalue: in, optional, type=varies
; If this value is defined, the data is linearly scaled between MINVALUE
; and `MAXVALUE`. MINVALUE is set to MIN(image) by default. Setting this
; keyword to a value automatically sets SCALE=1. If the minimum value of the
; image is less than 0, this keyword is defined and SCALE=1.
; missing_color: in, optional, type=string, default='white'
; The color name of the missing value. Available only with 2D images.
; missing_index: in, optional, type=integer, default=255
; The index of the missing color in the final byte scaled image. Available only with 2D images.
; missing_value: in, optional, type=integer
; The number that represents the missing value in the image. Available only with 2D images.
; multimargin: in, optional, type=varies
; Sometimes, when displaying multiple images with !P.Multi, you
; want the images to be slightly smaller than the position created
; by !P.Multi so you can add, for example, a colorbar or an annotation
; to the image. This keyword can be used to adjust the image position
; by a small margin. A four-element array, the margins apply to the
; [bottom, left, top, right] of the image position. So, to
; leave room at the top of an image for a color bar, you might
; type this::
;
; cgImage, image, MultiMargin=[0, 0, 4, 0]
;
; This keyword applies *only* to images displayed with !P.Multi, and if
; passed a scalar value, will use the same value for all four positions.
; multiplier: in, optional, type=float
; The multiplication factor in a standard deviation stretch. The standard deviation
; is multiplied by this factor to produce the thresholds for a linear stretch.
; ncolors: in, optional, type=integer, default=256
; If this keyword is supplied, the `TOP` keyword is ignored and the TOP keyword
; is set equal to NCOLORS-1. This keyword is provided to make cgImgScl easier
; to use with the color-loading programs such as cgLOADCT::
;
; cgLoadCT, 5, NColors=100, Bottom=100
; scaled = cgImgScl(image, NColors=100, Bottom=100)
;
; Setting this keyword to a value automatically sets SCALE=1 and STRETCH='LINEAR', if not
; defined otherwise. Available only with 2D images.
; negative: in, optional, type=boolean, default=0
; Set this keyword if you want to display the image with a negative or reverse stretch.
; Available only with 2D images.
; noerase: in, optional, type=boolean, default=0
; Set this keyword to prevent the command from first erasing the graphics
; display before displaying the image.
; nointerpolation: in, optional, type=boolean, default=0
; This is an obsolete keyword that is included here only for compatibility with
; the older TVImage command. Use the `INTERPOLATE` keyword.
; normal: in, optional, type=boolean, default=0
; Setting this keyword means image position coordinates x and y are interpreted
; as being in normalized coordinates. This keyword is only valid if the TV
; keyword is set.
; oposition: out, optional, type=float
; Set this keyword to a named variable to obtain the actual position in the
; graphics window where the image was located. The output position may be
; different from the input `POSITION`, especially if the `KEEP_ASPECT_RATIO`
; keyword is set. Note that the output position is also stored in a
; FSC_$CGIMAGE common block so that other programs (e.g., cgMap, cgImageInfo,
; etc.) can take advantage of this information.
; outfilename: in, optional, type=string
; If the `Output` keyword is set, the user will be asked to supply an output
; filename, unless this keyword is set to a non-null string. In that case, the
; value of this keyword will be used as the filename and there will be no dialog
; presented to the user.
; output: in, optional, type=string, default=""
; Set this keyword to the type of output desired. Possible values are these::
;
; 'PS' - PostScript file
; 'EPS' - Encapsulated PostScript file
; 'PDF' - PDF file
; 'BMP' - BMP raster file
; 'GIF' - GIF raster file
; 'JPEG' - JPEG raster file
; 'PNG' - PNG raster file
; 'TIFF' - TIFF raster file
;
; Or, you can simply set this keyword to the name of the output file, and the type of
; file desired will be determined by the file extension. If you use this option, the
; user will not be prompted to supply the name of the output file.
;
; All raster file output is created through PostScript intermediate files (the
; PostScript files will be deleted), so ImageMagick and Ghostview MUST be installed
; to produce anything other than PostScript output. (See cgPS2PDF and cgPS_Close for
; details.) And also note that you should NOT use this keyword when doing multiple
; plots. The keyword is to be used as a convenient way to get PostScript or raster
; output for a single graphics command. Output parameters can be set with cgWindow_SetDefs.
; overplot: in, optional, type=boolean, default=0
; Setting this keyword causes the POSITION keyword to be ignored
; and the image is positioned in the location established by the
; last graphics command. If the XRange and YRange keywords are also
; used, the image position is adjusted with respect to the current axes
; range. Setting this keyword also sets the NoErase keyword, if it is not currently set.
; It is assumed that the overplotted images fits entirely inside or is coincident with the
; position or range of the previous image. If not, an informational error is generated and
; the position is forced into the range of 0 to 1.
; palette: in, optional, type=byte
; Set this keyword to a 3x256 or 256x3 byte array containing the RGB color
; vectors to be loaded before the image is displayed. Such vectors can be
; obtained, for example, from cgLoadCT with the RGB_TABLE keyword::
;
; cgLoadCT, 4, /BREWER, /REVERSE, RGB_TABLE=palette
; cgImage, cgDemoData(7), PALETTE=palette
; position: in, optional, type=float
; The location of the image in the output window. This is a four-element
; floating array of normalized coordinates of the type given by !P.POSITION
; or the POSITION keyword to other IDL graphics commands. The form is [x0, y0, x1, y1].
; The default is [0.0, 0.0, 1.0, 1.0]. Note that this keyword is ALSO an output
; keyword. That is to say, upon return from cgImage this keyword (if passed by
; reference) contains the actual position in the window where the image was
; displayed. This may be different from the input values if the KEEP_ASPECT_RATIO
; keyword is set, or if you are using cgImage with the POSITION keyword when !P.MULTI
; is set to something other than a single plot. Note that the POSITION keyword should
; not, normally, be used when displaying multiple images with !P.MULTI. If it is used,
; its meaning differs slightly from its normal meaning. !P.MULTI is responsible for
; calculating the position of graphics in the display window. Normally, it would be a
; mistake to use a POSITION graphics keyword on a graphics command that was being drawn with
; !P.MULTI. But in this special case, cgImage will use the POSITION coordinates to calculate
; an image position in the actual position calculated for the image by !P.MULTI. The main
; purpose of this functionality is to allow the user to display images along with
; color bars when using !P.MULTI.
; quiet: in, optional, type=boolean, default=0
; There are situations when you would prefer that cgIMAGE does not advertise itself by
; filling out the FSC_$CGIMAGE common block. For example, if you are using cgImage to
; draw a color bar, it would not be necessary. Setting this keyword means that cgImage
; just goes quietly about it's business without bothering anyone else.
; reverse: in, optional, type=boolean, default=0
; Set this keyword to reverse the color table vectors selected with the `CTIndex` keyword.
; save: in, optional, type=boolean, default=0
; Set this to cause a data coordinate system to be established for the image. The XRANGE
; and YRANGE keyword values will be used to establish a data coordinate system coincident
; with the final image position. Setting the `AXES` keyword automatically sets SAVE=1.
; scale: in, optional, type=boolean, default=0
; Set this keyword to byte scale the image before display. If this keyword is not set,
; the image is not scaled before display. This keyword will be set automatically by using
; any of the keywords normally associated with byte scaling an image. Available only with
; 2D images. If set, STRETCH is set to 1, unless it is set to another value.
; stretch: in, optional, type=integer/string, default=0
; The type of scaling performed prior to display. May be specified as a number
; or as a string (e.g, 3 or "Log"). Available only with 2D images. If Min(image)
; is less than zero or Max(image) is greater than 255, then the default value for
; stretch is 1.
;
; Number Type of Stretch::
; 0 None No scaling whatsoever is done.
; 1 Linear scaled = BytScl(image, MIN=minValue, MAX=maxValue)
; 2 Clip A histogram stretch, with a percentage of pixels clipped at both the top and bottom
; 3 Gamma scaled = GmaScl(image, MIN=minValue, MAX=maxValue, Gamma=gamma)
; 4 Log scaled = LogScl(image, MIN=minValue, MAX=maxValue, Mean=mean, Exponent=exponent)
; 5 Asinh scaled = AsinhScl(image, MIN=minValue, MAX=maxValue, Beta=beta)
; 6 SquareRoot A linear stretch of the square root histogram of the image values.
; 7 Equalization A linear stretch of the histogram equalized image histogram.
; 8 Gaussian A Gaussian normal function is applied to the image histogram.
; 9 MODIS Scaling done in the differential manner of the MODIS Rapid Response Team
; and implemented in the Coyote Library routine ScaleModis.
; 10 StdDev Standard deviation stretch. scaled = SDevScl(image, MULTIPLIER=2).
;
; sigma: in, optional, type=float, default=1.0
; The sigma scale factor in a Gaussian stretch. Available only with 2D images.
; title: in, optional, type=string, default=""
; Set this keyword to the title of the image plot. No title will appear with the
; image unless the `AXES` keyword is also set.
; top: in, optional, type=integer, default=255
; If the SCALE keyword is set, the image is scaled before display so that all
; displayed pixels have values greater than or equal to BOTTOM and less than
; or equal to TOP. Available only with 2D images.
; transparent: in, optional, type=integer, default=50
; A number between 0 and 100 that specifies the percent of transparency between the
; image being displayed and the background image. Displaying a transparent image does
; not advance !P.Multi.
; tv: in, optional, type=boolean, default=0
; Setting this keyword makes the cgImage command work much like the brain-dead
; TV command except that it will get colors right on all output devices. Most of
; the cgImage keywords are ignored if this keyword is set.
; window: in, optional, type=boolean, default=0
; Set this keyword to replace all the commands in a current cgWindow or to
; create a new cgWindow for displaying this command. If the DISPLAY keyword is
; also set, a new cgWindow will be created.
; xrange: in, optional, type=fltarr(2)
; A two element array giving the X range of the image. By default set to
; [0, size of image in X].
; xtitle: in, optional, type=string, default=""
; The X title of the image plot. Used only if `AXES` is set.
; yrange: in, optional, type=fltarr(2)
; A two element array giving the Y range of the image. By default set to
; [0, size of image in Y].
; ytitle: in, optional, type=string, default=""
; The Y title of the image plot. Used only if `AXES` is set.
; _ref_extra: in, optional, type=varies
; Any keywords defined for the TV command can be used. This applies only
; if the TV keyword is set.
;-
PRO cgImage, image, x, y, $
ADDCMD=addcmd, $
ALPHABACKGROUNDIMAGE=alphaBackgroundImage, $
ALPHABGPOSITION=alphabgpos, $
ALPHAFGPOSITION=alphafgpos, $
AXIS=axis, $
AXES=axes, $
AXKEYWORDS=axkeywords, $
BACKGROUND=background, $
BOTTOM=bottom, $
BETA=beta, $
BREWER=brewer, $
CHARSIZE=charsize, $
CLIP=clip, $
COLOR=color, $
CTINDEX=ctindex, $
DISPLAY=display, $ ; Make sure this keyword is NOT is the list of keywords passed to cgWindow.
ERASE=obsolete_erase, $ ; Added for compatibility with TVIMAGE.
EXCLUDE=exclude, $
EXPONENT=exponent, $
FILENAME=filename, $
FIT_INSIDE=fit_inside, $
FONT=font, $
GAMMA=gamma, $
INTERPOLATE=interpolate, $
KEEP_ASPECT_RATIO=keep_aspect, $
LAYOUT=layout, $
MAPCOORD=mapcoord, $
MARGIN=margin, $
MAXVALUE=max, $
MEAN=mean, $
MISSING_COLOR=missing_color, $
MISSING_INDEX=missing_index, $
MISSING_VALUE=missing_value, $
NEGATIVE=negative, $
MINUS_ONE=minusOne, $
MINVALUE=min, $
MULTIMARGIN=multimargin, $
MULTIPLIER=multiplier, $
NCOLORS=ncolors, $
NOERASE=noerase, $
NOINTERPOLATION=obsolete_nointerpolation, $ ; Added for compatibility with TVIMAGE.
NORMAL=normal, $
OUTFILENAME=outfilename, $
OUTPUT=output, $
OPOSITION=oposition, $
OVERPLOT=overplot, $
PALETTE=palette, $
POSITION=position, $
QUIET=quiet, $
REVERSE=reverse, $
SAVE=save, $
SCALE=scale, $
SIGMA=sigma, $
STRETCH=stretch, $
TITLE=title, $
TOP=top, $
TRANSPARENT=transparent, $
TV=tv, $
WINDOW=window, $
XRANGE=plotxrange, $
XTITLE=plotxtitle, $
YRANGE=plotyrange, $
YTITLE=plotytitle, $
_REF_EXTRA=extra
; Error handling.
Catch, theError
IF theError NE 0 THEN BEGIN
Catch, /Cancel
ok = cgErrorMsg()
IF N_Elements(thisMulti) NE 0 THEN !P.Multi = thisMulti
IF transparentImage THEN image = oldImage
RETURN
ENDIF
; Check parameters.
IF (N_Params() EQ 0) && (N_Elements(filename) EQ 0) THEN BEGIN
Print, 'USE SYNTAX: cgImage, image'
RETURN
ENDIF
; Was a filename used to pass in an image filename? Check to see if this is a GeoTiff image
; before doing anything else. If it is, use cgGeoMap to read it. Otherwise, read the image
; file with READ_IMAGE.
IF N_Elements(filename) NE 0 THEN BEGIN
check = Query_Tiff(filename, GEOTIFF=geo)
IF (check EQ 1) && (Size(geo, /TNAME) EQ 'STRUCT') THEN BEGIN
mapCoord = cgGeoMap(filename, IMAGE=image, Palette=palette)
ENDIF ELSE BEGIN
image = Read_Image(filename, r, g, b)
IF N_Elements(r) NE 0 THEN palette = [[r],[g],[b]]
ENDELSE
ENDIF
; Handle obsolete keywords.
IF N_Elements(obsolete_erase) NE 0 THEN noerase = 1 - obsolete_erase
IF N_Elements(obsolete_nointerpolation) NE 0 THEN interp = 1 - obsolete_nointerpolation
; Set up a common block as input to cgImageInfo.
COMMON FSC_$CGIMAGE, _cgimage_xsize, $ ; The X size of the image.
_cgimage_ysize, $ ; The Y size of the imge.
_cgimage_winxsize, $ ; The X size of the window displaying the image.
_cgimage_winysize, $ ; The Y size of the window displaying the image.
_cgimage_position, $ ; The final position of the image in the window.
_cgimage_winID, $ ; The window index number of the window displaying the image.
_cgimage_current ; Set to 1 if a call to cgImage is made.
; Add the command to cgWindow?
IF Keyword_Set(addcmd) THEN BEGIN
noerase = 1
window = 1
ENDIF
; Do we want to display the image in a window with the proper aspect ratio?
IF Keyword_Set(display) THEN BEGIN
; Are we making a cgWindow?
IF Keyword_Set(window) THEN BEGIN
dims = Image_Dimensions(image, XSIZE=xsize, YSIZE=ysize)
imgaspect = Float(ysize) / xsize
cgWindow, WASPECT=imgaspect
addcmd = 0
noerase = 0
ENDIF ELSE BEGIN
IF ~Keyword_Set(addcmd) THEN cgDisplay, /Free, ASPECT=image
ENDELSE
ENDIF
; If we want a cgWindow and we can make windows in this device, do so now.
IF Keyword_Set(window) AND ((!D.Flags AND 256) NE 0) THEN BEGIN
currentWindow = cgQuery(/CURRENT, COUNT=wincnt)
IF wincnt EQ 0 THEN replaceCmd = 0 ELSE replaceCmd=1
; If you are using a layout, you can't ever erase.
IF N_Elements(layout) NE 0 THEN noerase = 1
; If we are adding a command, we have to do something different.
IF Keyword_Set(addcmd) THEN BEGIN
cgWindow, 'cgImage', image, x, y, $
ALPHABACKGROUNDIMAGE=alphaBackgroundImage, $
ALPHABGPOSITION=alphabgpos, $
ALPHAFGPOSITION=alphafgpos, $
AXIS=axis, $
AXES=axes, $
AXKEYWORDS=axkeywords, $
BACKGROUND=background, $
BOTTOM=bottom, $
BETA=beta, $
BREWER=brewer, $
CHARSIZE=charsize, $
CLIP=clip, $
COLOR=color, $
CTINDEX=ctindex, $
ERASE=obsolete_erase, $ ; Added for compatibility with TVIMAGE.
EXCLUDE=exclude, $
EXPONENT=exponent, $
FILENAME=filename, $
FIT_INSIDE=fit_inside, $
FONT=font, $
GAMMA=gamma, $
INTERPOLATE=interpolate, $
KEEP_ASPECT_RATIO=keep_aspect, $
LAYOUT=layout, $
MAPCOORD=mapcoord, $
MARGIN=margin, $
MAXVALUE=max, $
MEAN=mean, $
MISSING_COLOR=missing_color, $
MISSING_INDEX=missing_index, $
MISSING_VALUE=missing_value, $
MINUS_ONE=minusOne, $
MINVALUE=min, $
MULTIMARGIN=multimargin, $
MULTIPLIER=multiplier, $
NCOLORS=ncolors, $
NEGATIVE=negative, $
NOERASE=noerase, $
NOINTERPOLATION=obsolete_nointerpolation, $ ; Added for compatibility with TVIMAGE.
NORMAL=normal, $
OPOSITION=oposition, $
OVERPLOT=overplot, $
PALETTE=palette, $
POSITION=position, $
QUIET=quiet, $
REVERSE=reverse, $
SAVE=save, $
SCALE=scale, $
SIGMA=sigma, $
STRETCH=stretch, $
TITLE=title, $
TOP=top, $
TRANSPARENT=transparent, $
TV=tv, $
XRANGE=plotxrange, $
XTITLE=plotxtitle, $
YRANGE=plotyrange, $
YTITLE=plotytitle, $
ADDCMD=1, $
_EXTRA=extra
RETURN
ENDIF
; Otherwise, we are replacing the commands in a new or existing window.
cgWindow, 'cgImage', image, x, y, $
ALPHABACKGROUNDIMAGE=alphaBackgroundImage, $
ALPHABGPOSITION=alphabgpos, $
ALPHAFGPOSITION=alphafgpos, $
AXIS=axis, $
AXES=axes, $
AXKEYWORDS=axkeywords, $
BACKGROUND=background, $
BOTTOM=bottom, $
BETA=beta, $
BREWER=brewer, $
CHARSIZE=charsize, $
CLIP=clip, $
COLOR=color, $
CTINDEX=ctindex, $
ERASE=obsolete_erase, $ ; Added for compatibility with TVIMAGE.
EXCLUDE=exclude, $
EXPONENT=exponent, $
FILENAME=filename, $
FIT_INSIDE=fit_inside, $
FONT=font, $
GAMMA=gamma, $
INTERPOLATE=interpolate, $
KEEP_ASPECT_RATIO=keep_aspect, $
LAYOUT=layout, $
MAPCOORD=mapcoord, $
MARGIN=margin, $
MAXVALUE=max, $
MEAN=mean, $
MISSING_COLOR=missing_color, $
MISSING_INDEX=missing_index, $
MISSING_VALUE=missing_value, $
MINUS_ONE=minusOne, $
MINVALUE=min, $
MULTIMARGIN=multimargin, $
MULTIPLIER=multiplier, $
NCOLORS=ncolors, $
NEGATIVE=negative, $
NOERASE=noerase, $
NOINTERPOLATION=obsolete_nointerpolation, $ ; Added for compatibility with TVIMAGE.
NORMAL=normal, $
OPOSITION=oposition, $
OVERPLOT=overplot, $
PALETTE=palette, $
POSITION=position, $
QUIET=quiet, $
REVERSE=reverse, $
SAVE=save, $
SCALE=scale, $
SIGMA=sigma, $
STRETCH=stretch, $
TITLE=title, $
TOP=top, $
TRANSPARENT=transparent, $
TV=tv, $
XRANGE=plotxrange, $
XTITLE=plotxtitle, $
YRANGE=plotyrange, $
YTITLE=plotytitle, $
REPLACECMD=replacecmd, $
_EXTRA=extra
RETURN
ENDIF
; Obtain information about the size of the image.
void = Image_Dimensions(image, XSIZE=imgXSize, YSIZE=imgYSize)
; Doing multiple plots?
IF (Total(!P.Multi) GT 0) || (N_Elements(layout) NE 0) THEN multi = 1 ELSE multi = 0
; Did you specify a color table index?
TVLCT, r_start, g_start, b_start, /Get
IF N_Elements(ctindex) NE 0 THEN BEGIN
cgLoadCT, ctindex, Reverse=reverse, Brewer=brewer, RGB_TABLE=palette
ENDIF
; If the missing_value (or missing_color) and noerase keywords are set, then
; the transparent keyword should be defined and set to zero transparency.
IF ((N_Elements(missing_value) NE 0) || ( N_Elements(missing_color) NE 0) ) $
&& (N_Elements(transparent) EQ 0) && (N_Elements(missing_index) EQ 0) THEN transparent = 0
; If transparent is turned on, and you are not overplotting, and you have a position in the window, then
; you have to adjust alphafgpos and position.
IF (N_Elements(transparent) NE 0) && ~Keyword_Set(overplot) && (N_Elements(position) NE 0) THEN BEGIN
IF (N_Elements(alphafgpos) EQ 0) THEN BEGIN
restorePosition = position
alphafgpos = position
position = [0,0,1,1]
Message, 'POSITION keyword value switched to ALPHAFGPOS because TRANSPARENT keyword is set.', /Informational
ENDIF
ENDIF
; Load the color palette if you are using one.
IF N_Elements(palette) NE 0 THEN BEGIN
IF Size(palette, /N_DIMENSIONS) NE 2 THEN Message, 'Color palette is not a 3xN array.'
dims = Size(palette, /DIMENSIONS)
threeIndex = Where(dims EQ 3)
IF ((threeIndex)[0] LT 0) THEN Message, 'Color palette is not a 3xN array.'
IF threeIndex[0] EQ 0 THEN palette = Transpose(palette)
TVLCT, p_red, p_grn, p_blu, /Get ; Save the color vectors before loading the palette.
ENDIF
; Are we doing a transparent image? Please scale the image before passing
; it into cgImage.
transparentImage = 0
IF N_Elements(transparent) NE 0 THEN BEGIN
; Do you need a window?
IF ((!D.Flags AND 256) NE 0) && (!D.Window LT 0) THEN cgDisplay
transparent = 0 > transparent < 100
oldImage = image
scaledImage = cgImgScl(image, $
BOTTOM=bottom, $
BETA=beta, $
CLIP=clip, $
EXCLUDE=exclude, $
EXPONENT=exponent, $
GAMMA=gamma, $
INTERPOLATE=interpolate, $
MAXVALUE=maxvalue, $
MEAN=mean, $
MINUS_ONE=minus_one, $
MINVALUE=minvalue, $
MISSING_INDEX=missing_index, $
MISSING_VALUE=missing_value, $
MULTIPLIER=multiplier, $
NCOLORS=ncolors, $
NEGATIVE=negative, $
SCALE=scale, $
STRETCH=stretch, $
SIGMA=sigma, $
TOP=top)
transImage = cgImage_Make_Transparent_Image(scaledImage, transparent, $
MISSING_VALUE=missing_index, $
PALETTE=palette, $
SUCCESS=success)
IF success THEN BEGIN
transparentImage = 1
image = transImage
IF (N_Elements(alphabackgroundimage) EQ 0) THEN BEGIN
IF !D.Name NE "PS" THEN BEGIN
alphabackgroundimage = cgSnapshot(POSITION=[0,0,1,1])
ENDIF ELSE Message, 'An AlphaBackgroundImage is required to create transparent images in PostScript.'
ENDIF
IF ~multi THEN IF N_Elements(alphabgpos) EQ 0 THEN alphabgpos = [0,0,1,1]
IF ~multi THEN IF N_Elements(alphafgpos) EQ 0 THEN alphafgpos = [0,0,1,1]
IF ~multi THEN IF N_Elements(position) EQ 0 THEN position= [0,0,1,1]
noerase = 1
ENDIF ELSE BEGIN
image = oldImage
RETURN
ENDELSE
ENDIF
; Need a data range? Set it up if you have a map coordinate object. Otherwise,
; we will handle it later.
IF N_Elements(plotxrange) EQ 0 THEN BEGIN
IF Obj_Valid(mapCoord) THEN BEGIN
mapCoord -> GetProperty, XRANGE=plotxrange
save = 1
ENDIF
ENDIF ELSE save = 1
IF N_Elements(plotyrange) EQ 0 THEN BEGIN
IF Obj_Valid(mapCoord) THEN BEGIN
mapCoord -> GetProperty, YRANGE=plotyrange
save = 1
ENDIF
ENDIF ELSE save = 1
; Are we doing some kind of output?
IF (N_Elements(output) NE 0) && (output NE "") THEN BEGIN
; If the output string has a dot character, then this must be a
; filename, and we will determine the type of file from the filename extension.
IF StrPos(output, '.') NE -1 THEN BEGIN
root_name = cgRootName(output, DIRECTORY=theDir, EXTENSION=ext)
IF theDir EQ "" THEN CD, CURRENT=theDir
outfilename = output
outputSelection = StrUpCase(ext)
ENDIF
IF N_Elements(outputSelection) EQ 0 THEN outputSelection = StrUpCase(output)
typeOfOutput = ['PS','EPS','PDF','BMP','GIF','JPEG','JPG','PNG','TIFF', 'TIF']
void = Where(typeOfOutput EQ outputSelection, count)
IF count EQ 0 THEN Message, 'Cannot find ' + outputSelection + ' in allowed output types.'
; Set things up.
CASE outputSelection OF
'PS': BEGIN
ext = '.ps'
delete_ps = 0
END
'EPS': BEGIN
ext = '.eps'
encapsulated = 1
delete_ps = 0
END
'PDF': BEGIN
ext = '.pdf'
pdf_flag = 1
delete_ps = 1
END
'BMP': BEGIN
ext = '.bmp'
bmp_flag = 1
delete_ps = 1
END
'GIF': BEGIN
ext = '.gif'
gif_flag = 1
delete_ps = 1
END
'JPEG': BEGIN
ext = '.jpg'
jpeg_flag = 1
delete_ps = 1
END
'JPG': BEGIN
ext = '.jpg'
jpeg_flag = 1
delete_ps = 1
END
'PNG': BEGIN
ext = '.png'
png_flag = 1
delete_ps = 1
END
'TIFF': BEGIN
ext = '.tif'
tiff_flag = 1
delete_ps = 1
END
'TIF': BEGIN
ext = '.tif'
tiff_flag = 1
delete_ps = 1
END
ENDCASE
; Do you need a filename?
IF ( (N_Elements(outfilename) EQ 0) || (outfilename EQ "") ) THEN BEGIN
filename = 'cgplot' + ext
outfilename = cgPickfile(FILE=filename, TITLE='Select Output File Name...', $
FILTER=ext, /WRITE)
IF outfilename EQ "" THEN RETURN
ENDIF
; We need to know the root name of the file, because we have to make a PostScript
; file of the same name. At least we do if the type is not PS or EPS.
IF (outputSelection NE 'PS') && (outputSelection NE 'EPS') THEN BEGIN
root_name = cgRootName(outfilename, DIRECTORY=theDir)
IF theDir EQ "" THEN CD, CURRENT=theDir
ps_filename = Filepath(ROOT_DIR=theDir, root_name + '.ps')
ENDIF ELSE ps_filename = outfilename
; Get the output default values.
cgWindow_GetDefs, $
PS_Charsize = ps_charsize, $ ; The PostScript character size.
PS_FONT = ps_font, $ ; Select the font for PostScript output.
PS_Decomposed = ps_decomposed, $ ; Sets the PostScript color mode.
PS_Delete = ps_delete, $ ; Delete PS file when making IM raster.
PS_Metric = ps_metric, $ ; Select metric measurements in PostScript output.
PS_Scale_factor = ps_scale_factor, $ ; Select the scale factor for PostScript output.
PS_TT_Font = ps_tt_font ; Select the true-type font to use for PostScript output.
; Set up the PostScript device.
cgPS_Open, $
CHARSIZE=ps_charsize, $
DECOMPOSED=ps_decomposed, $
FILENAME=ps_filename, $
FONT=ps_font , $
ENCAPSULATED=encapsulated, $
METRIC=ps_metric, $
SCALE_FACTOR=ps_scale_factor, $
TT_FONT=ps_tt_font, $
QUIET=1
ENDIF
; Set up PostScript device for working with colors.
IF !D.Name EQ 'PS' THEN Device, COLOR=1, BITS_PER_PIXEL=8
; Which release of IDL is this?
thisRelease = Float(!Version.Release)
; If the OVERPLOT keyword is set, also set the NOERASE keyword, unless it is already set.
IF Keyword_Set(overplot) THEN BEGIN
IF (N_Elements(noerase) EQ 0) THEN noerase = 1
ENDIF
; Pay attention to !P.Noerase in setting the NOERASE kewyord. This must be
; done BEFORE checking the LAYOUT properties.
IF !P.NoErase NE 0 THEN noerase = !P.NoErase ELSE noerase = Keyword_Set(noerase)
keep_aspect = Keyword_Set(keep_aspect)
; Set up the layout, if necessary.
IF N_Elements(layout) NE 0 THEN BEGIN
thisMulti = !P.Multi
totalPlots = layout[0]*layout[1]
!P.Multi = [0,layout[0], layout[1], 0, 0]
IF layout[2] EQ 1 THEN BEGIN
noerase = 1
overplot = 0
!P.Multi[0] = 0
ENDIF ELSE BEGIN
!P.Multi[0] = totalPlots - layout[2] + 1
ENDELSE
ENDIF
; Character size has to be determined *after* the layout has been decided.
IF N_Elements(font) EQ 0 THEN font = !P.Font
IF N_Elements(charsize) EQ 0 THEN charsize = cgDefCharSize(FONT=font)
IF N_Elements(color) EQ 0 THEN acolorname = 'opposite' ELSE acolorname = color
interp = Keyword_Set(interp)
; Check for image parameter and keywords.
IF N_Elements(image) EQ 0 THEN MESSAGE, 'You must pass a valid image argument.'
; Did the user want to scale the image?
; If either MIN or MAX are set, this implies SCALE=1.
; If min LT 0 or max GT 255, this implies SCALE=1.
; If NCOLORS is used, this implies SCALE=1.
IF N_Elements(min) EQ 0 THEN min = Min(image, /NAN) ELSE scale = 1
IF N_Elements(max) EQ 0 THEN max = Max(image, /NAN) ELSE scale = 1
IF (min LT 0) OR (max GT 255) THEN scale = 1
IF N_Elements(top) EQ 0 THEN top = (N_Elements(missing_value) NE 0) ? !D.TABLE_SIZE - 2 : !D.TABLE_SIZE - 1
IF N_Elements(bottom) EQ 0 THEN bottom = 0B
IF N_Elements(ncolors) NE 0 THEN BEGIN
top = (N_Elements(missing_value) NE 0) ? (ncolors - 2) < 255 : (ncolors - 1)
scale = 1
ENDIF
ncolors = top-bottom+1
negative = Keyword_Set(negative)
scale = Keyword_Set(scale)
IF scale THEN BEGIN
IF N_Elements(stretch) EQ 0 THEN stretch = 1
ENDIF
; Set default values.
SetDefaultValue, alphafgpos, [0.0, 0.0, 1.0, 1.0]
SetDefaultValue, alphabgpos, [0.0, 0.0, 1.0, 1.0]
SetDefaultValue, beta, 3.0
SetDefaultValue, clip, 2
SetDefaultValue, exponent, 4.0
SetDefaultValue, gamma, 1.5
SetDefaultValue, mean, 1.0
SetDefaultValue, missing_index, 255
SetDefaultValue, negative, 0
SetDefaultValue, sigma, 1.0
SetDefaultValue, stretch, 0
; Make sure you can specify the type of stretch with a string name.
IF Size(stretch, /TNAME) EQ 'STRING' THEN BEGIN
stretches = ['None', 'Linear', 'Clip', 'Gamma', 'Log', 'ASinh', $
'SquareRoot', 'Equalization', 'Gaussian', 'MODIS', 'StdDev']
index = Where(StrUpCase(stretch) EQ StrUpCase(stretches), count)
IF count GT 0 THEN stretch=index ELSE Message, 'Cannot find stretch: ' + StrUpCase(stretch)
ENDIF
IF stretch NE 0 THEN scale = 1
; Check for mis-spelling of AXES as AXIS.
IF Keyword_Set(axis) THEN axes = 1
axes = Keyword_Set(axes)
; If you want axes, then save the coordinate system, unless
; specifically asked not to.
IF axes THEN IF N_Elements(save) EQ 0 THEN save = 1
; If axes are set and MARGIN and POSITION are NOT set and you are NOT
; doing multiplots, then set a normal "plot" margin.
IF Keyword_Set(axes) && ((N_Elements(margin) EQ 0) && (N_Elements(position) EQ 0) $
&& (multi EQ 0)) THEN position=[0.125, 0.125, 0.925, 0.9]
; Check other keywords.
interp = Keyword_Set(interp)
IF N_Elements(minusOne) EQ 0 THEN minusOne = 0
minusOne = Keyword_Set(minusOne)
IF N_Elements(background) EQ 0 THEN background = 'white'
IF Size(background, /TNAME) EQ 'STRING' THEN BEGIN
IF StrUpCase(background) EQ 'BACKGROUND' THEN BEGIN
IF N_Elements(acolorname) EQ 0 THEN acolorname = 'opposite'
ENDIF
IF StrUpCase(background) EQ 'WHITE' THEN BEGIN
IF N_Elements(acolorname) EQ 0 THEN acolorname = 'black'
ENDIF
ENDIF
noerase = Keyword_Set(noerase) ; Don't change, used in PS output.
; Choose an axis color.
acolor = cgDefaultColor(acolorname, DEFAULT='OPPOSITE')
; If you have a palette, load it now.
IF N_Elements(palette) NE 0 THEN TVLCT, palette
; If you have a missing color, load it at the missing color index.
IF N_Elements(missing_color) NE 0 THEN TVLCT, cgColor(missing_color, /Triple), missing_index
; Before you do anything, get the current color table vectors
; so they can be restored later. Must do AFTER loading a palette!
TVLCT, rr, gg, bb, /Get
; If this is an image with an alpha channel, and there is no alphachannel background image
; supplied, you will have to take a snapshot of the current window right now before you
; erase the window. If the smallest image dimension is a 4, then we will assume this is
; an image with an alpha channel.
IF Min(Size(image, /DIMENSIONS)) EQ 4 THEN BEGIN
; We can get the background image on devices that support windows.
IF (!D.Flags AND 256) NE 0 THEN BEGIN
IF N_Elements(alphabackgroundImage) EQ 0 THEN BEGIN
alphabackgroundImage = cgSnapshot()
ENDIF
ENDIF ELSE BEGIN
IF N_Elements(alphabackgroundImage) EQ 0 THEN BEGIN
; Otherwise, blend this with a white image.
alphabackgroundImage = BytArr(100,100) + 255B
ENDIF
ENDELSE
ENDIF
; If you have an alpha background image, make sure it is a true-color image.
IF N_Elements(alphaBackgroundImage) NE 0 THEN BEGIN
IF Size(alphaBackgroundImage, /N_DIMENSIONS) EQ 2 THEN BEGIN
TVLCT, r, g, b, /Get
alphaBackgroundImage = [ [[r_start[alphaBackgroundImage]]], $
[[g_start[alphaBackgroundImage]]], [[b_start[alphaBackgroundImage]]] ]
ENDIF
ENDIF
; Do you need to erase the window before image display?
IF ~Keyword_Set(noerase) && (!P.MULTI[0] LE 0) && (N_Elements(layout) EQ 0) THEN BEGIN
IF (!D.Flags AND 256) NE 0 THEN BEGIN
cgErase, background
ENDIF ELSE BEGIN
IF (!D.NAME EQ 'Z') THEN BEGIN
cgErase, background
ENDIF
; Do you need a PostScript background color? Lot's of problems here!
; Basically, I MUST draw a plot to advance !P.MULTI. But, drawing a
; plot of any sort erases the background color. So, I have to draw a
; plot, store the new system variables, then draw my background, etc.
; I have tried LOTS of options. This is the only one that worked.
IF !D.Name EQ 'PS' THEN BEGIN
IF ~noerase THEN BEGIN
; I only have to do this, if this is the first plot.
IF !P.MULTI[0] EQ 0 THEN BEGIN
; Save the current system variables. Will need to restore later.
bangx = !X
bangy = !Y
bangp = !P
; Draw the plot that doesn't draw anything.
Plot, [0], POSITION=position, /NODATA, XSTYLE=4, YSTYLE=4, ZSTYLE=4
; Save the "after plot" system variables. Will use later.
afterx = !X
aftery = !Y
afterp = !P
; Draw the background color and set the variables you will need later.
PS_Background, background
psnodraw = 1
tempNoErase = 1
; Restore the original system variables so that it is as if you didn't
; draw the invisible plot.
!X = bangx
!Y = bangy
!P = bangp
TVLCT, rr, gg, bb
ENDIF ELSE tempNoErase = noerase
ENDIF ELSE tempNoErase = noerase
ENDIF ELSE tempNoErase = noerase
ENDELSE
ENDIF
; Need a margin around the plot?
IF (N_Elements(margin) GT 0) THEN BEGIN
IF Keyword_Set(margin) EQ 0 THEN BEGIN
IF N_Elements(multimargin) EQ 0 THEN multimargin=[0., 0., 0., 0.]
ENDIF ELSE BEGIN
IF N_Elements(multimargin) EQ 0 THEN multimargin=[1., 1., 1., 1.]
ENDELSE
IF margin[0] EQ 1 THEN margin = 0.075 ; Comes from /MARGIN
ENDIF
; Make sure the multimargin has four elements.
IF N_Elements(multimargin) EQ 0 THEN multimargin = [0., 0., 0., 0.]
IF N_Elements(multimargin) EQ 1 THEN multimargin = [multimargin, multimargin, multimargin, multimargin]
IF N_Elements(multimargin) NE 4 THEN Message, 'The keyword MULTIMARGIN must be a four-element array.'
; Check image size.
s = Size(image)
IF s[0] LT 2 OR s[0] GT 3 THEN $
MESSAGE, 'Argument does not appear to be an image. Returning...'
alphaImage = 0
; Allow 24-bit images and 2D images that are sent in as 3D
; arrays where one dimension is a 1. 24-bit images can have an
; alpha channel.
IF s[0] EQ 3 THEN BEGIN
; We are going to fake doing something with the alpha channel here.
i = Where(s[1:3] EQ 3, threeCnt)
i = Where(s[1:3] EQ 4, fourCnt)
IF threeCnt EQ 0 AND fourCnt NE 0 THEN BEGIN
s[i+1] = 3
alphaImage = 1
ENDIF ELSE alphaImage = 0
; Now handle normal 24-bit images and suspect 2D images.
IF (s[1] NE 3L) AND (s[2] NE 3L) AND (s[3] NE 3L) THEN BEGIN
IF (s[1] NE 1L) AND (s[2] NE 1L) AND (s[3] NE 1L) THEN BEGIN
MESSAGE, 'Argument does not appear to be a 24-bit image. Returning...'
ENDIF ELSE BEGIN
IF s[1] EQ 1 THEN single = 1
IF s[2] EQ 1 THEN single = 2
IF s[3] EQ 1 THEN single = 3
CASE single OF
1: image = Reform(image, s[2], s[3])
2: image = Reform(image, s[1], s[3])
3: image = Reform(image, s[1], s[2])
ENDCASE
s = Size(image)
ENDELSE
ENDIF
ENDIF ELSE s = Size(image)
; If a window is not open, open one, otherwise in X devices you get incorrect
; window size information the first time you call cgImage.
IF ((!D.FLAGS AND 256) NE 0) && (!D.Window LT 0) THEN cgDisplay
; Check for position and overplot keywords.
IF N_Elements(position) EQ 0 THEN BEGIN
IF Keyword_Set(multi) AND (Keyword_Set(overplot) NE 1) THEN BEGIN
; Draw the invisible plot to get plot position.
IF Size(background, /TNAME) EQ 'STRING' THEN background = cgColor(background)
Plot, Findgen(11), XStyle=4, YStyle=4, /NoData, Background=background, $
XMargin=multimargin[[1,3]], YMargin=multimargin[[0,2]], $
NOERASE=N_Elements(layout) EQ 0 ? tempNoErase : 1
position = [!X.Window[0], !Y.Window[0], !X.Window[1], !Y.Window[1]]
TVLCT, rr, gg, bb
ENDIF ELSE BEGIN
IF Keyword_Set(overplot) THEN BEGIN
IF (N_Elements(plotxrange) NE 0) && (N_Elements(plotyrange) NE 0) THEN BEGIN
x0 = !X.S[1]*plotxrange[0] + !X.S[0]
x1 = !X.S[1]*plotxrange[1] + !X.S[0]
y0 = !Y.S[1]*plotyrange[0] + !Y.S[0]
y1 = !Y.S[1]*plotyrange[1] + !Y.S[0]
position = [x0, y0, x1, y1]
IF N_Elements(restorePosition) NE 0 THEN restorePosition = position
IF (x0 LT 0.0) || (x1 GT 1.0) || (y0 LT 0.0) || (y1 GT 1.0) THEN BEGIN
Message, 'Range of overplotted image is outside the currently established range.', /Informational
ENDIF
; Make sure the position is inside of normalized coordinates.
position = 0.0 > [x0, y0, x1, y1] < 1.0
ENDIF ELSE BEGIN
position = [!X.Window[0], !Y.Window[0], !X.Window[1], !Y.Window[1]]
ENDELSE
ENDIF ELSE position = [0.0, 0.0, 1.0, 1.0]
ENDELSE
ENDIF ELSE BEGIN
IF Keyword_Set(multi) AND (Keyword_Set(overplot) NE 1)THEN BEGIN
; Draw the invisible plot to get plot position.
IF Size(background, /TNAME) EQ 'STRING' THEN background = cgColor(background)
IF transparentImage EQ 0 THEN BEGIN
Plot, Findgen(11), XStyle=4, YStyle=4, /NoData, Background=background, $
XMargin=multimargin[[1,3]], YMargin=multimargin[[0,2]], $
NOERASE=N_Elements(layout) EQ 0 ? tempNoErase : 1
TVLCT, rr, gg, bb
; Use position coordinates to indicate position in this set of coordinates.
xrange = !X.Window[1] - !X.Window[0]
xstart = !X.Window[0] + position[0]*xrange
xend = xrange * (position[2] - position[0]) + xstart
yrange = !Y.Window[1] - !Y.Window[0]
ystart = !Y.Window[0] + position[1]*yrange
yend = yrange * (position[3] - position[1]) + ystart
; New position based on !P.MULTI position.
position = [xstart, ystart, xend, yend]
ENDIF
ENDIF ELSE BEGIN
IF Keyword_Set(overplot) THEN BEGIN
IF (N_Elements(plotxrange) NE 0) && (N_Elements(plotyrange) NE 0) THEN BEGIN
x0 = !X.S[1]*plotxrange[0] + !X.S[0]
x1 = !X.S[1]*plotxrange[1] + !X.S[0]
y0 = !Y.S[1]*plotyrange[0] + !Y.S[0]
y1 = !Y.S[1]*plotyrange[1] + !Y.S[0]
position = [x0, y0, x1, y1]
IF (x0 LT 0.0) || (x1 GT 1.0) || (y0 LT 0.0) || (y1 GT 1.0) THEN BEGIN
Message, 'Range of overplotted image is outside the currently established range.', /Informational
ENDIF
; Make sure the position is inside of normalized coordinates.
position = 0.0 > [x0, y0, x1, y1] < 1.0
IF N_Elements(restorePosition) NE 0 THEN restorePosition = position
ENDIF ELSE position = Float(position)
IF N_Elements(transparent) NE 0 THEN BEGIN
restorePosition = position
alphafgpos = position
position = [0,0,1,1]
ENDIF
ENDIF
ENDELSE
ENDELSE
; Check to be sure the position is not all zeros.
IF Total(position) EQ 0.0 THEN BEGIN
IF Keyword_Set(overplot) $
THEN Message, 'A previous coordinate system cannot be found for overplotting.' $
ELSE Message, 'Unable to obtain a valid position for the image.'
ENDIF
; Check for margin keyword.
IF (Keyword_Set(multi) EQ 0) AND (Keyword_Set(overplot) EQ 0) THEN BEGIN
IF N_Elements(margin) NE 0 THEN BEGIN
margin = 0.0 > margin < 0.33
position = [position[0] + margin, position[1] + margin, $
position[2] - margin, position[3] - margin]
ENDIF
ENDIF
; 2D image.
IF s[0] EQ 2 THEN BEGIN
imgXsize = FLOAT(s[1])
imgYsize = FLOAT(s[2])
true = 0
; Decomposed color off if device supports it.
CASE StrUpCase(!D.NAME) OF
'X': BEGIN
Device, Get_Visual_Depth=thisDepth
IF thisRelease GE 5.2 THEN Device, Get_Decomposed=thisDecomposed
Device, Decomposed=0
ENDCASE
'WIN': BEGIN
Device, Get_Visual_Depth=thisDepth
IF thisRelease GE 5.2 THEN Device, Get_Decomposed=thisDecomposed
Device, Decomposed=0
ENDCASE
'MAC': BEGIN
Device, Get_Visual_Depth=thisDepth
IF thisRelease GE 5.2 THEN Device, Get_Decomposed=thisDecomposed
Device, Decomposed=0
ENDCASE
'Z': BEGIN
; Fix for 24-bit Z-buffer.
IF (thisRelease GE 6.4) THEN BEGIN
Device, Get_Decomposed=thisDecomposed, Get_Pixel_Depth=thisDepth
Device, Decomposed=0
ENDIF ELSE thisDepth = 8
ENDCASE
'PS': BEGIN
IF (thisRelease GE 7.1) THEN BEGIN
thisDecomposed = cgGetColorState(Depth=thisDepth)
Device, Decomposed=0
ENDIF ELSE thisDepth = 8
ENDCASE
ELSE: thisDepth = 8
ENDCASE
ENDIF
; 3D image.
IF s[0] EQ 3 THEN BEGIN
; What kind of pixel interleaving?
IF s[1] EQ 3 THEN true = 1 ; Pixel interleaved
IF s[2] EQ 3 THEN true = 2 ; Row interleaved
IF s[3] EQ 3 THEN true = 3 ; Band interleaved
; Decomposed color on if device supports it.
CASE StrUpCase(!D.NAME) OF
'X': BEGIN
Device, Get_Visual_Depth=thisDepth
IF thisRelease GE 5.2 THEN Device, Get_Decomposed=thisDecomposed
IF thisDepth GT 8 THEN Device, Decomposed=1
ENDCASE
'WIN': BEGIN
Device, Get_Visual_Depth=thisDepth
IF thisRelease GE 5.2 THEN Device, Get_Decomposed=thisDecomposed
IF thisDepth GT 8 THEN Device, Decomposed=1
ENDCASE
'MAC': BEGIN
Device, Get_Visual_Depth=thisDepth
IF thisRelease GE 5.2 THEN Device, Get_Decomposed=thisDecomposed
IF thisDepth GT 8 THEN Device, Decomposed=1
ENDCASE
'Z': BEGIN
; Fix for 24-bit Z-buffer.
IF (Float(!Version.Release) GE 6.4) THEN BEGIN
Device, DECOMPOSED=1, Set_Pixel_Depth=24
thisDepth = 24
ENDIF ELSE thisDepth = 8
ENDCASE
'PS': BEGIN
IF (Float(!Version.Release) GE 7.1) THEN BEGIN
thisDecomposed = cgGetColorState(Depth=thisDepth)
TVLCT, r, g, b, /GET
LoadCT, 0, /Silent
Device, DECOMPOSED=1, BITS_PER_PIXEL=8, COLOR=1
TVLCT, r, g, b
ENDIF ELSE thisDepth = 8
ENDCASE
ELSE: thisDepth = 8
ENDCASE
CASE true OF
1: BEGIN
imgXsize = FLOAT(s[2])
imgYsize = FLOAT(s[3])
ENDCASE
2: BEGIN
imgXsize = FLOAT(s[1])
imgYsize = FLOAT(s[3])
ENDCASE
3: BEGIN
imgXsize = FLOAT(s[1])
imgYsize = FLOAT(s[2])
ENDCASE
ENDCASE
ENDIF
; Check for TV keyword. If present, then act like a TV command.
IF Keyword_Set(tv) THEN BEGIN
IF N_Params() GE 3 OR N_Params() EQ 1 THEN BEGIN
IF N_Elements(x) EQ 0 THEN x = 0
IF N_Elements(y) EQ 0 THEN y = 0
IF Keyword_Set(normal) THEN BEGIN
IF alphaImage THEN BEGIN
outImage = cgImage_Prepare_Alpha(image, alphaBackgroundImage, $
TV=1, ALPHABGPOSITION=alphapos, ALPHAFGPOSITION=alphafgpos)
TV, outImage, x, y, True=3, _STRICT_EXTRA=extra, /Normal
ENDIF ELSE BEGIN
CASE scale OF
0: TV, image, x, y, True=true, _STRICT_EXTRA=extra, /Normal
1: TV, BytScl(image, Top=top, Max=max, Min=min) + bottom, $
x, y, True=true, _STRICT_EXTRA=extra, /Normal
ENDCASE
ENDELSE
ENDIF ELSE BEGIN
IF alphaImage THEN BEGIN
outImage = cgImage_Prepare_Alpha(image, alphaBackgroundImage, $
TV=1, ALPHABGPOSITION=alphapos, ALPHAFGPOSITION=alphafgpos)
TV, outImage, x, y, True=3, _STRICT_EXTRA=extra, /Device
ENDIF ELSE BEGIN
CASE scale OF
0: TV, image, x, y, True=true, _STRICT_EXTRA=extra, /Device
1: TV, BytScl(image, Top=top, Max=max, Min=min) + bottom, $
x, y, True=true, _STRICT_EXTRA=extra, /Device
ENDCASE
ENDELSE
ENDELSE
ENDIF ELSE BEGIN
IF N_Params() EQ 2 THEN BEGIN
IF Keyword_Set(normal) THEN BEGIN
IF alphaImage THEN BEGIN
outImage = cgImage_Prepare_Alpha(image, alphaBackgroundImage, $
TV=1, ALPHABGPOSITION=alphapos, ALPHAFGPOSITION=alphafgpos)
TV, outImage, x, True=3, _STRICT_EXTRA=extra, /Normal
ENDIF ELSE BEGIN
CASE scale OF
0: TV, image, x, True=true, _STRICT_EXTRA=extra, /Normal
1: TV, BytScl(image, Top=top, Max=max, Min=min) + bottom, $
x, True=true, _STRICT_EXTRA=extra, /Normal
ENDCASE
ENDELSE
ENDIF ELSE BEGIN
IF alphaImage THEN BEGIN
outImage = cgImage_Prepare_Alpha(image, alphaBackgroundImage, $
TV=1, ALPHABGPOSITION=alphabgpos, ALPHAFGPOSITION=alphafgpos)
TV, outImage, x, True=3, _STRICT_EXTRA=extra, /Device
ENDIF ELSE BEGIN
CASE scale OF
0: TV, image, x, True=true, _STRICT_EXTRA=extra, /Device
1: TV, BytScl(image, Top=top, Max=max, Min=min) + bottom, $
x, True=true, _STRICT_EXTRA=extra, /Device
ENDCASE
ENDELSE
ENDELSE
ENDIF
ENDELSE
GoTo, restoreDecomposed
ENDIF
; Maintain aspect ratio (ratio of height to width)?
IF KEYWORD_SET(keep_aspect) THEN BEGIN
; Find aspect ratio of image.
ratio = FLOAT(imgYsize) / imgXSize
; Find the proposed size of the image in pixels without aspect
; considerations.
xpixSize = (position[2] - position[0]) * !D.X_VSize
ypixSize = (position[3] - position[1]) * !D.Y_VSize
; Try to fit the image width. If you can't maintain
; the aspect ratio, fit the image height.
trialX = xpixSize
trialY = trialX * ratio
IF trialY GT ypixSize THEN BEGIN
trialY = ypixSize
trialX = trialY / ratio
ENDIF
; Recalculate the position of the image in the window.
position[0] = (((xpixSize - trialX) / 2.0) / !D.X_VSize) + position[0]
position[2] = position[0] + (trialX/FLOAT(!D.X_VSize))
position[1] = (((ypixSize - trialY) / 2.0) / !D.Y_VSize) + position[1]
position[3] = position[1] + (trialY/FLOAT(!D.Y_VSize))
ENDIF
; Calculate the image size and start locations. The plus and minus
; factor values are designed to keep the image completely inside the axes.
; In other words, if you draw the axes first, then put the image in
; the display window, the axes should remain visible and not be covered
; up by the image. Do this only if the user requests it with the FIT_INSIDE
; keyword.
IF Keyword_Set(fit_inside) THEN factor = 1 ELSE factor = 0
xsize = Ceil((position[2] - position[0]) * !D.X_VSIZE) - factor
ysize = Ceil((position[3] - position[1]) * !D.Y_VSIZE) - factor
xstart = Round(position[0] * !D.X_VSIZE) + factor
ystart = Round(position[1] * !D.Y_VSIZE) + factor
; Display the image. Sizing different for scalable pixels devices.
IF (!D.Flags AND 1) NE 0 THEN BEGIN
; Need a gray-scale color table if this is a true
; color image.
IF true GT 0 THEN LOADCT, 0, /Silent
IF alphaImage THEN BEGIN
outImage = cgImage_Prepare_Alpha(image, alphaBackgroundImage, $
ALPHABGPOSITION=alphabgpos, ALPHAFGPOSITION=alphafgpos)
TV, outImage, xstart, ystart, XSIZE=xsize, YSIZE=ysize, _STRICT_EXTRA=extra, True=3
ENDIF ELSE BEGIN
TV, cgImage_Prepare_Output(image, $
BOTTOM=bottom, $
BETA=beta, $
CLIP=clip, $
EXCLUDE=exclude, $
EXPONENT=exponent, $
GAMMA=gamma, $
INTERPOLATE=interpolate, $
MAXVALUE=max, $
MEAN=mean, $
MINUS_ONE=minus_one, $
MINVALUE=min, $
MISSING_INDEX=missing_index, $
MISSING_VALUE=missing_value, $
MULTIPLIER=multiplier, $
NEGATIVE=negative, $
SCALE=scale, $
STRETCH=stretch, $
SIGMA=sigma, $
TOP=top), xstart, ystart, XSIZE=xsize, $
YSIZE=ysize, _STRICT_EXTRA=extra, True=true
ENDELSE
ENDIF ELSE BEGIN ; All other devices.
CASE true OF
0: BEGIN
TV, cgImage_Prepare_Output(image, xsize, ysize, $
BOTTOM=bottom, $
BETA=beta, $
CLIP=clip, $
EXCLUDE=exclude, $
EXPONENT=exponent, $
GAMMA=gamma, $
INTERPOLATE=interpolate, $
MAXVALUE=max, $
MEAN=mean, $
MINUS_ONE=minus_one, $
MINVALUE=min, $
MISSING_INDEX=missing_index, $
MISSING_VALUE=missing_value, $
MULTIPLIER=multiplier, $
NEGATIVE=negative, $
SCALE=scale, $
STRETCH=stretch, $
SIGMA=sigma, $
TOP=top), xstart, ystart, _STRICT_EXTRA=extra
END
1: IF thisDepth GT 8 THEN BEGIN
IF alphaImage THEN BEGIN
outImage = cgImage_Prepare_Alpha(image, alphaBackgroundImage, $
ALPHABGPOSITION=alphabgpos, ALPHAFGPOSITION=alphafgpos)
TV, cgResizeImage(outImage, xsize, ysize, INTERP=interp, $
MINUS_ONE=minusOne), xstart, ystart, _STRICT_EXTRA=extra, True=3
ENDIF ELSE BEGIN
CASE scale OF
0: TV, cgResizeImage(image, xsize, ysize, INTERP=interp, $
MINUS_ONE=minusOne), xstart, ystart, _STRICT_EXTRA=extra, True=1
1: TV, BYTSCL(cgResizeImage(image, xsize, ysize, $
INTERP=interp, MINUS_ONE=minusOne), Top=top-bottom, $
Max=max, Min=min) + bottom, xstart, ystart, _STRICT_EXTRA=extra, True=1
ENDCASE
ENDELSE
ENDIF ELSE BEGIN
IF alphaImage THEN BEGIN
outImage = cgImage_Prepare_Alpha(image, alphaBackgroundImage, $
ALPHABGPOSITION=alphabgpos, ALPHAFGPOSITION=alphafgpos)
image2d = Color_Quan(outImage, 3, r, g, b, _EXTRA=extra)
ENDIF ELSE BEGIN
image2d = Color_Quan(image, 1, r, g, b, _EXTRA=extra)
ENDELSE
TVLCT, r, g, b
TV, cgResizeImage(image2d, xsize, ysize, INTERP=0, $
MINUS_ONE=minusOne), xstart, ystart, _STRICT_EXTRA=extra, True=0
ENDELSE
2: IF thisDepth GT 8 THEN BEGIN
IF alphaImage THEN BEGIN
outImage = cgImage_Prepare_Alpha(image, alphaBackgroundImage, $
ALPHABGPOSITION=alphabgpos, ALPHAFGPOSITION=alphafgpos)
TV, cgResizeImage(outImage, xsize, ysize, INTERP=interp, $
MINUS_ONE=minusOne), xstart, ystart, _STRICT_EXTRA=extra, True=3
ENDIF ELSE BEGIN
CASE scale OF
0: TV, cgResizeImage(image, xsize, ysize, INTERP=interp, $
MINUS_ONE=minusOne), xstart, ystart, _STRICT_EXTRA=extra, True=2
1: TV, BYTSCL(cgResizeImage(image, xsize, ysize, $
INTERP=interp, MINUS_ONE=minusOne), Top=top-bottom, Max=max, $
Min=min) + bottom, xstart, ystart, _STRICT_EXTRA=extra, True=2
ENDCASE
ENDELSE
ENDIF ELSE BEGIN
IF alphaImage THEN BEGIN
outImage = cgImage_Prepare_Alpha(image, alphaBackgroundImage, ALPHABGPOSITION=alphapos)
image2d = Color_Quan(outImage, 3, r, g, b, _EXTRA=extra)
ENDIF ELSE BEGIN
image2d = Color_Quan(image, 2, r, g, b, _EXTRA=extra)
ENDELSE
TVLCT, r, g, b
TV, cgResizeImage(image2d, xsize, ysize, INTERP=0, $
MINUS_ONE=minusOne), xstart, ystart, _STRICT_EXTRA=extra, True=0
ENDELSE
3: IF thisDepth GT 8 THEN BEGIN
IF alphaImage THEN BEGIN
outImage = cgImage_Prepare_Alpha(image, alphaBackgroundImage, $
ALPHABGPOSITION=alphabgpos, ALPHAFGPOSITION=alphafgpos)
TV, cgResizeImage(outImage, xsize, ysize, INTERP=interp, $
MINUS_ONE=minusOne), xstart, ystart, _STRICT_EXTRA=extra, True=3
ENDIF ELSE BEGIN
CASE scale OF
0: TV, cgResizeImage(image, xsize, ysize, INTERP=interp, $
MINUS_ONE=minusOne), xstart, ystart, _STRICT_EXTRA=extra, True=3
1: TV, BYTSCL(cgResizeImage(image, xsize, ysize, $
INTERP=interp, MINUS_ONE=minusOne), Top=top-bottom, Max=max, $
Min=min) + bottom, xstart, ystart, _STRICT_EXTRA=extra, True=3
ENDCASE
ENDELSE
ENDIF ELSE BEGIN
IF alphaImage THEN BEGIN
outImage = cgImage_Prepare_Alpha(image, alphaBackgroundImage, $
ALPHABGPOSITION=alphabgpos, ALPHAFGPOSITION=alphafgpos)
image2d = Color_Quan(outImage, 3, r, g, b, _EXTRA=extra)
ENDIF ELSE BEGIN
image2d = Color_Quan(image, 3, r, g, b, _EXTRA=extra)
ENDELSE
TVLCT, r, g, b
TV, cgResizeImage(image2d, xsize, ysize, INTERP=0, $
MINUS_ONE=minusOne), xstart, ystart, _STRICT_EXTRA=extra, True=0
ENDELSE
ENDCASE
ENDELSE
; Restore Decomposed state if necessary.
RestoreDecomposed:
; If this is the first plot in PS, then we have to make it appear that we have
; drawn a plot, even though we haven't.
IF N_Elements(psnodraw) EQ 1 THEN BEGIN
!X = afterX
!Y = afterY
!P = afterP
ENDIF
CASE StrUpCase(!D.NAME) OF
'X': BEGIN
IF thisRelease GE 5.2 THEN Device, Decomposed=thisDecomposed
ENDCASE
'WIN': BEGIN
IF thisRelease GE 5.2 THEN Device, Decomposed=thisDecomposed
ENDCASE
'MAC': BEGIN
IF thisRelease GE 5.2 THEN BEGIN
Device, Decomposed=thisDecomposed
; Here is a hack that fixes a longstanding Mac problem with
; color tables after changing the decomposed state.
TV, [0]
ENDIF
ENDCASE
'Z': BEGIN
IF thisRelease GE 6.4 THEN Device, Decomposed=thisDecomposed
ENDCASE
'PS': BEGIN
IF thisRelease GE 7.1 THEN BEGIN
Device, DECOMPOSED=thisDecomposed
IF N_Elements(r) NE 0 THEN TVLCT, r, g, b
ENDIF
ENDCASE
ELSE:
ENDCASE
; Set up common block parameters, but only if device supports windows.
; And only if the QUIET flag is not turned on.
IF ~Keyword_Set(quiet) THEN BEGIN
IF (!D.FLAGS AND 256) NE 0 THEN BEGIN
_cgimage_xsize = imgXsize
_cgimage_ysize = imgYsize
_cgimage_winID = !D.Window
_cgimage_winxsize = !D.X_Size
_cgimage_winysize = !D.Y_Size
_cgimage_position = position
_cgimage_current = 1
ENDIF
; Save the position, at least, if you are in PostScript as cgMap may need it.
IF (!D.NAME EQ 'PS') THEN BEGIN
_cgimage_position = position
_cgimage_current = 1
ENDIF
ENDIF
; Save plot system variables.
bangp = !P
bangx = !X
bangy = !Y
; If you changed the position, restore it.
IF N_Elements(restorePosition) NE 0 THEN position = RestorePosition
; Set the output position.
oposition = position
; Need a data range?
IF N_Elements(plotxrange) EQ 0 THEN BEGIN
plotxrange = [0, imgXSize]
ENDIF ELSE save = 1
IF N_Elements(plotyrange) EQ 0 THEN BEGIN
plotyrange = [0, imgYSize]
ENDIF ELSE save = 1
; Check title for cgSymbols.
IF N_Elements(plotxtitle) NE 0 THEN plotxtitle = cgCheckForSymbols(plotxtitle)
IF N_Elements(plotytitle) NE 0 THEN plotytitle = cgCheckForSymbols(plotytitle)
IF N_Elements(title) NE 0 THEN title = cgCheckForSymbols(title)
; If the user wanted axes, draw them now.
IF axes THEN BEGIN
cgPLOT, [0], FONT=font, /NODATA, /NOERASE, XRANGE=plotxrange, YRANGE=plotyrange, $
XSTYLE=1, YSTYLE=1, POSITION=position, AXISCOLOR=acolor, $
XTITLE=plotxtitle, YTITLE=plotytitle, TITLE=title, CHARSIZE=charsize, $
_STRICT_EXTRA=axkeywords
ENDIF ELSE BEGIN
; If you are saving the data coordinate space, draw invisible axes.
IF Keyword_Set(save) THEN BEGIN
PLOT, [0], /NODATA, /NOERASE, XRANGE=plotxrange, YRANGE=plotyrange, $
XSTYLE=5, YSTYLE=5, POSITION=position, _STRICT_EXTRA=axkeywords
ENDIF
ENDELSE
; Clean up after yourself.
IF (!D.Name NE 'Z') THEN BEGIN
TVLCT, rr, gg, bb
; If you loaded a color palette, restore the before color vectors.
IF N_Elements(p_red) NE 0 THEN TVLCT, p_red, p_grn, p_blu
ENDIF
IF ~Keyword_Set(save) THEN BEGIN
!P = bangp
!X = bangx
!Y = bangy
ENDIF
; Clean up if you are using a layout.
IF N_Elements(layout) NE 0 THEN !P.Multi = thisMulti
; Are we producing output? If so, we need to clean up here.
IF (N_Elements(output) NE 0) && (output NE "") THEN BEGIN
; Get the output default values.
cgWindow_GetDefs, $
IM_Density = im_density, $ ; Sets the density parameter on ImageMagick convert command.
IM_Options = im_options, $ ; Sets extra ImageMagick options on the ImageMagick convert command.
IM_Resize = im_resize, $ ; Sets the resize parameter on ImageMagick convert command.
IM_Transparent = im_transparent, $ ; Sets the "alpha" keyword on ImageMagick convert command.
IM_Width = im_width, $ ; Sets the width of raster file output created with ImageMagick.
PDF_Unix_Convert_Cmd = pdf_unix_convert_cmd, $ ; Command to convert PS to PDF.
PDF_Path = pdf_path ; The path to the Ghostscript conversion command.
; Close the PostScript file and create whatever output is needed.
cgPS_Close, DELETE_PS=delete_ps, $
ALLOW_TRANSPARENT=im_transparent, $
BMP=bmp_flag, $
DENSITY=im_density, $
GIF=gif_flag, $
GS_PATH=pdf_path, $
IM_OPTIONS=im_options, $
JPEG=jpeg_flag, $
PDF=pdf_flag, $
PNG=png_flag, $
RESIZE=im_resize, $
TIFF=tiff_flag, $
UNIX_CONVERT_CMD=pdf_unix_convert_cmd, $
WIDTH=im_width
basename = File_Basename(outfilename)
dirname = File_Dirname(outfilename)
IF dirname EQ "." THEN CD, CURRENT=dirname
Print, 'Output File: ' + Filepath(ROOT_DIR=dirname, basename)
ENDIF
; If you were doing a transparent image, return the original.
IF transparentImage THEN image = oldImage
END