Ignore:
Timestamp:
08/29/06 14:59:46 (18 years ago)
Author:
navarro
Message:

header improvements : type of parameters and keywords, default values, spell checking + idldoc assistant (IDL online_help)

File:
1 edited

Legend:

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

    r136 r163  
    1717; @categories Input/Output. 
    1818; 
    19 ; @param FILE {in}{required} 
    20 ; Name of the output file (GIF format by default). 
     19; @param FILE {in}{required}{default=format GIF} 
     20; Name of the output file 
    2121; 
    2222; @keyword BMP 
     
    3535; Set this keyword to create TIFF format (24-bit true color). 
    3636; 
    37 ; @keyword QUALITY 
     37; @keyword QUALITY {default=75} 
    3838; If set to a named variable, specifies the quality for 
    39 ; JPEG output (default 75). Ranges from 0 ("terrible") to 
     39; JPEG output. Ranges from 0 ("terrible") to 
    4040; 100 ("excellent"). Smaller quality values yield higher 
    4141; compression ratios and smaller output files. 
    4242; 
    43 ; @keyword DITHER 
     43; @keyword DITHER {default=no dithering} 
    4444; If set, dither the output image when creating 8-bit output 
    45 ; which is read from a 24-bit display (default is no dithering). 
    46 ; 
    47 ; @keyword CUBE 
     45; which is read from a 24-bit display. 
     46; 
     47; @keyword CUBE {default=to use statistical method) 
    4848; If set, use the color cube method to quantize colors when 
    49 ; creating 8-bit output which is read from a 24-bit display 
    50 ; (default is to use the statistical method). This may improve 
    51 ; the accuracy of colors in the output image, especially white. 
    52 ; 
    53 ; @keyword QUIET 
    54 ; Set this keyword to suppress the information message 
    55 ; (default is to print an information message). 
     49; creating 8-bit output which is read from a 24-bit display. 
     50; This may improve the accuracy of colors in the output image,  
     51; especially white. 
     52; 
     53; @keyword QUIET {default=to print an information message} 
     54; Set this keyword to suppress the information message. 
    5655; 
    5756; @restrictions 
     
    9190; 
    9291;- 
    93 PRO SAVEIMAGE, FILE, BMP=BMP, PNG=PNG, PICT=PICT, JPEG=JPEG, TIFF=TIFF, $ 
     92PRO saveimage, FILE, BMP=BMP, PNG=PNG, PICT=PICT, JPEG=JPEG, TIFF=TIFF, $ 
    9493  QUALITY=QUALITY, DITHER=DITHER, CUBE=CUBE, QUIET=QUIET, MULTIPLE = multiple 
    9594; 
Note: See TracChangeset for help on using the changeset viewer.