home *** CD-ROM | disk | FTP | other *** search
/ Graphics 16,000 / graphics-16000.iso / amiga / jpeg / jpegv4.lha / jpegv4 / readme.amiga next >
Encoding:
Text File  |  1993-06-10  |  1.7 KB  |  54 lines

  1. This is just a short descriptions of the specialties of this version.
  2. For more information, read the manuals and the file "USAGE".
  3.  
  4.  
  5. GENERAL USAGE
  6. -------------
  7. This version is configured to behave in unix-style, that is, to
  8. write their output to stdout instead to a file and read their
  9. input from stdin if no file is given.
  10.  
  11. Thus, the syntax is (substitute c or d for X):
  12.     Xjpeg [options] [inputfile] > outputfile
  13. and NOT
  14.     Xjpeg [options] inputfile outputfile
  15.  
  16. Why?  Well, because (a) because all PBMPlus programs behave that way,
  17. and (b) its useful for pipes:
  18.     djpeg -pnm foo.jpg | ppmquant 32 | ppmtoilbm > foo.ilbm
  19.     ilbmtoppm foo.ilbm | cjpeg -smooth 20 > foo.jpg
  20.  
  21.  
  22. VIRTUAL MEMORY
  23. --------------
  24. Memory usage is limited to 1M as a default.  If a program needs more memory,
  25. it uses temporary files.
  26.  
  27. You can control the maximum memory in two ways:
  28.  a) with the option -maxmemory
  29.  b) with an environment variable JPEGMEM
  30.  
  31. For example, if you want the programs to use up to 4M before using temporary
  32. files, just do this:
  33.     setenv JPEGMEM  "4M"
  34.  
  35. You can also control where the temporary files go.  The default is JPEGTMP:,
  36. but you can override this with an environment variable JPEGTMP (don't get
  37. confused, the first is an assign, the second the name of an environment var).
  38. The environment variable gives the name of a directory, thus its value must
  39. end in ':' or '/'.  For example:
  40.     setenv JPEGTMP  "work:temp/jpeg/"
  41.  
  42.  
  43. TECHNICAL INFO
  44. --------------
  45. The programs were compiled with DICE 2.07.54R.  They are "pure" (can be made
  46. resident) and use dynamic stacks (if they run out of stack they automagically
  47. allocate some more space).
  48.  
  49.  
  50. Happy jpeg'ing,
  51. Ingo
  52. email: Ingo.Wilken@informatik.uni-oldenburg.de
  53.  
  54.