home *** CD-ROM | disk | FTP | other *** search
/ Becoming a Computer Animator / COMPANIMATE.ISO / pc / language / makeflc.doc < prev    next >
Encoding:
Text File  |  1992-08-24  |  2.1 KB  |  51 lines

  1. MakeFlc   24-08-1992   This program is not documented, and is still
  2.                        under development.
  3. ----------------------------------------------------------------------------
  4.  
  5. This program is used to convert gif images made with 24bit to gif mode
  6. in RenderStar to FLC files. This program can also be used to downscale
  7. a GIF image, for example a 1280x960 GIF image can be downscaled to
  8. 640x480 and therefor generate a natural anti-alias method.
  9.  
  10. Options
  11. -------
  12. input  -f        process one single frame, don't count
  13. output -g        output gifs instead of flc
  14. output -d        delete gif input frame when finished
  15. quant  -1        one palette on output
  16. quant  -a        anti-alias by down-scaling
  17.  
  18. Examples
  19. --------
  20. makeflc \dir\name       will convert \dir\name___0 etc. into \dir\name.flc.
  21. makeflc -1 \dir\name    will do a two pass quant over the whole series.
  22. makeflc -ga \dir\name   will down scale, re-quant and output a gif series.
  23. makeflc name__100       will start making a flc from frame 100.
  24. makeflc -fga \dir\name  will allow extra anti aliasing on a frame by frame basis.
  25.  
  26. The rez of the first frame is used for the whole series. If a frame is
  27. found with a different rez the program will abort.
  28.  
  29. When outputing gifs the files are written back with the same filename
  30. so no extra disc space is used during this process.
  31.  
  32. With the -d option the gifs are deleted while the flc is build.
  33.  
  34. The anti-alias option is based on a size reduction by 2 combined with
  35. a 3 by 3 weigthed convolution filter.
  36.  
  37. When dithering everything with the background color will be skipped.
  38. This color is passed along in the gif file so MakeFLC can find it again.
  39. It will keep the background dither free and pass along the color in
  40. subsequent operations. (works only with engine 2.15 and higher)
  41.  
  42. -- -1 and -a don't work well together. it is more efficient to do
  43.  
  44.    makeflc -ga \dir\name
  45.    makeflc -1 \dir\name
  46.  
  47.    in succession. this way no temp files (they would be tga's !!) are
  48.    needed and the final one palette quant will use the already smaller frames.
  49.  
  50. -- speed is set to 0 as default.
  51.