summaryrefslogtreecommitdiff
path: root/ipl/gprogs/pgmtoims.icn
blob: c58813dc50d2af70d784babf418c102a137df1e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
############################################################################
#
#	File:     pgmtoims.icn
#
#	Subject:  Program to make an image from a PGM file
#
#	Author:   Gregg M. Townsend
#
#	Date:     May 23, 1996
#
############################################################################
#
#   This file is in the public domain.
#
############################################################################
#
#  Usage:  pgmtoims [-gn] [file]
#
#  Pgmtoims reads a PGM rawbits file and writes an Icon image string.
#  The "-gn" option (2 <= n <= 64) selects the palette; g41 is the
#  default.
#
#  Note that only rawbits-format PGM files can be read.
#
############################################################################
#
#  Requires:  Version 9 graphics
#
############################################################################
#
#  Links: options
#
############################################################################

link options

procedure main(args)
   local opts, g, cs, f, w, h, maxv, data, s, i, n, ln

   # Process options.
   opts := options(args, "g+")
   g := \opts["g"] | 41
   if g < 2 | g > 64 | *args > 1 then
      stop("usage: ", &progname, " [-gn] [file]")

   # Select the set of image characters according to the palette.
   cs := "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz{}"
   cs := cs[1+:g]

   # Open the file and read it into memory.
   if *args = 1 then
      f := open(args[1], "ru") | stop("can't open ", args[1])
   else
      f := &input
   s := ""
   while s ||:= reads(f, 1000)

   # Crack the file header.
   s ? {
      ws()
      if ="P" & any('1346') then
         stop("input is not in PGM format; convert via \"ppmtopgm\"")
      if ="P2" then
         stop("input is not in *raw* PGM format")
      if not ="P5" then
         stop("input is not a PGM file")
      ws()
      w := tab(many(&digits))		# image width
      ws()
      h := tab(many(&digits))		# image height
      ws()
      maxv := tab(many(&digits))	# maximum byte value in input
      tab(any(' \t\r\n'))
      data := tab(0)			# image data
      }

   # Calculate the translation from input to output data bytes.
   s := ""
   every i := 0 to maxv do 
      s ||:= cs[1 + (g * i) / (maxv + 1)]

   # Figure out a reasonable line length for output,
   # assuming not too many backslashes.
   n := 79 > w / seq(1)
   if w % n > 0 then
      n +:= 1

   # Translate the data a line at a time, and write.
   map(data, &cset, s) ? {
      write("\"", w, ",g", g, ",_")
      while not pos(0) do wdata(move(w) | tab(0), n)
      write("\"")
      }
end


#  wdata(s, n) -- write one line of data with max linelength n

procedure wdata(s, n)
   s ? while not pos(0) do 
      write(image(move(n) | tab(0)) [2:-1], "_")
   return
end


#  ws() -- skip whitespace.

procedure ws()
   while tab(many(' \t\r\n')) | (="#" & tab(upto('\n')))
   return
end