home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / CDRom / PHOTOC12.LZX / doc / ppm2AGA.doc < prev    next >
Encoding:
Text File  |  1995-04-12  |  11.9 KB  |  368 lines

  1.  
  2.                          ppm2AGA 1.6a by Günther Röhrich
  3.                          *******************************
  4.  
  5.  
  6. ppm2AGA ist a program for converting the ppm, pgm and pbm picture format into
  7. the IFF-ILBM format. For owners of an AGA-Amiga it is now possible to create
  8. high quality pictures without having to pay much money for a commercial image
  9. processing software. Together with the NETPBM-package it is possible to convert
  10. every other picture format and to do some basic image processing. If you want
  11. to convert PhotoCD pictures you will need the programs PhotoCDAGA or hpcdtoppm.
  12.  
  13. The advantages of ppm2AGA:
  14. - very high quality in the HAM8-mode
  15.   (better than some commercial programs)
  16. - processing pictures that are larger than the available memory is possible
  17. - saving to the Clipboard is possible
  18. - colormaps with full 24 Bit color precision are supported
  19. - the source is available
  20. - runs on all Amiga's with all processors  (even with KS 1.2/1.3 if
  21.   iffparse.library V37 is available)
  22. - you can create AGA pictures on non-AGA machines
  23.  
  24.  
  25. This program is Freeware with the following restrictions:
  26.  
  27. Some parts of the program are taken from the NETPBM-package and are therefore
  28. Copyright (C) 1989, 1991 by Jef Poskanzer. These parts are heavily modified.
  29.  
  30. This is allowed by the original author as you can read in the following text
  31. written by him:
  32.  
  33. Permission to use, copy, modify, and distribute this software and its
  34. documentation for any purpose and without fee is hereby granted, provided
  35. that the above copyright notice appear in all copies and that both that
  36. copyright notice and this permission notice appear in supporting
  37. documentation.  This software is provided "as is" without express or
  38. implied warranty.
  39.  
  40. If you modify or redistribute ppm2AGA you have to take care of this
  41. permission notice. The files in the directory "Developer" are written
  42. completely by me and they are therefore not covered by the copyright notice.
  43. You can do what you want with them.
  44.  
  45.  
  46. I have to thank the following persons:
  47.  
  48. Jef Poskanzer (jef@well.sf.ca.us):
  49.  for the development of the ppm-format and the pbm-software
  50.  
  51. Ingo Wilken (Ingo.Wilken@informatik.uni-oldenburg.de):
  52.  for the Amiga-specific parts of NETPBM and for ppmtoilbm.c
  53.  
  54. Johan Widen (jw@jwdata.se):
  55.  for the chunky->planar conversion routine in ppmtoilbm.c
  56.  
  57. Paul Heckbert:
  58.  the color quantizing routine in ppmquant.c is based on his article in
  59.  "SIGGRAPH '82 Proceedings", p. 297
  60.  
  61. The Independent JPEG Group (jpeg-info@uunet.uu.net):
  62.  for the source for decoding/encoding the JPEG-format
  63.  
  64. ***********************************************************************
  65.  
  66. I have created two versions of the program:
  67.  
  68. ppm2AGA.000 for 68000 and 68010 processors, it runs on all others too
  69. ppm2AGA.020 for 68020 or higher processors
  70.  
  71. I don't know if the 68000-version works because I don't have a 68000-based
  72. Amiga to test it. As operating system you will need OS 2.0 or higher.
  73.  
  74.  
  75. Invoking ppm2AGA:
  76.  
  77.   ppm2AGA inputfile outputfile options
  78.  
  79.  
  80. inputfile
  81. *********
  82.  
  83. The name of the file that should be read. Supported picture formats are:
  84. PPM - color, 24 bit/pixel (16Meg colors)
  85. PGM - greyscale, 8 bit/pixel (256 greyscales)
  86. PBM - black/white, 1 bit/pixel
  87. Both binary and ASCII formats are accepted. More informations can be found
  88. in the NETPBM-package.
  89.  
  90.  
  91. outputfile
  92. **********
  93.  
  94. This is the name of the IFF-ILBM file that should be created. If you use -cn
  95. as a name then the file will be written to the Clipboard with unit number n.
  96. (You should normally use unit number 0.)
  97.  
  98.  
  99. options
  100. *******
  101.  
  102. All options are case-insensitive. If they are not set then internal default
  103. values will be used.
  104.  
  105.  
  106. -HAM8 (default)
  107.  
  108. Use the HAM8 conversion method. This allows a total of 262144 different colors
  109. for the created picture.
  110.  
  111.  
  112. -HAM6
  113.  
  114. Use HAM6-mode. The quality is not very good (compared to other programs). The
  115. created picture may have max. 4096 colors.
  116. mode.
  117.  
  118.  
  119. -CMAPn
  120.  
  121. Use the colormap conversion method with n bitplanes. (max. 8) The created
  122. pictures will have max. 2^n colors out of about 16 millions.
  123. If you display the picture on an ECS/OCS machine with the original hardware 
  124. then the picture will not show the original colors because these machines only
  125. support a color selection out of 4096 colors.
  126. You can use the -FS option with this mode.
  127.  
  128.  
  129. -E
  130.  
  131. (Only for use in combination with the -CMAPn option.)
  132. Use this option when you know that the ppm-file has a limited number of colors.
  133. (less than 10000) This is for example the case when the ppm-file results from
  134. a colormapped picture format like GIF, BMP, etc.
  135. This option ensures that the original colors will be preserved. When converting
  136. the pgm-format this option will be set automatically because pgm-files have max.
  137. 256 greyscales.
  138.  
  139.  
  140. -FS
  141.  
  142. Use Floyd-Steinberg dithering. This may enhance the picture qualitiy.
  143. When used with the HAM8-mode the enhancement will not be that much.
  144.  
  145.  
  146. -Mx
  147.  
  148. Load pictures up to size x (in bytes) into memory. (default: 1000000)
  149.  
  150.  
  151. -2 
  152.  
  153. Use two-pass processing in the HAM6/HAM8 mode. This gives slightly better
  154. results. With digitized pictures you will not see any difference in most
  155. cases.
  156. (Version 1.0 of ppm2AGA always used two passes.)
  157.  
  158.  
  159. -D
  160.  
  161. Display the picture during processing. You need OS 3.0 or higher. If the
  162. screen cannot be opened processing will continue without display. To move
  163. the screen around with the mouse you have to activate it first. It also
  164. has a hidden drag bar and depth gadget. 
  165.  
  166.  
  167. -VGA
  168.  
  169. The picture will always use the VGA screenmode (also called 'multiscan').
  170. If your machine does not support this mode you will have problems showing
  171. the picture. Use this option when you know that the picture was intended for
  172. displaying on a PC or other machines with quadratic screen resolution.
  173.  
  174. NOTE: With 'quadratic' I don't mean that the screen has the same number of
  175. pixels in horizontal and vertical direction. (e.g. 1024x1024)
  176. I mean that a square composed of e.g. 100x100 pixels will be shown as a
  177. square on the screen. Because a usual picture tube has a ratio of 4 to 3
  178. the screen's resolution must be a multiple of that. (e.g. 640x480 because
  179.  
  180.  640   4
  181.  --- = - )
  182.  480   3
  183.  
  184.  
  185. -SMR
  186.  
  187. When setting this option you can use a screen mode requester to choose the
  188. display mode. But you can choose only display modes that are available on your
  189. machine. You will also need Workbench 2.1 or higher.
  190. The options -HAM8, -HAM6, -CMAPx and -VGA will be ignored if they are set.
  191.  
  192.  
  193. -jpegAGA
  194.  
  195. Instead of an IFF-ILBM file a map-file for the program jpegAGA/PhotoCDAGA will
  196. be created. Normally, map-files are created by using a shell script. See the
  197. documentation to jpegAGA/PhotoCDAGA for more.
  198.  
  199. If it is not possible to store the map-file in the specified place (for example
  200. if the storage media is full or write protected) then the map-file will be
  201. stored into the directory pointed to by the MAPDIR environment variable.
  202. jpegAGA 1.1 or higher will also search the map-file in that place, same with
  203. PhotoCDAGA.
  204.  
  205.  
  206. -b Name
  207.  
  208. Create a map-file with the base-name "Name". This is useful when creating map-
  209. files for the program PhotoCDAGA. (see there for more) The environment variable
  210. MAPDIR also must be set.
  211.  
  212.  
  213. If you don't know what options to use to get the best quality make three
  214. conversions with the options: -HAM8 -FS, -CMAP8, -CMAP8 -FS and compare the
  215. results.
  216.  
  217. There is also a JPEG decompression program included. It converts JPEG
  218. pictures to the ppm format. To use it enter:
  219.  
  220.  djpeg inputfile outputfile
  221.  
  222. In some cases djpeg will try to store temporary files to JPEGTMP:, you
  223. have then to assign this directory to somewhere on your hard disk.
  224. (for example assign JPEGTMP: HD:T)
  225. For more informations read the included documentation.
  226.  
  227.  
  228. How the program works
  229. *********************
  230.  
  231. Not translated into English yet. Read the German documentation.
  232.  
  233.  
  234. Questions and answers
  235. *********************
  236.  
  237. Not translated into English yet. Read the German documentation. :-(
  238.  
  239.  
  240.  
  241. History
  242. *******
  243.  
  244. 1.0 - 19-Apr-1994
  245.     
  246.     - first public release
  247.  
  248.  
  249. 1.1 - 5-May-1994
  250.  
  251.     - added -2 option
  252.     - one-pass processing is now the default in HAM6/HAM8 mode
  253.       (use the -2 option to get the same results as version 1.0)
  254.     - added -D option to display the picture during processing
  255.     - the documentation now contains my correct EMAIL-address
  256.  
  257.  
  258. 1.2 - 15-May-1994
  259.  
  260.     - autoscroll bug fixed (forgot to set the SA_Overscan Tagitem)
  261.     - added -VGA option
  262.  
  263.  
  264. 1.3 - 4-June-1994
  265.  
  266.     - added -jpegAGA option for creating map-files for the program jpegAGA
  267.  
  268.  
  269. 1.4 - 6-October-1994
  270.  
  271.     - added support for the MAPDIR environment variable to be conformant with
  272.       jpegAGA 1.1 or higher
  273.     - you can now use Floyd-Steinberg dithering in the HAM8-mode
  274.     - added -SMR option to let you choose the screenmode much better
  275.  
  276. 1.5 - 19-November-1994
  277.  
  278.     - fixed a possible Enforcer hit
  279.     - added option -b Name as needed by PhotoCDAGA
  280.  
  281. 1.6 - 8-January-1995
  282.  
  283.     - the picture screen will be set to the background before closing it
  284.     - pictures in HAM6 mode are now shown correctly on AGA machines
  285.     - when HAM pictures are moved around the errors at the left side will be
  286.       much smaller
  287.  
  288. 1.6a - 12-April-1995
  289.  
  290.     - ixemul.library is not needed any more
  291.  
  292.  
  293. Announcement
  294. ************
  295.  
  296. The actual version of this program does not offer very much. My spare time
  297. is very limited because I am now studying Electrical Engineering at the Uni-
  298. versity Stuttgart. Therefore I am searching for other developers to cooperate
  299. with me and beta-testers for testing purposes. If you want to join in then
  300. please contact me. I will then create a detailed description of the source.
  301.  
  302. To recompile the source you need the newiff package from Commodore.
  303. V37 is available on Fish-disk 705 and V39 on the "3.1 Amiga Developer Update"
  304. disks. (Or on Aminet and on the Fresh Fish CD-ROM's.)
  305. If you find a bug, a Mungwall/Enforcer hit, or if you have some suggestions
  306. for additional features then send me a message.
  307.  
  308. Future plans:
  309. - PhotoCD viewer/converter with the picture quality of jpegAGA/ppm2AGA
  310.   (This is already done :-)
  311. - graphical user interface
  312. - support for animations, especially converting MPEG to IFF-ANIM in HAM8 mode
  313. - support for other picture formats and basic image processing
  314.   (scaling, clipping, etc.)
  315. - ARexx-port
  316. - documentation in TeX-DVI and AmigaGuide format
  317. - complete (and correct) translation of the German documentation
  318. - fast ppm-viewer using the HAM8-mode with fixed colormap and doubled horizontal
  319.   resolution for higher quality, perhaps as datatype
  320.   (If you don't understand what I mean then send me a note)
  321. - using the colormap from other pictures instead of computing it
  322. - etc.
  323.  
  324. Next project: jpegAGA 2.0, with following new features:
  325. - based on IJG JPEG V5 code (instead of V4)
  326. - high speed scaling, can be used for VERY fast preview
  327.   (only a few seconds even for large JPEG's)
  328. - little bit faster
  329.  
  330.  
  331. All messages/gifts/etc. should be sent to the following addresses:
  332.  
  333.  
  334.   electronic mail:                                  normal mail:
  335.   ****************                                  ************
  336.  
  337.  Guenther@studbox.uni-stuttgart.de                  Günther Röhrich
  338.      (Internet EMAIL)                               Lerchenbergstr. 4
  339.                                                     73733 Esslingen
  340.                                                         Germany
  341.  
  342.  
  343. If you don't get an answer to a EMAIL within 3 weeks then try it again
  344. with normal mail.
  345.  
  346.  
  347. Here is how to get all the stuff I mentioned in the doc:
  348. ********************************************************
  349.  
  350. The NETPBM-package and the JPEG-source are available via FTP.
  351. (for example from ftp.uni-stuttgart.de)
  352.  
  353. NETPBM: ftp.uni-stuttgart.de in aminet/gfx/pbm
  354.         (or on all the other Aminet mirrors)
  355.         ftp.uni-oldenburg.de in ?
  356.  
  357. JPEG:   ftp.uu.net in graphics/jpeg
  358.         (or on Aminet in gfx/conv)
  359.  
  360.  
  361. If you have no other possibility you can get everything directly from me.
  362.  
  363. In the document "Info.Developer" you can read how to get other developer
  364. material, especially the "3.1 Amiga Developer Update".
  365.  
  366. NOTE: Commodore does not exist any more, I don't know if it is still possible
  367. to get developer materials. Try to contact the German company Hirsch & Wolf oHG.
  368.