home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / Chip_2004-11_cd1.bin / software / optipng / TODO.txt < prev    next >
Text File  |  2004-05-31  |  1KB  |  43 lines

  1.  
  2. OptiPNG - TODO list
  3. ===================
  4.  
  5. - Text chunk optimization: smart selection between tEXt and zTXt.
  6.   Similarly for iTXt.
  7.  
  8. - More file recovery features.
  9.  
  10. - Optimization of an entire directory, with and without subdirectory
  11.   recursion:
  12.     optipng dir/
  13.     optipng -r dir/
  14.   Currently it is possible to optimize an entire directory as:
  15.     optipng dir/*.png
  16.   provided that file globbing works, either at the shell level (Unix)
  17.   or in the program (linked with wildargs.obj on Windows).
  18.  
  19. - Support for reading external image formats: PNM, BMP, GIF, ...
  20.  
  21. - Support for conversion to a desired bit depth and color type:
  22.     optipng -b16 -c6 ...
  23.  
  24. - Support for chunk-level editing:
  25.     optipng -add text <keyword> <file> ...    # add chunk
  26.     optipng -upd text <keyword> <file> ...    # update (add/replace) chunk
  27.     optipng -del time ...            # delete chunk
  28.     optipng -del visual ...            # delete tRNS, gAMA, sRGB, ...
  29.     optipng -del nonvisual ...            # delete all but tRNS, gAMA ...
  30.     optipng -del textual ...            # delete tEXt, zTXt, iTXt, tIME
  31.     optipng -del nontextual ...            # delete all but tEXt, zTXt ...
  32.     optipng -del gif ...            # delete gIFg, gIFt, gIFx
  33.     optipng -del private ...            # delete all private chunks
  34.     optipng -del all ...            # delete all ancillary chunks
  35.  
  36. - Timer:
  37.     optipng -timer ...
  38.   It may be enough to show the timer under the -v option, without
  39.   needing a new -timer option.
  40.  
  41. - A nice GUI.
  42.  
  43.