home *** CD-ROM | disk | FTP | other *** search
/ M.u.C.S. Disc 2000 / MUCS2000.iso / anwend / family / images / images.doc < prev    next >
Text File  |  1996-10-02  |  3KB  |  115 lines

  1.     IMAGES FORMATS for FAMILY / HOW TO USE CONVERT.PRG
  2.     **************************************************
  3.  
  4. ~~~~~~~~~~~~~~
  5. Images formats
  6. ~~~~~~~~~~~~~~
  7.  
  8.     For the photos, the one and only size accepted is: 320x240.
  9.         Formats are:
  10.  
  11.     * TGA (2, uncompressed, 24bits/pixel)
  12.         header  18 bytes
  13.         ($00000200, $00000000, $00000000, $4001, $F000, $1820)
  14.         then three bytes per pixel: blue, green, red.
  15.         Total: 230418 bytes
  16.  
  17.     * TIF (uncompressed, 8bits, 24 bits/pixel)
  18.         header 420 bytes starting with 'MM'
  19.         then 3 bytes per pixel red, green, blue.
  20.         Total: 230820 bytes
  21.  
  22.     * 12B (I did it)
  23.         header 14 bytes
  24.         '12b>RVBrvb' + width $0140 + height $00F0
  25.         then 3 bytes for 2 pixels
  26.         RRRRVVVV BBBBrrrr vvvvbbbb
  27.         (12bits, 4096 colors)
  28.         Total: 115214 bytes
  29.         (use CONVERT.PRG)
  30.  
  31.     The use of 12B is highly recommended as it's half the size of the
  32. other formats, and with more than a hundred photos (for my own family), I
  33. saved a lot of place on my HD.
  34.  
  35. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  36. How does Family treat an image?
  37. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  38.  
  39.     It uses a bank of images into RAM (its size is indicated upon
  40. start into the alert box). This bank stores the last images to avoid
  41. repeated accesses to the disk.
  42.  
  43.     With my TT+NOVA+18Mo I get:
  44.     - 97 images in TC
  45.     - 197 images in 256c
  46.     - 200 images in 16c (200 is the limit)
  47.  
  48.     With a Falcon 4Mo (NVDI but not MultiTOS):
  49.     - 3 images TC
  50.     - 17 images 256c
  51.     - 40 images 16c
  52.  
  53.         The bank should contain at least one image, else the program
  54. crashes. You need to free memory:
  55.     - lower resolution
  56.     - no ramdisk
  57.     - less fonts with Speedo
  58.     - no accessories
  59.     - no MultiTOS
  60.  
  61.     Images and sounds share the same loading zone, if an image is
  62. loaded while a sound is playing, it may be stopped!
  63.  
  64.  
  65. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  66. Number of colors and display
  67. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  68.  
  69.     This program was first designed to run in TC, 16c and 256c were
  70. added after to avoid res-change. Those two last modes don't give the same
  71. quality as TC.
  72.  
  73.  
  74.     In 32768 or 65536 colors
  75.     °°°°°°°°°°°°°°°°°°°°°°°°
  76.     Nothing to say, except that on a Falcon 640x480xTC is not always
  77. available.
  78.  
  79.  
  80.         In 256 colors
  81.     °°°°°°°°°°°°°
  82.     I use a fixed palette (very fast). If you're satisfied with this
  83. display the name of the photo (into GENS.DAT) must begin with a lower-case
  84. letter. If you're not satisfied, peut an upper-case letter, you'll get a
  85. 256 grey display instead (very good, but without colors!).
  86.  
  87.     In 16 colors
  88.     °°°°°°°°°°°°
  89.     Few images look good with this fixed palette (sorry), if you're
  90. satisfied, the second letter of the image name must be a lower-case
  91. letter, if you're not satisfied, put an upper-case letter, you'll get a 16
  92. grey display.
  93.  
  94.     Examples:
  95.  
  96.     photo.tga    : always in colors
  97.     Photo.tga    : grey only if 256c
  98.     pHoto.tga    : grey only if 16c
  99.     PHoto.tga    : grey if 256c or 16c
  100.  
  101. ~~~~~~~~~~~~~~~~~~
  102. How to use CONVERT
  103. ~~~~~~~~~~~~~~~~~~
  104.  
  105.     This program allows you to convert images from TGA, TIF or 12B to
  106. TGA, TIF or 12B. It is limited to 320x240 (it doesn't support other
  107. sizes).
  108.  
  109.     You just have to select your source path (with a mask if you
  110. want), the destination format, and the destination path, then click on
  111. Convert!
  112.     Only the extension of the file is changed according to its new
  113. format.
  114.  
  115.