home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pypil112.zip / Scripts / README < prev    next >
Text File  |  2001-05-03  |  2KB  |  77 lines

  1. -------
  2. Scripts
  3. -------
  4.  
  5. This directory contains a number of more or less trivial utilities
  6. and demo programs.
  7.  
  8. Comments and contributions are welcome.
  9.  
  10.     /F
  11.  
  12. --------------------------------------------------------------------
  13. viewer.py
  14.  
  15. A simple image viewer.  Can display all file formats handled by
  16. PIL.  Transparent images are properly handled.
  17.  
  18. --------------------------------------------------------------------
  19. thresholder.py
  20.  
  21. A simple utility that demonstrates how a transparent 1-bit overlay
  22. can be used to show the current thresholding of an 8-bit image.
  23.  
  24. --------------------------------------------------------------------
  25. enhancer.py
  26.  
  27. Illustrates the ImageEnhance module.  Drag the sliders to modify the
  28. images.  This might be very slow on some platforms, depending on the
  29. Tk version.
  30.  
  31. --------------------------------------------------------------------
  32. painter.py
  33.  
  34. Illustrates how a painting program could be based on PIL and Tk.
  35. Press the left mouse button and drag over the image to remove the
  36. colour.  Some clever tricks have been used to get decent performance
  37. when updating the screen; see the sources for details.
  38.  
  39. --------------------------------------------------------------------
  40. player.py
  41.  
  42. A simple image sequence player.  You can use either a sequence format
  43. like FLI/FLC, GIF, or ARG, or give a number of images which are
  44. interpreted as frames in a sequence.  All frames must have the same
  45. size.
  46.  
  47. --------------------------------------------------------------------
  48. gifmaker.py
  49.  
  50. Convert a sequence file to a GIF animation.
  51.  
  52. Note that the GIF encoder provided with this release of PIL writes
  53. uncompressed GIF files only, so the resulting animations are rather
  54. large compared with these created by other tools.
  55.  
  56. --------------------------------------------------------------------
  57. explode.py
  58.  
  59. Split a sequence file into individual frames.
  60.  
  61. --------------------------------------------------------------------
  62. image2py.py
  63.  
  64. Convert an image to a Python module containing an IMAGE variable.
  65. Note that the module using the module must include JPEG and ZIP
  66. decoders, unless the -u option is used.
  67.  
  68. --------------------------------------------------------------------
  69. olesummary.py
  70.  
  71. Uses the OleFileIO module to dump the summary information from an OLE
  72. structured storage file.  This works with most OLE files, including
  73. Word documents, FlashPix images, etc.
  74.  
  75. Note that datetime fields currently show the number of seconds since
  76. January 1st, 1601.
  77.