1Lispmtopgm User Manual(0) Lispmtopgm User Manual(0)
2
3
4
6 lispmtopgm - convert a Lisp Machine bitmap file to PGM
7
8
10 lispmtopgm [lispmfile]
11
12
14 This program is part of Netpbm(1).
15
16 listpmfile reads a Lisp Machine bitmap as input and produces a PGM
17 image as output.
18
19 This is the file format written by the tv:write-bit-array-file function
20 on TI Explorer and Symbolics lisp machines.
21
22 Multi-plane bitmaps on lisp machines are color; but the Lispm image
23 file format does not include a color map, so we must treat it as a
24 monochrome instead and produce PGM. This is unfortunate.
25
26
28 There are no command line options defined specifically for lispmtopgm,
29 but it recognizes the options common to all programs based on libnetpbm
30 (See
31 Common Options ⟨index.html#commonoptions⟩ .)
32
33
35 pgmtolispm(1), pgm(1)
36
37
39 The Lispm bitmap file format is a bit quirky; Usually the image in the
40 file has its width rounded up to the next higher multiple of 32, but
41 not always. If the width is not a multiple of 32, we don't deal with
42 it properly, but because of the Lispm microcode, such arrays are proba‐
43 bly not image data anyway.
44
45 Also, the Lispm code for saving bitmaps has a bug, in that if you are
46 writing a bitmap which is not mod32 across, the file may be up to 7
47 bits too short! They round down instead of up, and we don't handle
48 this bug gracefully.
49
50
52 Copyright (C) 1991 by Jamie Zawinski and Jef Poskanzer.
53
55 This manual page was generated by the Netpbm tool 'makeman' from HTML
56 source. The master documentation is at
57
58 http://netpbm.sourceforge.net/doc/lispmtopgm.html
59
60netpbm documentation 06 March 1990 Lispmtopgm User Manual(0)