home *** CD-ROM | disk | FTP | other *** search
/ Mega A/V / mega_av.zip / mega_av / GRAPHUTL / PBMPLUS.ZIP / PBM.MAN < prev    next >
Text File  |  1991-08-11  |  4KB  |  133 lines

  1.  
  2.  
  3. pbm(5)                     Unix Programmer's Manual                     pbm(5)
  4.  
  5.  
  6. NNNAAAMMMEEE
  7.      pbm - portable bitmap file format
  8.  
  9. DDDEEESSSCCCRRRIIIPPPTTTIIIOOONNN
  10.      The portable bitmap format is a lowest common denominator monochrome file
  11.      format.  It was originally designed to make it reasonable to mail bitmaps
  12.      between different types of machines  using  the  typical  stupid  network
  13.      mailers  we  have today.  Now it serves as the common language of a large
  14.      family of bitmap conversion filters.  The definition is as follows:
  15.  
  16.      - A "magic number" for identifying the file type.   A  pbm  file's  magic
  17.        number is the two characters "P1".
  18.  
  19.      - Whitespace (blanks, TABs, CRs, LFs).
  20.  
  21.      - A width, formatted as ASCII characters in decimal.
  22.  
  23.      - Whitespace.
  24.  
  25.      - A height, again in ASCII decimal.
  26.  
  27.      - Whitespace.
  28.  
  29.      - Width * height bits, each either '1' or '0', starting at  the  top-left
  30.        corner of the bitmap, proceding in normal English reading order.
  31.  
  32.      - The character '1' means black, '0' means white.
  33.  
  34.      - Whitespace in the bits section is ignored.
  35.  
  36.      - Characters from a "#" to the next end-of-line are ignored (comments).
  37.  
  38.      - No line should be longer than 70 characters.
  39.  
  40.      Here is an example of a small bitmap in this format:
  41.      P1
  42.      # feep.pbm
  43.      24 7
  44.      0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  45.      0 1 1 1 1 0 0 1 1 1 1 0 0 1 1 1 1 0 0 1 1 1 1 0
  46.      0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0
  47.      0 1 1 1 0 0 0 1 1 1 0 0 0 1 1 1 0 0 0 1 1 1 1 0
  48.      0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0
  49.      0 1 0 0 0 0 0 1 1 1 1 0 0 1 1 1 1 0 0 1 0 0 0 0
  50.      0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  51.  
  52.      Programs that  read  this  format  should  be  as  lenient  as  possible,
  53.      accepting anything that looks remotely like a bitmap.
  54.  
  55.      There is also a variant on the format, available by setting  the  RAWBITS
  56.      option at compile time.  This variant is different in the following ways:
  57.  
  58.      - The "magic number" is "P4" instead of "P1".
  59.  
  60.  
  61.  
  62.  
  63.  
  64.                               21 September 1989                              1
  65.  
  66.  
  67.  
  68.  
  69. pbm(5)                     Unix Programmer's Manual                     pbm(5)
  70.  
  71.  
  72.      - The bits are stored eight per byte, high bit first low bit last.
  73.  
  74.      - No whitespace is allowed  in  the  bits  section,  and  only  a  single
  75.        character  of  whitespace  (typically  a  newline) is allowed after the
  76.        height.
  77.  
  78.      - The files are eight times smaller and many times  faster  to  read  and
  79.        write.
  80.  
  81. SSSEEEEEE AAALLLSSSOOO
  82.      brushtopbm(1),  cmuwmtopbm(1),  g3topbm(1),  gemtopbm(1),   icontopbm(1),
  83.      macptopbm(1),   mgrtopbm(1),   pi3topbm(1),   xbmtopbm(1),   ybmtopbm(1),
  84.      pbmto10x(1), pbmtoascii(1), pbmtobbnbg(1), pbmtocmuwm(1),  pbmtoepson(1),
  85.      pbmtog3(1),    pbmtogem(1),    pbmtogo(1),    pbmtoicon(1),   pbmtolj(1),
  86.      pbmtomacp(1),  pbmtomgr(1),   pbmtopi3(1),   pbmtoplot(1),   pbmtoptx(1),
  87.      pbmtox10bm(1),   pbmtoxbm(1),   pbmtoybm(1),   pbmtozinc(1),  pbmlife(1),
  88.      pbmmake(1), pbmmask(1), pbmpaste(1), pbmreduce(1), pbmtext(1), pbmupc(1),
  89.      pnm(5), pgm(5), ppm(5)
  90.  
  91. AAAUUUTTTHHHOOORRR
  92.      Copyright (C) 1989, 1991 by Jef Poskanzer.
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.                               21 September 1989                              2
  131.  
  132.  
  133.