home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / programmer / 4376 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.2 KB

  1. Path: doc.ic.ac.uk!not-for-mail
  2. From: mdf@doc.ic.ac.uk (Martin Frost)
  3. Newsgroups: comp.sys.amiga.programmer
  4. Subject: Re: LBM question
  5. Date: 28 Feb 1996 12:32:16 -0000
  6. Organization: Dept. of Computing, Imperial College, University of London, UK.
  7. Distribution: world
  8. Message-ID: <4h1i0g$f87@oak26.doc.ic.ac.uk>
  9. References: <1996Feb21.132750.12140@ms.philips.nl>
  10. Reply-To: mdf@doc.ic.ac.uk (Martin Frost)
  11. NNTP-Posting-Host: oak26.doc.ic.ac.uk
  12. X-Newsreader: mxrn 6.18-23
  13.  
  14.  
  15. In article <1996Feb21.132750.12140@ms.philips.nl>, tjakobs@ms.philips.nl (JAKOBS_TWJ) writes:
  16. >     There is a byte in the BitMapHeader called MaskPlane,
  17. >     What does this mean, With regard to the decompression of the
  18. >     Picture...
  19.  
  20. This tells the reader how to construct a mask for drawing the picture into a
  21. bigger image. If this byte is set to the correct value (I think it's 1), it
  22. means that there is an extra plane of masking data after each line, which
  23. must be skipped if you can't use it. I don't have my manuals with me so I
  24. can't tell you the exact numbers.
  25.  
  26. Instead of 
  27.  
  28.  line 0:   plane 1    ...    plane n
  29.  line 1:   plane 1    ...    plane n
  30.  ...
  31.  
  32. you have
  33.  
  34.  line 0:   plane 1    ...    plane n    mask
  35.  line 1:   plane 1    ...    plane n    mask
  36.  ...
  37.  
  38. Martin
  39.