Changeset 133 for trunk/SRC/Picture


Ignore:
Timestamp:
07/07/06 11:57:27 (18 years ago)
Author:
navarro
Message:

english and nicer header (1)

Location:
trunk/SRC/Picture
Files:
1 added
4 moved

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Picture/image_viewer.pro

    r132 r133  
    11;+ 
    2 ; NAME: 
    3 ;       IMAGE_VIEWER 
    4 ; 
    5 ; PURPOSE: 
    6 ;       The purpose of this program is to provide an interactive tool that can be used 
    7 ;       to view JPEG, BMP, GIF, PNG, and TIFF picture files.  Images are loaded into 
    8 ;       memory, so the initial file access may take a while, but once each picture has 
    9 ;       been opened they can all be viewed in a very rapid fashion. 
    10 ; 
    11 ; CATEGORY: 
    12 ;       Visualization, Widgets 
    13 ; 
    14 ; CALLING SEQUENCE: 
    15 ;       image_viewer 
    16 ; 
    17 ; INPUT PARAMETERS: 
    18 ;       None. 
    19 ; 
    20 ; KEYWORD PARAMETERS: 
    21 ;       None. 
    22 ; 
    23 ; OUTPUTS: 
    24 ;       None. 
    25 ; 
    26 ; COMMON BLOCKS: 
    27 ;       None. 
    28 ; 
    29 ; SIDE EFFECTS: 
    30 ;       While this program is running in an IDL session it will change the current 
     2; 
     3; @file_comments  
     4; The purpose of this program is to provide an interactive tool that can be used 
     5; to view JPEG, BMP, GIF, PNG, and TIFF picture files.  Images are loaded into 
     6; memory, so the initial file access may take a while, but once each picture has 
     7; been opened they can all be viewed in a very rapid fashion. 
     8; 
     9; @categories Visualization, Widgets 
     10; 
     11; @param event {in}{required} 
     12; 
     13; @restrictions While this program is running in an IDL session it will change the current 
    3114;       working directory, enables/disables color decomposition, and sets !QUIET=1, 
    3215;       !ORDER=0, & !P.BACKGROUND=0.  These settings are returned to their initial 
    3316;       settings before the program was initiated once it is terminated. 
    3417; 
    35 ; RESTRICTIONS: 
    36 ;       This program is supported in IDL version 5.5 and newer.  In order to open 
     18; @restrictions This program is supported in IDL version 5.5 and newer.  In order to open 
    3719;       GIF files or TIFF files with LZW compression the copy of IDL being used must 
    3820;       be licensed with these features.  IDL only supports BMP files in the standard 
    3921;       Windows format and does not support OS2 bitmaps. 
    4022; 
    41 ; MODIFICATION HISTORY: 
    42 ;       Written by: AEB, 1/02. 
    43 ;- 
    44  
    45  
    46 ;********************************************************************************************* 
     23; @history Written by: AEB, 1/02. 
     24; 
     25; @version $Id$ 
     26;********************************************************************************************* 
     27;_ 
     28 
    4729PRO IMAGE_VIEWER_OPEN_FILES,event 
    4830;THIS PROCEDURE IS CALLED WHEN A USER SELECTS "File > Open Picture Files" FROM THE MAIN MENU 
     
    126108 
    127109;********************************************************************************************* 
     110;+ 
     111; @param event {in}{required} 
     112;- 
    128113PRO IMAGE_VIEWER_OPEN_FOLDER,event 
    129114;THIS PROCEDURE IS CALLED WHEN A USER SELECTS "File > Open All In Folder" FROM THE MAIN MENU 
     
    208193 
    209194;********************************************************************************************* 
     195;+ 
     196; @param event {in}{required} 
     197;- 
    210198PRO IMAGE_VIEWER_CANCEL,event 
    211199;obtain state structure for top-level-base from its UVALUE: 
     
    221209 
    222210;********************************************************************************************* 
     211;+ 
     212; @param event {in}{required} 
     213;- 
    223214PRO IMAGE_VIEWER_TIMER,event 
    224215;obtain state structure for top-level-base from its UVALUE: 
     
    893884 
    894885;********************************************************************************************* 
     886;+ 
     887; @param event {in}{required} 
     888;- 
    895889PRO IMAGE_VIEWER_EXIT,event 
    896890;THIS PROCEDURE IS CALLED WHEN A USER SELECTS "File > Exit" FROM THE MAIN MENU 
     
    905899 
    906900;********************************************************************************************* 
     901;+ 
     902; @param event {in}{required} 
     903;- 
    907904PRO IMAGE_VIEWER_HELP,event 
    908905;THIS PROCEDURE IS CALLED WHEN A USER SELECTS "Help > Help on IMAGE_VIEWER" 
     
    924921 
    925922;********************************************************************************************* 
     923;+ 
     924; @param event {in}{required} 
     925;- 
    926926PRO IMAGE_VIEWER_THUMBS,event 
    927927;THIS PROCEDURE IS CALLED WHEN A USER CLICKS ON ONE OF THE THUMBNAIL PICTURES 
     
    971971 
    972972;********************************************************************************************* 
     973;+ 
     974; @param widjetID {in}{required} 
     975;- 
    973976PRO IMAGE_VIEWER_CLEANUP,widgetID 
    974977;THIS PROCEDURE IS CALLED WHEN THE PROGRAM IS TERMINATED AND XMANAGER REGISTERS A CLEANUP: 
     
    9991002 
    10001003;********************************************************************************************* 
     1004;+ 
     1005; @param event {in}{required} 
     1006;- 
    10011007PRO IMAGE_VIEWER_EVENT,event 
    10021008;THIS PROCEDURE IS CALLED WHEN A USER RESIZES THE TOP-LEVEL BASE 
  • trunk/SRC/Picture/imdisp.pro

    r132 r133  
    11;------------------------------------------------------------------------------- 
     2;+ 
     3; @hidden 
     4;- 
    25FUNCTION IMDISP_GETPOS, ASPECT, POSITION=POSITION, MARGIN=MARGIN 
    36; 
     
    4750END 
    4851;------------------------------------------------------------------------------- 
     52;+ 
     53; @hidden 
     54;- 
    4955FUNCTION IMDISP_IMSCALE, IMAGE, RANGE=RANGE, BOTTOM=BOTTOM, NCOLORS=NCOLORS, $ 
    5056  NEGATIVE=NEGATIVE 
     
    7884END 
    7985;------------------------------------------------------------------------------- 
     86;+ 
     87; @hidden 
     88;- 
    8089FUNCTION IMDISP_IMREGRID, DATA, NX, NY, INTERP=INTERP 
    8190; 
     
    119128END 
    120129;------------------------------------------------------------------------------- 
     130;+ 
     131; @hidden 
     132;- 
    121133PRO IMDISP_IMSIZE, IMAGE, X0, Y0, XSIZE, YSIZE, ASPECT=ASPECT, $ 
    122134  POSITION=POSITION, MARGIN=MARGIN 
     
    176188 
    177189END 
    178 ;------------------------------------------------------------------------------- 
    179 PRO IMDISP, IMAGE, RANGE=RANGE, BOTTOM=BOTTOM, NCOLORS=NCOLORS, $ 
    180   MARGIN=MARGIN, INTERP=INTERP, DITHER=DITHER, ASPECT=ASPECT, $ 
    181   POSITION=POSITION, OUT_POS=OUT_POS, NOSCALE=NOSCALE, NORESIZE=NORESIZE, $ 
    182   ORDER=ORDER, USEPOS=USEPOS, CHANNEL=CHANNEL, $ 
    183   BACKGROUND=BACKGROUND, ERASE=ERASE, $ 
    184   AXIS=AXIS, NEGATIVE=NEGATIVE, _EXTRA=EXTRA_KEYWORDS 
    185 ; 
    186   compile_opt idl2, strictarrsubs 
    187 ; 
    188  
     190;******************************************************************************* 
    189191;+ 
    190 ; NAME: 
    191 ;    IMDISP 
    192 ; 
    193 ; PURPOSE: 
     192; 
     193; @file_comments  
    194194;    Display an image on the current graphics device. 
    195195;    IMDISP is an advanced replacement for TV and TVSCL. 
     
    214214;    - Photographic negative images can be displayed via the NEGATIVE keyword. 
    215215; 
    216 ; CATEGORY: 
    217 ;    Image display 
    218 ; 
    219 ; CALLING SEQUENCE: 
    220 ;    IMDISP, IMAGE 
    221 ; 
    222 ; INPUTS: 
    223 ;    IMAGE       Array containing image data. 
     216; @categories Image display 
     217; 
     218; @param IMAGE {in}{required} Array containing image data. 
    224219;                Pseudo (indexed) color images must have 2 dimensions. 
    225220;                True color images must have 3 dimensions, in either 
    226221;                [3, NX, NY], [NX, 3, NY], or [NX, NY, 3] form. 
    227222; 
    228 ; OPTIONAL INPUTS: 
    229 ;    None. 
    230 ; 
    231 ; KEYWORD PARAMETERS: 
    232 ;    RANGE       For Pseudo Color images only, a vector with two elements 
     223; @keyword RANGE For Pseudo Color images only, a vector with two elements 
    233224;                specifying the minimum and maximum values of the image 
    234225;                array to be considered when the image is byte-scaled 
     
    237228;                or if the NOSCALE keyword is set. 
    238229; 
    239 ;    BOTTOM      Bottom value in the color table to be used 
     230; @keyword BOTTOM Bottom value in the color table to be used 
    240231;                for the byte-scaled image 
    241232;                (default is 0). 
    242233;                This keyword is ignored if the NOSCALE keyword is set. 
    243234; 
    244 ;    NCOLORS    Number of colors in the color table to be used 
     235; @keyword NCOLORS Number of colors in the color table to be used 
    245236;                for the byte-scaled image 
    246237;                (default is !D.TABLE_SIZE - BOTTOM). 
    247238;                This keyword is ignored if the NOSCALE keyword is set. 
    248239; 
    249 ;    MARGIN      A scalar value specifying the margin to be maintained 
     240; @keyword MARGIN A scalar value specifying the margin to be maintained 
    250241;                around the image in normal coordinates 
    251242;                (default is 0.1, or 0.025 if !P.MULTI is set to display 
    252243;                multiple images). 
    253244; 
    254 ;    INTERP      If set, the resized image will be interpolated using 
     245; @keyword INTERP If set, the resized image will be interpolated using 
    255246;                bilinear interpolation 
    256247;                (default is nearest neighbor sampling). 
    257248; 
    258 ;    DITHER      If set, true color images will be dithered when displayed 
     249; @keyword DITHER If set, true color images will be dithered when displayed 
    259250;                on an 8-bit graphics device 
    260251;                (default is no dithering). 
    261252; 
    262 ;    ASPECT      A scalar value specifying the aspect ratio (height/width) 
     253; @keyword ASPECT A scalar value specifying the aspect ratio (height/width) 
    263254;                for the displayed image 
    264255;                (default is to maintain native aspect ratio). 
    265256; 
    266 ;    POSITION    On input, a 4-element vector specifying the position 
     257; @keyword POSITION On input, a 4-element vector specifying the position 
    267258;                of the displayed image in the form [X0,Y0,X1,Y1] in 
    268259;                in normal coordinates 
     
    271262;                offset and size are known (e.g. MAP_IMAGE output). 
    272263; 
    273 ;    OUT_POS    On output, a 4-element vector specifying the position 
     264; @keyword OUT_POS On output, a 4-element vector specifying the position 
    274265;                actually used to display the image. 
    275266; 
    276 ;    NOSCALE    If set, the image will not be byte-scaled 
     267; @keyword NOSCALE If set, the image will not be byte-scaled 
    277268;                (default is to byte-scale the image). 
    278269; 
    279 ;    NORESIZE    If set, the image will not be resized. 
     270; @keyword NORESIZE If set, the image will not be resized. 
    280271;                (default is to resize the image to fit the display). 
    281272; 
    282 ;    ORDER      If set, the image is displayed from the top down 
     273; @keyword ORDER If set, the image is displayed from the top down 
    283274;                (default is to display the image from the bottom up). 
    284275;                Note that the system variable !ORDER is always ignored. 
    285276; 
    286 ;    USEPOS      If set, the image will be sized to exactly fit a supplied 
     277; @keyword USEPOS If set, the image will be sized to exactly fit a supplied 
    287278;                POSITION vector, over-riding ASPECT and MARGIN 
    288279;                (default is to honor ASPECT and MARGIN when a POSITION 
    289280;                vector is supplied). 
    290281; 
    291 ;    CHANNEL    Display channel (Red, Green, or Blue) to be written. 
     282; @keyword CHANNEL Display channel (Red, Green, or Blue) to be written. 
    292283;                0 => All channels (the default) 
    293284;                1 => Red channel 
     
    299290;                images can be displayed on any device supported by IMDISP. 
    300291; 
    301 ;    BACKGROUND If set to a positive integer, the background will be filled 
     292; @keyword BACKGROUND If set to a positive integer, the background will be filled 
    302293;                with the color defined by BACKGROUND. 
    303294; 
    304 ;    ERASE      If set, the screen contents will be erased. Note that if 
     295; @keyword ERASE If set, the screen contents will be erased. Note that if 
    305296;                !P.MULTI is set to display multiple images, the screen is 
    306297;                always erased when the first image is displayed. 
    307298; 
    308 ;    AXIS        If set, plot axes will be drawn on the image. The default 
     299; @keyword AXIS If set, plot axes will be drawn on the image. The default 
    309300;                x and y axis ranges are determined by the size of the image. 
    310301;                When the AXIS keyword is set, IMDISP accepts any keywords 
    311302;                supported by PLOT (e.g. TITLE, COLOR, CHARSIZE etc.). 
    312303; 
    313 ;    NEGATIVE    If set, a photographic negative of the image is displayed. 
     304; @keyword NEGATIVE If set, a photographic negative of the image is displayed. 
    314305;                The values of BOTTOM and NCOLORS are honored. This keyword 
    315306;                allows True color images scanned from color negatives to be 
     
    318309;                is ignored if the NOSCALE keyword is set. 
    319310; 
    320 ; OUTPUTS: 
    321 ;    None. 
    322 ; 
    323 ; OPTIONAL OUTPUTS: 
    324 ;    None 
    325 ; 
    326 ; COMMON BLOCKS: 
    327 ;    None 
    328 ; 
    329 ; SIDE EFFECTS: 
    330 ;    The image is displayed on the current graphics device. 
    331 ; 
    332 ; RESTRICTIONS: 
    333 ;    Requires IDL 5.0 or higher (square bracket array syntax). 
    334 ; 
    335 ; EXAMPLE: 
     311; @restrictions The image is displayed on the current graphics device. 
     312; 
     313; @restrictions Requires IDL 5.0 or higher (square bracket array syntax). 
     314; 
     315; @examples 
    336316; 
    337317;;- Load test data 
     
    472452;map_grid 
    473453; 
    474 ; MODIFICATION HISTORY: 
    475 ; Liam.Gumley@ssec.wisc.edu 
     454; @history Liam.Gumley@ssec.wisc.edu 
    476455; http://cimss.ssec.wisc.edu/~gumley 
    477 ; $Id: imdisp.pro,v 1.47 2002/06/05 16:31:07 gumley Exp $ 
    478456; 
    479457; Copyright (C) 1999, 2000 Liam E. Gumley 
     
    492470; along with this program; if not, write to the Free Software 
    493471; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. 
     472; 
     473; @version $Id: imdisp.pro,v 1.47 2002/06/05 16:31:07 gumley Exp $ 
     474; 
    494475;- 
     476;------------------------------------------------------------------------------- 
     477PRO IMDISP, IMAGE, RANGE=RANGE, BOTTOM=BOTTOM, NCOLORS=NCOLORS, $ 
     478  MARGIN=MARGIN, INTERP=INTERP, DITHER=DITHER, ASPECT=ASPECT, $ 
     479  POSITION=POSITION, OUT_POS=OUT_POS, NOSCALE=NOSCALE, NORESIZE=NORESIZE, $ 
     480  ORDER=ORDER, USEPOS=USEPOS, CHANNEL=CHANNEL, $ 
     481  BACKGROUND=BACKGROUND, ERASE=ERASE, $ 
     482  AXIS=AXIS, NEGATIVE=NEGATIVE, _EXTRA=EXTRA_KEYWORDS 
     483; 
     484  compile_opt idl2, strictarrsubs 
     485; 
    495486 
    496487rcs_id = '$Id: imdisp.pro,v 1.47 2002/06/05 16:31:07 gumley Exp $' 
  • trunk/SRC/Picture/saveimage.pro

    r132 r133  
    1 PRO SAVEIMAGE, FILE, BMP=BMP, PNG=PNG, PICT=PICT, JPEG=JPEG, TIFF=TIFF, $ 
    2   QUALITY=QUALITY, DITHER=DITHER, CUBE=CUBE, QUIET=QUIET, MULTIPLE = multiple 
    3 ; 
    4   compile_opt idl2, strictarrsubs 
    5 ; 
    6  
    71;+ 
    8 ; NAME: 
    9 ;    SAVEIMAGE 
    10 ; 
    11 ; PURPOSE: 
    12 ;    Save the current graphics window to an output file (GIF by default). 
     2; 
     3; @file_comments  
     4; Save the current graphics window to an output file (GIF by default). 
    135; 
    146;    The output formats supported are: 
     
    2315;    8-bit or 24-bit output files are done automatically. 
    2416; 
    25 ; CATEGORY: 
    26 ;    Input/Output. 
    27 ; 
    28 ; CALLING SEQUENCE: 
    29 ;    SAVEIMAGE, FILE 
    30 ; 
    31 ; INPUTS: 
    32 ;    FILE     Name of the output file (GIF format by default). 
    33 ; 
    34 ; OPTIONAL INPUTS: 
    35 ;    None. 
    36 ; 
    37 ; KEYWORD PARAMETERS: 
    38 ;    BMP      Set this keyword to create BMP format (8-bit with color table). 
    39 ;    PNG      Set this keyword to create PNG format (8-bit with color table). 
    40 ;    PICT     Set this keyword to create PICT format (8-bit with color table). 
    41 ;    JPEG     Set this keyword to create JPEG format (24-bit true color). 
    42 ;    TIFF     Set this keyword to create TIFF format (24-bit true color). 
    43 ;    QUALITY  If set to a named variable, specifies the quality for 
     17; @categories Input/Output. 
     18; 
     19; @param FILE {in}{required} Name of the output file (GIF format by default). 
     20; 
     21; @keyword BMP Set this keyword to create BMP format (8-bit with color table). 
     22; 
     23; @keyword PNG Set this keyword to create PNG format (8-bit with color table). 
     24; 
     25; @keyword PICT Set this keyword to create PICT format (8-bit with color table). 
     26; 
     27; @keyword JPEG Set this keyword to create JPEG format (24-bit true color). 
     28; 
     29; @keyword TIFF Set this keyword to create TIFF format (24-bit true color). 
     30; 
     31; @keyword QUALITY  If set to a named variable, specifies the quality for 
    4432;             JPEG output (default 75). Ranges from 0 ("terrible") to 
    4533;             100 ("excellent"). Smaller quality values yield higher 
    4634;             compression ratios and smaller output files. 
    47 ;    DITHER   If set, dither the output image when creating 8-bit output 
     35; 
     36;@keyword DITHER   If set, dither the output image when creating 8-bit output 
    4837;             which is read from a 24-bit display (default is no dithering). 
    49 ;    CUBE     If set, use the color cube method to quantize colors when 
     38; 
     39; @keyword CUBE     If set, use the color cube method to quantize colors when 
    5040;             creating 8-bit output which is read from a 24-bit display 
    5141;             (default is to use the statistical method). This may improve 
    5242;             the accuracy of colors in the output image, especially white. 
    53 ;   QUIET    Set this keyword to suppress the information message 
     43; @keyword QUIET    Set this keyword to suppress the information message 
    5444;             (default is to print an information message). 
    55 ;    MULTIPLE to write multiple gif image 
    56 ; 
    57 ; OUTPUTS: 
    58 ;    None. 
    59 ; 
    60 ; OPTIONAL OUTPUTS: 
    61 ;    None 
    62 ; 
    63 ; COMMON BLOCKS: 
    64 ;    None 
    65 ; 
    66 ; SIDE EFFECTS: 
    67 ;    The output file is overwritten if it exists. 
    68 ; 
    69 ; RESTRICTIONS: 
    70 ;    Requires IDL 5.0 or higher (square bracket array syntax). 
    71 ; 
    72 ; EXAMPLE: 
     45; @keyword MULTIPLE to write multiple gif image. 
     46; 
     47; @restrictions The output file is overwritten if it exists. 
     48; 
     49;  
     50; @restrictions requires IDL 5.0 or higher (square bracket array syntax). 
     51; 
     52; @examples 
    7353; 
    7454;openr, lun, filepath('hurric.dat', subdir='examples/data'), /get_lun 
     
    8060;saveimage, 'hurric.gif' 
    8161; 
    82 ; MODIFICATION HISTORY: 
    83 ; Liam.Gumley@ssec.wisc.edu 
     62; @history Liam.Gumley@ssec.wisc.edu 
    8463; http://cimss.ssec.wisc.edu/~gumley 
    85 ; $Id$ 
    86 ; 
    87 ; Copyright (C) 1999 Liam E. Gumley 
    8864; 
    8965; This program is free software; you can redistribute it and/or 
     
    10076; along with this program; if not, write to the Free Software 
    10177; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. 
     78; 
     79; @version $Id$ 
     80; 
    10281;- 
     82PRO SAVEIMAGE, FILE, BMP=BMP, PNG=PNG, PICT=PICT, JPEG=JPEG, TIFF=TIFF, $ 
     83  QUALITY=QUALITY, DITHER=DITHER, CUBE=CUBE, QUIET=QUIET, MULTIPLE = multiple 
     84; 
     85  compile_opt idl2, strictarrsubs 
     86; 
    10387 
    10488rcs_id = '$Id$' 
  • trunk/SRC/Picture/showimage.pro

    r132 r133  
    1 PRO SHOWIMAGE, FILE, DITHER=DITHER, CURRENT=CURRENT 
    2 ; 
    3   compile_opt idl2, strictarrsubs 
    4 ; 
    5  
    61;+ 
    7 ; NAME: 
    8 ;    SHOWIMAGE 
    9 ; 
    10 ; PURPOSE: 
    11 ;    Show the contents of a graphics file in the current window. 
     2; 
     3; @file_comments  
     4; Show the contents of a graphics file in the current window. 
    125; 
    136;    The input formats supported are: 
     
    2114;    to 8-bit or 24-bit images on-screen are done automatically. 
    2215; 
    23 ; CATEGORY: 
    24 ;    Input/Output. 
    25 ; 
    26 ; CALLING SEQUENCE: 
    27 ;    SHOWIMAGE, FILE 
    28 ; 
    29 ; INPUTS: 
    30 ;    FILE     Name of the output file (format is identified automatically). 
    31 ; 
    32 ; OPTIONAL INPUTS: 
    33 ;    None. 
    34 ; 
    35 ; KEYWORD PARAMETERS: 
    36 ;    DITHER   Set this keyword to dither the input image when displaying 
     16; @categories Input/Output. 
     17; 
     18; @param FILE {in}{required} Name of the output file (format is identified automatically). 
     19; 
     20; @keyword DITHER Set this keyword to dither the input image when displaying 
    3721;             24-bit images on an 8-bit display (default is no dithering). 
    38 ;    CURRENT Set this keyword to display the image in the current window 
     22; @keyword CURRENT Set this keyword to display the image in the current window 
    3923;             (default is to create a new window sized to fit the image). 
    4024; 
    41 ; OUTPUTS: 
    42 ;    None. 
    43 ; 
    44 ; OPTIONAL OUTPUTS: 
    45 ;    None 
    46 ; 
    47 ; COMMON BLOCKS: 
    48 ;    None 
    49 ; 
    50 ; SIDE EFFECTS: 
    51 ;    The color table is modified. 
    52 ; 
    53 ; RESTRICTIONS: 
    54 ;    Requires IDL 5.2 or higher (image QUERY functions). 
    55 ; 
    56 ; EXAMPLE: 
    57 ; 
    58 ;showimage, filepath('rose.jpg', subdir='examples/data') 
    59 ; 
    60 ; MODIFICATION HISTORY: 
    61 ; Liam.Gumley@ssec.wisc.edu 
     25; @restrictions The color table is modified. 
     26; 
     27; @restrictions Requires IDL 5.2 or higher (image QUERY functions). 
     28; 
     29; @examples showimage, filepath('rose.jpg', subdir='examples/data') 
     30; 
     31; @history Liam.Gumley@ssec.wisc.edu 
    6232; http://cimss.ssec.wisc.edu/~gumley 
    63 ; $Id$ 
    64 ; 
    65 ; Copyright (C) 1999 Liam E. Gumley 
    6633; 
    6734; This program is free software; you can redistribute it and/or 
     
    7845; along with this program; if not, write to the Free Software 
    7946; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. 
     47; 
     48; @version $Id$  
     49; 
    8050;- 
    81  
     51PRO SHOWIMAGE, FILE, DITHER=DITHER, CURRENT=CURRENT 
     52; 
     53  compile_opt idl2, strictarrsubs 
     54; 
    8255rcs_id = '$Id$' 
    8356 
Note: See TracChangeset for help on using the changeset viewer.