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
1 moved

Legend:

Unmodified
Added
Removed
  • 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.