summaryrefslogtreecommitdiff
path: root/fonts/halftone/pixkit.post
blob: 2e7ee5ea206c7d7ac7612c44a6ab46b6d06f0a9d (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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
$! Archive name: DRA1:[TEX.PIX]PIXKIT.POST;
$!
$! This file is a ``DCL archive``, a VAX/VMS DCL command procedure, analogous
$! to a ``shell archive`` on UNIX systems. It is intended primarily for
$! sending a set of files across a network in a format which allows them
$! to be restored. On VMS systems, the archive is restored simply by typing:
$!
$!        $ @archive-name
$!
$! The format of the archive is as follows:
$!
$!  1. As you start reading the file, lines which start with a dollar ($)
$!     are DCL commands.
$!  2. On DCL commands, an exclaimation mark (!) marks the beginning of
$!     a comment. In the DCL archive, this only occurs as the second character
$!     on a line.
$!  3. Each file to be created is preceded by a ``CREATE`` command. The
$!     text following the word `CREATE' is the name of the file to be created.
$!     If your system allows it, you should create a new version of the file.
$!  4. Filenames consist of two parts, the name itself and the extension.
$!     Either part may contain zero to 39 characters, which must be dollar,
$!     underscore (_), hyphen (-) or alphanumeric; a hyphen may not be the
$!     first character of a name.
$!  5. The `CREATE' command is followed by a line containing `$DECK' only.
$!     Lines of text following the `$DECK' should be copied verbatim to
$!     the output file.
$!  6. The end of the output file is delimited by a line containing only
$!     `$EOD'.
$!
$! Note that lines starting with a dollar may occur within `$DECK'..`$EOD'.
$!
$! The following two lines contain the ASCII character sequence from
$! exclaination mark to the end of the upper case letters, followed by
$! the remaining characters up to #126:
$! !"#$%^&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ
$! [\]^_`abcdefghijklmnopqrstuvwxyz{|}~
$!
$! This archive was created using DCLAR version 0.00--0
$!                          on 15-JAN-1988 14:52:26.56.
$!                          under VAX/VMS V4.5    
$! DCLAR was written by Dr. Adrian F. Clark (``Alien``), Essex University.
$!
$WRITE SYS$OUTPUT "creating BLURB.TXT" 
$CREATE BLURB.TXT
$DECK
This DCL archive contains all the required bits and pieces for preparing
pictures for plotting by TeX. When executed, the archive creates
the following files:

   o BLURB.TXT     this file
   o HALFTONE.TEX  user-level documentation (for LaTeX)
   o PICTURE.TEX   picture from TeXPIC used by HALFTONE.TEX
   o TEXPIC.FOR    the software. Note that there are two versions
                   of TEXPIC in this file, one for VMS and another
                   which is a little more portable.
   o HALFTONE.MF   Don Knuth's halftone font

If you intend to produce pictures of size >= 256 x 256, you'll need to
expand TeX's memory (see my article in TUGboat vol 8 no 3 for more
details). I can supply a TeX change file for VAX/VMS which effects this
change (and provides an editor interface) either by e-MAIL or on tape.
Contact me for more details. 

If you want to use this software, but you're not a TeX guru...find
someone who is!  He/she will be able to generate convert the Metafont
source for the halftone font (HALFTONE.MF) to a form acceptible to
TeX, and put it in the right directories for you to use.  I can supply
outline help, but the font generation process tends to be horribly
site-dependent.  Sorry.

If you have any trouble with the software, please let me know (it's not
quite the same as the version I use myself). I'm particularly keen
to receive feedback from non-VMS sites.

                           `Alien'   (ALIEN @UK.AC.ESSEX.ESE on JANET)
$EOD
$WRITE SYS$OUTPUT "creating HALFTONE.TEX" 
$CREATE HALFTONE.TEX
$DECK
% --- ------------------------------------------------------------------
% --- halftone.tex
% --- Format me with LaTeX, print me with an inch of top and left margin
% --- ------------------------------------------------------------------

\font\halftone=halftone

\def\|#1|{{\tt#1}}
\def\mmax{M_{\hbox{\scriptsize max}}}
\def\SYSDEP#1{\marginpar{\scriptsize site\\ specific}}
\def\TL{{\tt\TeX lase}}
\def\TV{{\tt\TeX view}}
\def\VAX{\leavevmode\hbox{V\kern-.12em A\kern-.1em X}}
\def\VMS{\leavevmode\hbox{V\kern-.06em MS}}

\def\mc{\small}
\def\FORTRAN{{\mc FORTRAN}}

\nofiles
\documentstyle[11pt]{article}
\advance\textheight by 21mm

\title{Halftone Output From \TeX\footnote{Taken from the {\sl \VAX/\VMS\ \TeX\
       User's Guide}}}
\author{Dr. Adrian F. Clark\\
        Department of Electronic Systems Engineering\\
        University of Essex}

\begin{document}
\maketitle

\section{Introduction}

This note describes how image data can be converted to a form suitable
for \TeX\ and then typeset in documents. Pictures are prepared for \TeX\
in a somewhat different way to normal text---the hard work is done outside
the \TeX\ input file; incorporating the image into the \TeX\ document is
then quite straightforward.

The image data must be converted from the binary representation used in Image
Processing and Pattern Recognition work to a series of characters which \TeX\
can map into pseudo grey-levels via a special font. A user-callable \FORTRAN\
\|SUBROUTINE| called \|TEXPIC| is available for this purpose. \|TEXPIC|
converts a picture held in memory to a text file containing \TeX\ input. (You
can look at this file if you like, but it is unlikely to make much sense.)
There are a few additional routines which can be used with \|TEXPIC| to produce
particular effects: for example, the picture may be plotted as a positive or
negative image. 

The special font for setting pictures is
defined to have some 65~grey levels. This does not necessarily imply that all
the grey levels are distinguishable, nor even that they are strictly monotonic
on laser printers. However, the quality of the output is certainly adequate for
run-of-the-mill technical reports. 

An example of an image typeset with \|TEXPIC| and \TeX\ is shown in
Figure~1. This is the ``girl'' picture from the image database
distributed by the Signal and Image Processing Institute of the University of
Southern California, which is widely used to demonstrate image processing
techniques. This representation is some $64 \times 64$~pixels. 

\begin{figure}
   \centering
   \fbox{\input picture\relax}
   \caption{Example of an Image Typeset using \|TEXPIC| and \TeX}
\end{figure}

\section{The \|TEXPIC| Routine}

To generate a file containing the image data in a form suitable for input to
\TeX, you simply invoke \|TEXPIC| from a program. \|TEXPIC| is called as
follows:

\begin{verbatim}
    CALL TEXPIC( ARRAY, M, N, FILE )
\end{verbatim}

\noindent where \|ARRAY| is a \|M| $\times$ \|N| \|REAL| array containing the
picture to be plotted and \|FILE| is a quoted string or \|CHARACTER| variable
containing the name of the file to receive the data. If you omit a filetype
(``extension'') from \|FILE|, \|TEXPIC| will use \|.TEX|. You can call
\|TEXPIC| as many times as you want from a program; a separate output file will
be generated for each picture.

Due to problems with the controlling micro-processor in the standard \|LN03|
printer, pictures with $\|N| > \approx 64$ will come out with white bands
across them, rendering them effectively useless. However, this problem has been
overcome on the \|LN03+| device, which can print images up to a full \|A4|
page in size. 


\section{Associated Routines}

\|TEXPIC| normally maximises the contrast of pictures by determining the range
of grey levels in the image and scaling the output to make use of them. This
behaviour can be overridden by invoking the routine \|ZRANGE| before \|TEXPIC|.
\|ZRANGE| requires two \|REAL| arguments, the minimum and maximum grey level
values to be output: 

\begin{verbatim}
   CALL ZRANGE( ZMIN, ZMAX )
   CALL TEXPIC( ARRAY, M, N, FILE )
\end{verbatim}

\noindent where \|ZMIN| $\le$ \|ZMAX|.
\|TEXPIC| then uses the supplied extrema, rather than values
determined from the image, for scaling the data. Values which lie {\em
outside\/} these extrema are clipped. Hence, if \|ZRANGE| is used with values
which are outside the values of the pixels in \|ARRAY|, the contrast of the
data generated by \|TEXPIC| is {\em reduced.\/} The converse is also true. The
extrema set up by \|ZRANGE| remain in effect until another call is made to
\|ZRANGE|, superseding the previous limits, or \|ZAUTO| is invoked, which
restores the default behaviour. 

\|TEXPIC| normally plots positive pictures---i.e.,\ pixels which contain
low values come out darker than pixels with high values. It can also produce
negatives, however; you do this by invoking the routine \|DONEG| before
\|TEXPIC|. Normal, positive picture-plotting is restored by calling \|DOPOS|.
As with \|ZRANGE| and \|ZAUTO|, \|DOPOS| and \|DONEG| remain in effect until
explicitly cancelled.
You can, of course, use the routines in conjunction to produce any
required effect.

There is a limit, $\mmax$, to the number of pixels that \|TEXPIC| can fit
across a page of output. For
pictures with $\|M| \le \mmax$, the data are written out exactly as supplied.
However, when pictures have $\|M| > \mmax$, the image is interpolated so
that the data written out form a $\mmax$-pixel image.
The same interpolation factor is used in both dimensions so that the aspect
ratio of the picture remains correct. The interpolation technique used is
a context-sensitive three-point bilinear method due to {\sc
Smith}.\footnote{There is also a version which uses standard four-point
bilinear interpolation.} This produces marginally better results in the
vicinity of edges in the picture.

The default value of $\mmax$ is~256. You can alter this (for example, when
producing pictures for a document with the text set in narrow columns) by
invoking \|TEXMAX| before \|TEXPIC|, as follows:

\begin{verbatim}
   CALL TEXMAX( MV )
\end{verbatim}

\noindent This sets $\mmax$ to \|MV|. Obviously, $\|MV| \ge 2$.

\|TEXPIC| and the support routines are all to be found in the algorithm
library, \verb|ESE$LIB:ALG|. \SYSDEP{Location of \\TEXPIC| and utility.}
There is also a stand-alone program which you can use for images stored in the
standard formats on disc. This program is \verb"ESE$PROGRAMS:V159". 


\section{Inserting the Picture into Your \TeX\ Document}

This is quite easy, although there are a few steps in the process.
The procedure you follow depends on which macro package you are using with
\TeX. Most people use ``plain \TeX,'' the default macro package, but \LaTeX\
is also in widespread use. If you use a customised \TeX\ but don't know exactly
what is different about it, try the plain \TeX\ procedure.

Whichever version of \TeX\ you use, there are a few things you should know.
\TeX\ must hold the whole image in memory, so the maximum image size is
obviously limited to \TeX's memory capacity. Since \TeX\ was designed for
typesetting rather than image hard-copy, its memory capacity isn't
large enough to hold dozens of pictures, although it should be adequate
for reasonable use.

\|TEXPIC| tells \TeX\ to use a special font, a {\em halftone\/} font, for
setting the picture. You have to tell \TeX\ to load this font. To do this,
you type the following command at the top of your document:

\begin{verbatim}                                          
   \font\halftone=halftone
\end{verbatim}

\noindent This works with both plain \TeX\ and \LaTeX.

We shall now consider the procedure for telling \TeX\ to typeset your picture.
In the examples that follow, it is assumed that the picture produced by
\|TEXPIC| is in the file \|PICTURE.TEX|.

\subsection{Procedure for Use with Plain \TeX}
The first thing you must do is to create an input file for \TeX\ which contains
the document to be typeset. At the point where you want the picture to
appear, you type:

\begin{verbatim}
   \centerline{\input picture}
\end{verbatim}

\noindent For \TeX{}perts, the image is set as a single \verb|\hbox|.
  
The picture can be put into a ``floating'' insert, which will cause the
picture to be held in \TeX's memory until there is enough free space on
the page to hold it. For example, to set the picture in a \verb"\midinsert",
the relevant \TeX\ input would be:

\begin{verbatim}
   \midinsert
      \centerline{\input picture}
   \endinsert
\end{verbatim}

\noindent This command sequence should be typed between paragraphs,
when \TeX\ is in `vertical mode.' Typing \verb"\goodbreak" immediately
before the \verb"\midinsert" may help \TeX's page-breaking mechanism. (In
practise, you'll probably want to add a title to the picture, too.)

There is one other thing you might want to do and that is to draw a border
around the picture. You would do this by defining a \TeX\ macro, \|border|,
as follows:

\begin{verbatim}
   \def\border#1{\vbox{\hrule\hbox{\vrule\kern3pt
      \vbox{\kern3pt#1\kern3pt}\kern3pt\vrule}\hrule}}
\end{verbatim}

\noindent You would then set the picture with

\begin{verbatim}
   \centerline{\border{\input picture}}
\end{verbatim}

\noindent instead of simply \verb"\centerline{\input picture}".

\subsection{Procedure for Use with \LaTeX}
The most sensible way to plot pictures with \LaTeX\ is in the \|figure|
environment ({\em not\/} the \|picture| environment). This generates
a ``floating'' figure, which usually surfaces at the top of the following
page of output. The \verb|\centering| declaration causes the picture to
be centred in the page.

\begin{verbatim}
   \begin{figure}
      \centering
      \mbox{\input picture\relax}
      \caption{Figure Title}
   \end{figure}
\end{verbatim}

\noindent The \verb|\relax| following the filename in the \verb|\mbox| command
is required for \LaTeX\ to know where the filename ends. To draw a border
around your picture, you simply replace the \verb|\mbox| command with
\verb|\fbox|. 

\section{Producing the Output}

Having inserted the appropriate commands into your document, you run \TeX\ in
the normal way. If it exits with a ``memory capacity exceeded'' error message,
you've either tried to set images which are too big or you're holding too
many in memory at once.  The only solution to this problem is to re-format your
document. \LaTeX\ users may be able to cure the problem by strategically
inserting \verb"\clearpage" commands into the manuscript.

You run \TV\ or \TL\ on the \TeX\ output file as normal, although the \TV\
display bears little relationship to the grey levels produced by \TL. Note that
you must use \TL\ version~10 to send output to the \|LN03|, since earlier
versions cannot read the halftone font file. (When you invoke \TL\, it outputs
a short introductory message which includes its version number.) 

The current version of \TeX\ 2.0 has a larger-than-usual memory capacity,
\SYSDEP{Size of \TeX's memory.}
large enough for four $256 \times 256$ images to be held in memory.

\end{document}
$EOD
$WRITE SYS$OUTPUT "creating PICTURE.TEX" 
$CREATE PICTURE.TEX
$DECK
 \hbox{\vbox{\halftone\offinterlineskip % machine-generated by TEXPIC.
 \def\BHT{\hbox\bgroup\ignorespaces}
 \catcode`\^=12 \catcode`\_=12 \catcode`\.=\active \let.=\egroup
 \catcode`\,=\active \let,=\BHT \catcode`\/=0 \catcode`\\=12
 ,ccdggfcbabbcfeeddeccehhlmkkklljdejceggiagjfgbecbbadiiXNQLEHDGHJL.
 ,dcdggfbbbaadeddcddbdfghkmkkkklljjicfhiiaiiggbddac`fkcQLQLEGGGHKL.
 ,ecbfffcbbabdeedecddfgfglmkkkjkllmgc`ghgcjhfdbebaaahk\NLQLGGHGKMN.
 ,cccfgfdaaaadddddceffdcekmkkkj_PI?GME;FNckfgfbbb`_djgVLLQMGIIGJNM.
 ,dddggfbbbbbeedcdcedcccdjmkkk\GHEMHEJH><86Fcfdcc`_glaQOMPLHIHFJNL.
 ,ddcggfcbaabdedddcdbbbbdjmkfHH?GQLQNLNNLB<@=NedbaaikZMLMQKGJHGJNM.
 ,dbdffebaabbddeddddccabbjlgWSLLFKIRQLJMTKMHKDKda_dkhUILNQJIKJILPN.
 ,dbeggfdbbbbdfddddcccbbchdJFGISKTMPWRQLWYVOKGDBaahlaTRQUWOKMRNQUT.
 ,ebdggecbaabdddcedccbcbaUHAIKNPTUNROORQYXYUWVPIOdij[TWWYZTSSWWY\\.
 ,edegfebabbadeedddccbbbRRVOJLHCJOOPSVT^WY]XTTTLDakbQKONNRMOST[\^\.
 ,dcdfgeabcbaceddcdbccbZ[VWYJJMWMTRLS]]bZ_a`Z^QTQ9l^HHMNONJRYYYZ\\.
 ,ecdgffcaaabdecdcdccb_d\YVQUWQ^a_Yf`^^lkha^_^SLWB\YHHLNONGPXXVWZ[.
 ,ebdgfebaabbdeddccbcd^bYZQ[W]VZbjaijgdgonhhiiWJJEWOJJLNOLHQXVVTY\.
 ,ebegffcbabbdecdbcbba^X`a\WC`hjdbekleknnopjkifXGRRMHIMLPNIQVVWUX\.
 ,ecdgffbaaabdedcdbba^_ef_`iegcfglnneihlnonmlii\KQULGHKJOONUTVUTY[.
 ,fcdggebbaacdddcddbb^_gbhllfiknhnoinlmlllmmlih`Q]SKILJLPQTXTUVTVZ.
 ,ecdgfecbbabdedddddba\ehjljiklmlmnnmilkghcjgicb\YUJJJMRYTQYXUVWWZ.
 ,dcdgfeab`bbedddcdcb\a]flmjijldecnommjf]jcTf\bdbbELLNSU^TPWYWWWWX.
 ,fcfggeababbedddcdbc]^g`gm_fa]hgaemkgjhgj_UhIb^f^SMJQXY]TQYXZYVYZ.
 ,fbeffebabbbdecdcdcbb`ZSbg]b\Ya_b^gjijgjibajWdY]ZLNJRXZ]SNY][YWW[.
 ,fbeffdcbaabdddddcbabhgi_b`]^bbhdb`dgfdjaagjjbV[ZLMLWXV\QR[^^\XY[.
 ,ebdffdcabbbededdccc`mlnmjecfihhijjikkdj^efije_]_NNPWXYZRU^]^[WUZ.
 ,fcegfdbbbbcdddddccbbinonnjhgkinkmnlnmiidegfkggjZVWVYY\\UW]^\ZVU\.
 ,ebdffecbacceeeddcccbginnijjjkkkjklnnnijjiihmjjfdRUV^^^aY\_^]]][^.
 ,gdeggdbbbbcdededddbcggYNVWX\]ii_`b_cmljlkkhkibi\NKQYY\_SW_ZZ^[^].
 ,fdegfebabbceeeeddddcdh]diZYZYYfjgacllihnkmjbifhSNKNTY_^RV^^^^]^].
 ,fbfggeccdceeddddeddcceghggaZ\be_fefjljhjjmnkjegQKKIOY^_RT_^^^\\\.
 ,fcegffdbcbdeddedeecbchnZm]dNVgggjmpohfeeiglljkZNJHFPW^^RT^\^YY[^.
 ,fcfhfdbccbcfeeeddddcdcZgibUO[]RcWelifcegijigflLLJIIOU\_VT_]\ZY\^.
 ,edfgfebccddeeeedeeedcbTYXRUP^\XTbdd\`a_ggekebPQLLJHMOX^VW][]\YY\.
 ,edfgfedcdcdfeeffeededdTQOOVU_\WOQTW[_afkflhaSOQJLMKNRZ^UY[[_^YV].
 ,fdfgfeddccdeefeeeeefbeTOKYSY`aWJQVY]afeklihbSNMJJKLMT\^UY]\_b\Z^.
 ,fdgfgfdccddfeffdfffeedTTTaQZbd^TSUW]bg`_fgfQUPLLLJKOQX]UX]\\]Z[^.
 ,fdgggedccdcfefeefededc\Zaa_jij^^XY\`de^[X\VPRORPLKJLNU\VX^[\[VY^.
 ,fdfgffcdcbdfedefefeeee_bg\W^Z[[_ab_ciadXUNVVYWWUQLJMOW\TY\YZZYZ_.
 ,fdfggfdcecdeeefeeefedfebaidVY\]abbdfidaZXNWTWVVTQJKNOXXTZ[Z\]ZY\.
 ,fdfggedddddffeefeedeejj_[Y`KHYlok`degfa]`QYWYWVTSNORW\\T]]]a^WVZ.
 ,fcgggfddddeffeeffeeeegie^YaYV]ecZ]bfgda_`PZ[ZZ[WUQNRV^[Z_bb`]ZZ^.
 ,fdghgfededffffffeeedc[jh`\]]_acaa_fggcfhaXURTVYUMLKMR\_Y_cba]Z]a.
 ,ffhhhgedddfggffffgfee_cil]UTQWX]^bfhhjhi`XRSRPURKHJKQ[\UZ]]_\[\\.
 ,gfgjihfeffgiggfgggfegnlimo[VUY\abdhjkiiiaMQTUPTSJILPRVWRTVUWVSRR.
 ,ggjjjiggfgfhhhggggffjljjmojbabdgjllljhjj_GRUVQURLJPURXWRQSRQQPPQ.
 ,fikjjjhgfgfghghghhfhmnjgjnfgZlnnmlkjiiiiaRGPWQSRKKVWV[ZRTVSURSRQ.
 ,chkjjjggggffghghhgfjnnmlmdliiY^lljjjjiiib`d[^_TQKNWWV][RWVVVUTSS.
 ,]`gkkjihghhhjjjjjjijmnoldfijhkXY\gijid_]fjihffe`QMWUV[ZQUVTSTTRT.
 ,\^]ejllkkjjjllmmlmlllnfcdfghijk\]][\\[gkmhjhhgfda]`^X_]TYWVYYUUW.
 ,ab[\cegihgffhjjkkkkibecddfhfljjofgfhikiiiljigfiijkklg\[UZYY]]ZYZ.
 ,d```a``cfeffijjjj`^edegdfgjfkijnogfhhhgiihijjjklmnoobnYQWYY\[ZYV.
 ,hifiie__egggijj]cbfeecegfflgfnjinofggiiihhhfgiljjndhdhbRXZZ][XXX.
 ,hklllic]ageeffNYcfgfgffggfkifijihmjhhhiiiijjjijlmmmiZQESY\^][[[[.
 ,hghlmkib^cdeYY^dchhffgeggfhmhiiignjihihhijijjkllnoni`YXFDYZ\WWYZ.
 ,a]bkmkigdjmc^`bbdigfggfhgggoiijjkhljjhijijjjklmnonheddaXRHK]YUXY.
 ,c^`knihighl[__adgjhffghiiiiimjjikkjjiikikkkllmooihhgfgec[XOHc_ac.
 ,gbbjnllmkjk[^_baiiggehiijiiholnomlklknmikklmmoohgghgfiifea_[W^^_.
 ,kghllnooona^___gcliijkddfhiijommihnnmnhipomnoniggghhhhhijjced]ZZ.
 ,nonmlmopppd``a`lgakifhghijjjjjllmjlklkkjanlkiggihiiiiiihlkiZha]Z.
 ,pponlloppo`a`bdllkgfddgijgebblkmilimmkUACG8@iiihghiiihhnmiifWg\W.
 ,pponllmopmabacdlllkkkkjie^bcbfajominXlk`=L=3BEbfgiihhgjnjijj`W[U.
 ,ponmlllnolbbbadkmllkklkfdhbhdghimmkiaO?HO>G8?CELhjihghkoiklje[YY.
 ,onnmlmmmocdcbacjlmmlmmlcgiijgefkjopooonNA>7=BBDC<jhghlooillki`QX.
 ,nmnmnmmmobcbbbbjlmmmmjjkljlgiielilio\[IZWPRS?D4BDWghilokilllkg\[.
 ,mmlkllklneddbbbjmmmllfhjkillkgjjb\TYpKTVO;JJ<7I;3FkRmoohlnnnlkcT.
 ,lllllllnnc`dbcbblmmmmlgijiggfhhkR@TCYI[HghUWS?@DCFBBEA?mnoonmkf\.
 ,pponmmnnjb\kjfdekklkkijkjijhiigiILAP<LIL^VNSHGKLBABJ>BGbooonnmia.
 }}%
$EOD
$WRITE SYS$OUTPUT "creating TEXPIC.FOR" 
$CREATE TEXPIC.FOR
$DECK
C --- -----------------------------------------------------------------
C ---                          T e X P I C
C --- -----------------------------------------------------------------
C
C --- These routines are used to generate an input file to TeX which,
C --- when processed, gives a halftone representation of the grey-level
C --- image. TEXPIC is the main picture-plotting routine: it requires a
C --- M x N pixel array ARRAY. The TeX commands are written to the file
C --- FN. These routines are taken from a general-purpose library of
C --- image processing software developed by the author, which explains
C --- why most of the variables in the COMMON blocks are not used. The
C --- Fortran is also machine-generated, which may account for some odd
C --- line breaks in the code. (No line, even in comments, has more
C --- than 72 characters in it.)
C
C --- The image representation used here conforms to the one adopted by
C --- the Numerical Algorithms Group (NAG) for their ``Image Processing
C --- Algorithm Library'' IPAL, although the coding does not  (it  does
C --- not allow a sub-region to be plotted).
C
C --- There are two versions of TEXPIC in this file: the first is VAX-
C --- specific, while the second should be fairly portable. Note that
C --- both routines declare the BLOCK DATA module ALGINI as EXTERNAL;
C --- this usually forces the linker to build it into executable files.
C
C --- TEXPIC's support routines are:
C
C ---    TEXMAX  set the maximum pixel width across the page
C ---    ZRANGE  fix the contrast for subsequent TEXPIC calls
C ---    ZAUTO   subsequent pictures have their contrast determined
C ---            from the data
C ---    ZSAME   subsequent pictures are plotted with the same
C ---            contrast as the previous one
C ---    DOPOS   subsequent pix have low pixel values plotted black
C ---    DONEG   subsequent pix have low pixel values plotted white
C ---    MINMAX  determines the range of the data
C ---    ALGERR  outputs error messages
C ---    ABANDN  VAX-specific ^C trap routine
C ---    ALGINI  block data module
C
C --- Details of the invocations are given in the comments associated
C --- with each routine. There is also a separate document which gives
C --- user-level documentation and examples. This is available as part
C --- of the ``VAX/VMS TeX User's Guide'', written by the author, or as
C --- a separate document.
C
C --- As supplied, TEXPIC uses a three-point contextual bilinear method
C --- to interpolate between pixels. The results it produces should be
C --- marginally better than using standard four-point interpolation;
C --- however, the author can detect no difference. If you'd prefer to
C --- use four-point interpolation, the line to change is marked in the
C --- TEXPIC source code.
C
C --- Since you get TEXPIC free of charge, there is no formal guarantee
C --- given by Essex University OR the author that the software works
C --- or that the documentation agrees with the code. Nevertheless, the
C --- author would be pleased to hear of any problems.
C
C --- TEXPIC and associated routines were written by:
C
C ---    Dr. Adrian F. Clark  (``Alien'')
C --- of Department of Electronic Systems Engineering
C ---    University of Essex
C ---    Wivenhoe Park
C ---    Colchester
C ---    Essex C04 3SQ
C ---    United Kingdom
C ---    Tel: Colchester (0206) 872432 (direct)
C ---    JANET: user ALIEN @UK.AC.ESSEX.ESE
C
C --- If you write, please mark the envelope with ``TeX''.
C
C --- Acknowledgements in any published work that uses TEXPIC would be
C --- appreciated.
C
C --- ENJOY!
C
C --- -----------------------------------------------------------------
      SUBROUTINE TEXPIC( ARRAY, M, N, FN )
C --- -----------------------------------------------------------------
C
C --- TEXPIC version 0.1 was written by Alien in Fortran-77.
C
C --- This  routine  writes out the M x N image ARRAY into the file FN
C --- in a form which is suitable for insertion into a  TeX  document.
C --- If FN has no filetype (``extension''), .TEX is used.
C
C ---    By  default,  the range of the data is determined and used to
C --- maximise  the  contrast  of  the  output  image.  This  can   be
C --- overridden  by  pre-setting the range of data values with a call
C --- to ZRANGE. ZAUTO  restores  the  default  behaviour.  Similarly,
C --- TEXPIC  will  produce  negated  images  on  output  if DONEG has
C --- previously been invoked.  DOPOS  sets  it  to  produce  positive
C --- pictures again.
C
C --- USAGE:    CALL TEXPIC( ARRAY, M, N, FN )
C
C --- PARAMETERS
C ---     ARRAY  REAL           image to be output to the file
C ---     M      INTEGER        first dimension of ARRAY
C ---     N      INTEGER        second dimension of ARRAY
C ---     FN     CHARACTER*(*)  name  of  file  to  which ARRAY will
C ---                           be written
C
C --- RESTRICTIONS
C --- If N is greater than MMAX, the image will be sub-sampled in both
C --- directions  to  make  the result  MMAX x MMAX. The interpolation
C --- technique used is due to P.R. Smith (Ultramicroscopy vol  6,  pp
C --- 201--204, 1981).
C
C --- COMMONS
C --- /ALG/, /ALGTEX/
C
C --- SUBPROGRAMS INVOKED
C --- MINMAX, LIB$GET_LUN, LIB$FREE_LUN
C
C --- Copyright (C) Alien 1987 -- All rights reserved.
C
      IMPLICIT NONE
C
      INTEGER LEVELS, MINIDX, CMAX
      INTEGER GRFGRF, GRFHIS, GRFPOL
      INTEGER MAXICH, MAXRCH
      INTEGER MINLUN, MAXLUN
      INTEGER MAXOUT, MAXARR, MAXAFT, MAXCH
      INTEGER MAXSTV, NOUSEM
      REAL PI
C
      PARAMETER( GRFGRF=0, GRFHIS=1, GRFPOL=2 )
      PARAMETER( MAXICH=11, MAXRCH=11 )
      PARAMETER( MINLUN=1, MAXLUN=99 )
      PARAMETER( MAXOUT=133, MAXARR=512, MAXAFT=(9*MAXARR)/4+1 )
      PARAMETER( MAXCH=16 )
      PARAMETER( MAXSTV=3, NOUSEM=-1 )
      PARAMETER( PI=3.1415926535897932384626433 )
      PARAMETER( LEVELS=65, MINIDX=48, CMAX=132 )
C
      CHARACTER*(*) FN
      INTEGER M, N
      REAL ARRAY(M,N)
C
      CHARACTER*(CMAX) C
      CHARACTER*6 RUTNAM
      INTEGER NMAX, I, J, IC, IV, LUN, IOS, ILO, JLO, IHI, JHI
      INTEGER LIB$GET_LUN, LIB$FREE_LUN
      LOGICAL POS
      REAL RANGE, INC
      REAL X, Y, DX, DY, DX1, DY1, VAL
C
      INTEGER*2 CHAN
      LOGICAL ABFLAG
      INTEGER GLUN, PLUN, ELUN, POLHIS
      LOGICAL XFIX, YFIX, ZFIX, RFIX, TFIX, LOGX, LOGY, LOGZ, LOGR
      LOGICAL VRBOSE, NEG, MIDORG, FTNRML
      REAL XMIN, XMAX, YMIN, YMAX, ZMIN, ZMAX, RMIN, RMAX, TMIN, TMAX,
     & FTFWD, FTREV
      REAL TOL
      INTEGER MMAX
C
      COMMON /ALG_ABANDN/ ABFLAG, CHAN
      SAVE /ALG_ABANDN/
      COMMON /ALG/ XMIN, XMAX, YMIN, YMAX, ZMIN, ZMAX, RMIN, RMAX,
     & TMIN, TMAX, TOL, FTFWD, FTREV, XFIX, YFIX, ZFIX, RFIX, TFIX,
     & LOGX, LOGY, LOGZ, LOGR, NEG, GLUN, PLUN, ELUN, POLHIS, MIDORG,
     & FTNRML, VRBOSE
      SAVE /ALG/
      COMMON/ALGTEX/ MMAX
      SAVE /ALGTEX/
      EXTERNAL ALGINI
      DATA RUTNAM/'TEXPIC'/
C
C --- Find the range of the data if we're in auto mode; otherwise,
C --- use the specified ranges.
C
      IF( .NOT. ZFIX ) THEN
         CALL MINMAX( ARRAY, M, N, ZMIN, ZMAX )
         IF( ZMIN .EQ. ZMAX ) ZMAX = ZMIN + 1
      END IF
C
C --- We can't print more than MMAX columns across the TeX output.
C --- If the user passes an array bigger than this, we'll interpolate
C --- it down to MMAX.
C
      IF( M .GT. MMAX ) THEN
         INC = FLOAT(M) / FLOAT(MMAX)
         NMAX = NINT( FLOAT(N) / INC )
      ELSE
         INC = 0
      END IF
C
C --- Get a free channel number and open the output file.
C
      IOS = LIB$GET_LUN( LUN )
      IF( .NOT. IOS ) CALL EXIT( IOS )
C
      OPEN( UNIT=LUN, FILE=FN, STATUS='NEW', RECL=CMAX+1, IOSTAT=IOS,
     & DEFAULTFILE='.TEX', CARRIAGECONTROL='LIST' )
      IF( IOS .EQ. 0 ) THEN
C
C --- Calculate the scaling factor.
C
         POS = .NOT. NEG
         RANGE = FLOAT(LEVELS-1) / (ZMAX-ZMIN)
C
C --- Output the introduction.
C
         WRITE( LUN, 100 )
C
C --- Output the image without interpolation if INC is zero.
C
         IF( ABS(INC) .LT. TOL ) THEN
            DO 2 J = 1, N
      IF( ABFLAG ) GO TO 5
               IC = 1
               C(1:1) = ','
               DO 1 I = 1, M
                  VAL = ARRAY(I,J)
               IF( VAL .LT. ZMIN ) VAL = ZMIN
               IF( VAL .GT. ZMAX ) VAL = ZMAX
               IV = NINT((VAL-ZMIN) * RANGE)
               IF( POS ) IV = (LEVELS-1) - IV
               IC = IC + 1
               C(IC:IC) = CHAR( IV + MINIDX )
               IF( IC .GE. CMAX-1 ) THEN
                  WRITE( LUN, 200 ) C(1:IC)
                  IC = 1
                  C(1:1) = ' '
               END IF
    1          CONTINUE
               IF( IC .GT. 0 ) WRITE(LUN, 300) C(1:IC)
    2       CONTINUE
         ELSE
C
C --- Interpolate the output.
C
            Y = 1
            DO 4 J = 1, NMAX
      IF( ABFLAG ) GO TO 5
               DY = Y - INT(Y)
               DY1 = 1 - DY
               JLO = MOD( INT(Y-1), N ) + 1
               JHI = MOD( JLO, N ) + 1
               X = 1
               IC = 1
               C(1:1) = ','
               DO 3 I = 1, MMAX
                  DX = X - INT(X)
                  DX1 = 1 - DX
                  ILO = MOD( INT(X)-1, M ) + 1
                  IHI = MOD( ILO, M ) + 1
C
C --- Smith's three-point contextual bilinear interpolation.
C
                  IF( ABS(ARRAY(ILO,JLO)-ARRAY(IHI,JHI)) .GT.
     &               ABS(ARRAY(IHI,JLO)-ARRAY(ILO,JHI)) ) THEN
                     VAL = (DX-DY)*ARRAY(IHI,JLO) + DX1*ARRAY(ILO,JLO) +
     &                  DY*ARRAY(IHI,JHI)
                  ELSE
                     VAL = (DX1-DY)*ARRAY(ILO,JLO) + DX*ARRAY(IHI,JLO) +
     &                  DY*ARRAY(ILO,JHI)
                  END IF
                  X = X + INC
               IF( VAL .LT. ZMIN ) VAL = ZMIN
               IF( VAL .GT. ZMAX ) VAL = ZMAX
               IV = NINT((VAL-ZMIN) * RANGE)
               IF( POS ) IV = (LEVELS-1) - IV
               IC = IC + 1
               C(IC:IC) = CHAR( IV + MINIDX )
               IF( IC .GE. CMAX-1 ) THEN
                  WRITE( LUN, 200 ) C(1:IC)
                  IC = 1
                  C(1:1) = ' '
               END IF
    3          CONTINUE
               IF( IC .GT. 0 ) WRITE(LUN, 300) C(1:IC)
C
               Y = Y + INC
    4       CONTINUE
         END IF
C
C --- Close off the file.
C
    5    CONTINUE
         WRITE( LUN, 400 )
         CLOSE( UNIT=LUN )
      ELSE
         CALL ALGERR( RUTNAM, 'Cannot open specified output file:',
     &    FN )
      END IF
C
C --- Release the channel.
C
      IOS = LIB$FREE_LUN( LUN )
      IF( .NOT. IOS ) CALL EXIT( IOS )
C
      RETURN
  100 FORMAT(' \hbox{\vbox{\halftone\offinterlineskip ',
     & '% machine-generated by TEXPIC.'/
     &  ' \def\BHT{\hbox\bgroup\ignorespaces}'/
     &  ' \catcode`\^=12 \catcode`\_=12 \catcode`\.=\active',
     &  ' \let.=\egroup'/ ' \catcode`\,=\active \let,=\BHT',
     &  ' \catcode`\/=0 \catcode`\\=12')
  200 FORMAT(1X,A,'%')
  300 FORMAT(1X,A,'.')
  400 FORMAT(' }}%')
      END
C --- -----------------------------------------------------------------
      SUBROUTINE TEXPIC( ARRAY, M, N, FN )
C --- -----------------------------------------------------------------
C
C --- TEXPIC version 0.1 was written by Alien in Fortran-77.
C
C --- This  routine  writes out the M x N image ARRAY into the file FN
C --- in a form which is suitable for insertion into a  TeX  document.
C
C ---    By  default,  the range of the data is determined and used to
C --- maximise  the  contrast  of  the  output  image.  This  can   be
C --- overridden  by  pre-setting the range of data values with a call
C --- to ZRANGE. ZAUTO  restores  the  default  behaviour.  Similarly,
C --- TEXPIC  will  produce  negated  images  on  output  if DONEG has
C --- previously been invoked.  DOPOS  sets  it  to  produce  positive
C --- pictures again.
C
C --- USAGE:    CALL TEXPIC( ARRAY, M, N, FN )
C
C --- PARAMETERS
C ---     ARRAY  REAL           image to be output to the file
C ---     M      INTEGER        first dimension of ARRAY
C ---     N      INTEGER        second dimension of ARRAY
C ---     FN     CHARACTER*(*)  name  of  file  to  which ARRAY will
C ---                           be written
C
C --- RESTRICTIONS
C --- If N is greater than MMAX, the image will be sub-sampled in both
C --- directions  to  make  the  result MMAX x MMAX. The interpolation
C --- technique used is due to P.R. Smith (Ultramicroscopy vol  6,  pp
C --- 201--204, 1981).
C
C --- COMMONS
C --- /ALG/, /ALGTEX/
C
C --- SUBPROGRAMS INVOKED
C --- MINMAX
C
C --- Copyright (C) Alien 1987 -- All rights reserved.
C
      IMPLICIT CHARACTER*1 (A-Z)
C
      INTEGER LEVELS, MINIDX, CMAX
      INTEGER GRFGRF, GRFHIS, GRFPOL
      INTEGER MAXICH, MAXRCH
      INTEGER MINLUN, MAXLUN
      INTEGER MAXOUT, MAXARR, MAXAFT, MAXCH
      INTEGER MAXSTV, NOUSEM
      REAL PI
C
      PARAMETER( GRFGRF=0, GRFHIS=1, GRFPOL=2 )
      PARAMETER( MAXICH=11, MAXRCH=11 )
      PARAMETER( MINLUN=1, MAXLUN=99 )
      PARAMETER( MAXOUT=133, MAXARR=512, MAXAFT=(9*MAXARR)/4+1 )
      PARAMETER( MAXCH=16 )
      PARAMETER( MAXSTV=3, NOUSEM=-1 )
      PARAMETER( PI=3.1415926535897932384626433 )
      PARAMETER( LEVELS=65, MINIDX=48, CMAX=132 )
C
      CHARACTER*(*) FN
      INTEGER M, N
      REAL ARRAY(M,N)
C
      CHARACTER*(CMAX) C
      CHARACTER*6 RUTNAM
      INTEGER NMAX, I, J, IC, IV, LUN, IOS, ILO, JLO, IHI, JHI
      LOGICAL POS
      REAL RANGE, INC
      REAL X, Y, DX, DY, DX1, DY1, VAL
C
      LOGICAL ABANDN
      INTEGER GLUN, PLUN, ELUN, POLHIS
      LOGICAL XFIX, YFIX, ZFIX, RFIX, TFIX, LOGX, LOGY, LOGZ, LOGR
      LOGICAL VRBOSE, NEG, MIDORG, FTNRML
      REAL XMIN, XMAX, YMIN, YMAX, ZMIN, ZMAX, RMIN, RMAX, TMIN, TMAX,
     & FTFWD, FTREV
      REAL TOL
      INTEGER MMAX
C
      COMMON /ALG/ XMIN, XMAX, YMIN, YMAX, ZMIN, ZMAX, RMIN, RMAX,
     & TMIN, TMAX, TOL, FTFWD, FTREV, XFIX, YFIX, ZFIX, RFIX, TFIX,
     & LOGX, LOGY, LOGZ, LOGR, NEG, GLUN, PLUN, ELUN, POLHIS, MIDORG,
     & FTNRML, VRBOSE
      SAVE /ALG/
      COMMON/ALGTEX/ MMAX
      SAVE /ALGTEX/
      EXTERNAL ALGINI
      DATA RUTNAM/'TEXPIC'/
C
C --- Find the range of the data if we're in auto mode; otherwise,
C --- use the specified ranges.
C
      IF( .NOT. ZFIX ) THEN
         CALL MINMAX( ARRAY, M, N, ZMIN, ZMAX )
         IF( ZMIN .EQ. ZMAX ) ZMAX = ZMIN + 1
      END IF
C
C --- We can't print more than MMAX columns across the TeX output.
C --- If the user passes an array bigger than this, we'll interpolate
C --- it down to MMAX.
C
      IF( M .GT. MMAX ) THEN
         INC = FLOAT(M) / FLOAT(MMAX)
         NMAX = NINT( FLOAT(N) / INC )
      ELSE
         INC = 0
      END IF
C
C --- We always open the output file on channel 7 (fix me!).
C
      LUN = 7
      OPEN( UNIT=LUN, FILE=FN, STATUS='NEW', RECL=CMAX+1, IOSTAT=IOS )
      IF( IOS .EQ. 0 ) THEN
C
C --- Calculate the scaling factor.
C
         POS = .NOT. NEG
         RANGE = FLOAT(LEVELS-1) / (ZMAX-ZMIN)
C
C --- Output the introduction.
C
         WRITE( LUN, 100 )
C
C --- Output the image without interpolation if INC is zero.
C
         IF( ABS(INC) .LT. TOL ) THEN
            DO 2 J = 1, N
      IF( ABANDN(0) ) GO TO 5
               IC = 1
               C(1:1) = ','
               DO 1 I = 1, M
                  VAL = ARRAY(I,J)
               IF( VAL .LT. ZMIN ) VAL = ZMIN
               IF( VAL .GT. ZMAX ) VAL = ZMAX
               IV = NINT((VAL-ZMIN) * RANGE)
               IF( POS ) IV = (LEVELS-1) - IV
               IC = IC + 1
               C(IC:IC) = CHAR( IV + MINIDX )
               IF( IC .GE. CMAX-1 ) THEN
                  WRITE( LUN, 200 ) C(1:IC)
                  IC = 1
                  C(1:1) = ' '
               END IF
    1          CONTINUE
               IF( IC .GT. 0 ) WRITE(LUN, 300) C(1:IC)
    2       CONTINUE
         ELSE
C
C --- Interpolate the output.
C
            Y = 1
            DO 4 J = 1, NMAX
      IF( ABANDN(0) ) GO TO 5
               DY = Y - INT(Y)
               DY1 = 1 - DY
               JLO = MOD( INT(Y-1), N ) + 1
               JHI = MOD( JLO, N ) + 1
               X = 1
               IC = 1
               C(1:1) = ','
               DO 3 I = 1, MMAX
                  DX = X - INT(X)
                  DX1 = 1 - DX
                  ILO = MOD( INT(X)-1, M ) + 1
                  IHI = MOD( ILO, M ) + 1
C
C --- Smith's three-point contextual bilinear interpolation.
C
                  IF( ABS(ARRAY(ILO,JLO)-ARRAY(IHI,JHI)) .GT.
     &               ABS(ARRAY(IHI,JLO)-ARRAY(ILO,JHI)) ) THEN
                     VAL = (DX-DY)*ARRAY(IHI,JLO) + DX1*ARRAY(ILO,JLO) +
     &                  DY*ARRAY(IHI,JHI)
                  ELSE
                     VAL = (DX1-DY)*ARRAY(ILO,JLO) + DX*ARRAY(IHI,JLO) +
     &                  DY*ARRAY(ILO,JHI)
                  END IF
                  X = X + INC
               IF( VAL .LT. ZMIN ) VAL = ZMIN
               IF( VAL .GT. ZMAX ) VAL = ZMAX
               IV = NINT((VAL-ZMIN) * RANGE)
               IF( POS ) IV = (LEVELS-1) - IV
               IC = IC + 1
               C(IC:IC) = CHAR( IV + MINIDX )
               IF( IC .GE. CMAX-1 ) THEN
                  WRITE( LUN, 200 ) C(1:IC)
                  IC = 1
                  C(1:1) = ' '
               END IF
    3          CONTINUE
               IF( IC .GT. 0 ) WRITE(LUN, 300) C(1:IC)
C
               Y = Y + INC
    4       CONTINUE
         END IF
C
C --- Close off the file.
C
    5    CONTINUE
         WRITE( LUN, 400 )
         CLOSE( UNIT=LUN )
      ELSE
         CALL ALGERR( RUTNAM, 'Cannot open specified output file:',
     &    FN )
      END IF
C
C
      RETURN
  100 FORMAT(' \hbox{\vbox{\halftone\offinterlineskip ',
     & '% machine-generated by TEXPIC.'/
     &  ' \def\BHT{\hbox\bgroup\ignorespaces}'/
     &  ' \catcode`\^=12 \catcode`\_=12 \catcode`\.=\active',
     &  ' \let.=\egroup'/ ' \catcode`\,=\active \let,=\BHT',
     &  ' \catcode`\/=0 \catcode`\\=12')
  200 FORMAT(1X,A,'%')
  300 FORMAT(1X,A,'.')
  400 FORMAT(' }}%')
      END
C --- -----------------------------------------------------------------
      SUBROUTINE TEXMAX( MV )
C --- -----------------------------------------------------------------
C
C --- TEXMAX version 0.0 was written by Alien in Fortran-77.
C
C --- This  routine sets the maximum number of pixels across a picture
C --- which TEXPIC will output to a file. Pictures  which  have  their
C --- first  dimension greater than MMAX are interpolated down to MMAX
C --- pixels.
C
C --- USAGE:  CALL TEXMAX( MMAX )
C
C --- PARAMETERS
C ---     MMAX  INTEGER  maximum number of pixels  to  be  plotted  by
C ---                    TEXPIC
C
C --- RESTRICTIONS
C --- none
C
C --- COMMONS
C --- /ALGTEX/
C
C --- SUBPROGRAMS INVOKED
C --- none
C
C --- Copyright (C) Alien 1987 -- All rights reserved.
C
      IMPLICIT NONE
C
      INTEGER GRFGRF, GRFHIS, GRFPOL
      INTEGER MAXICH, MAXRCH
      INTEGER MINLUN, MAXLUN
      INTEGER MAXOUT, MAXARR, MAXAFT, MAXCH
      INTEGER MAXSTV, NOUSEM
      REAL PI
C
      PARAMETER( GRFGRF=0, GRFHIS=1, GRFPOL=2 )
      PARAMETER( MAXICH=11, MAXRCH=11 )
      PARAMETER( MINLUN=1, MAXLUN=99 )
      PARAMETER( MAXOUT=133, MAXARR=512, MAXAFT=(9*MAXARR)/4+1 )
      PARAMETER( MAXCH=16 )
      PARAMETER( MAXSTV=3, NOUSEM=-1 )
      PARAMETER( PI=3.1415926535897932384626433 )
C
      INTEGER MV
C
      CHARACTER*(MAXICH) BUF
C
      INTEGER MMAX
C
      COMMON/ALGTEX/ MMAX
      SAVE /ALGTEX/
C
      IF( MV .GE. 2 ) THEN
         MMAX = MV
      ELSE
         WRITE( BUF, 100 ) MV
         CALL ALGERR( 'TEXMAX',
     &    'Too few pixels selected across page:'//BUF,
     &    'You must have two or more pixels across the page' )
      END IF
C
      RETURN
  100 FORMAT(I11)
      END
C --- ------------------------------------------------------------------
      SUBROUTINE ZRANGE( ZVMIN, ZVMAX )
C --- ------------------------------------------------------------------
C
C --- ZRANGE version 0.0 was written by Alien in Fortran-77.
C
C --- This  routine  fixes  the  range  of  the  Z-axis for subsequent
C --- graphical plots.
C
C --- USAGE:  CALL ZRANGE( ZMIN, ZMAX )
C
C --- PARAMETERS
C ---     ZMIN  REAL  minimum value to appear on the Z-axis
C ---     ZMAX  REAL  maximum value to appear on the Z-axis
C
C --- RESTRICTIONS
C --- ZMIN must be smaller than ZMAX.
C --- Note that the range of values actually produced on graphs may be
C --- slightly greater than those specified.
C
C --- SUBPROGRAMS INVOKED
C --- ALGERR
C
C --- COMMONS
C --- ZFIX, ZMIN, ZMAX in /ALG/
C
C --- Copyright (C) Alien 1987 -- All rights reserved.
C
      IMPLICIT NONE
C
      INTEGER GRFGRF, GRFHIS, GRFPOL
      INTEGER MAXICH, MAXRCH
      INTEGER MINLUN, MAXLUN
      INTEGER MAXOUT, MAXARR, MAXAFT, MAXCH
      INTEGER MAXSTV, NOUSEM
      REAL PI
C
      PARAMETER( GRFGRF=0, GRFHIS=1, GRFPOL=2 )
      PARAMETER( MAXICH=11, MAXRCH=11 )
      PARAMETER( MINLUN=1, MAXLUN=99 )
      PARAMETER( MAXOUT=133, MAXARR=512, MAXAFT=(9*MAXARR)/4+1 )
      PARAMETER( MAXCH=16 )
      PARAMETER( MAXSTV=3, NOUSEM=-1 )
      PARAMETER( PI=3.1415926535897932384626433 )
C
      REAL ZVMIN, ZVMAX
C
      INTEGER GLUN, PLUN, ELUN, POLHIS
      LOGICAL XFIX, YFIX, ZFIX, RFIX, TFIX, LOGX, LOGY, LOGZ, LOGR
      LOGICAL VRBOSE, NEG, MIDORG, FTNRML
      REAL XMIN, XMAX, YMIN, YMAX, ZMIN, ZMAX, RMIN, RMAX, TMIN, TMAX,
     & FTFWD, FTREV
      REAL TOL
C
      COMMON /ALG/ XMIN, XMAX, YMIN, YMAX, ZMIN, ZMAX, RMIN, RMAX,
     & TMIN, TMAX, TOL, FTFWD, FTREV, XFIX, YFIX, ZFIX, RFIX, TFIX,
     & LOGX, LOGY, LOGZ, LOGR, NEG, GLUN, PLUN, ELUN, POLHIS, MIDORG,
     & FTNRML, VRBOSE
      SAVE /ALG/
C
      IF( ZVMIN .LT. ZVMAX ) THEN
         ZMIN = ZVMIN
         ZMAX = ZVMAX
         ZFIX = .TRUE.
      ELSE
         CALL ALGERR('ZRANGE','Zmin was not smaller than Zmax.',' ')
      END IF
C
      RETURN
      END
C --- ------------------------------------------------------------------
      SUBROUTINE ZAUTO
C --- ------------------------------------------------------------------
C
C --- ZAUTO version 0.0 was written by Alien in Fortran-77.
C
C --- This routine causes  the  Z-axis  of  subsequent  graphical plots
C --- to be scaled according to the data being plotted.
C
C --- USAGE:  CALL ZAUTO
C
C --- PARAMETERS
C --- none
C
C --- RESTRICTIONS
C --- none
C
C --- SUBPROGRAMS INVOKED
C --- none
C
C --- COMMONS
C --- ZFIX in /ALG/
C
C --- Copyright (C) Alien 1987 -- All rights reserved.
C
      IMPLICIT NONE
C
      INTEGER GLUN, PLUN, ELUN, POLHIS
      LOGICAL XFIX, YFIX, ZFIX, RFIX, TFIX, LOGX, LOGY, LOGZ, LOGR
      LOGICAL VRBOSE, NEG, MIDORG, FTNRML
      REAL XMIN, XMAX, YMIN, YMAX, ZMIN, ZMAX, RMIN, RMAX, TMIN, TMAX,
     & FTFWD, FTREV
      REAL TOL
C
      COMMON /ALG/ XMIN, XMAX, YMIN, YMAX, ZMIN, ZMAX, RMIN, RMAX,
     & TMIN, TMAX, TOL, FTFWD, FTREV, XFIX, YFIX, ZFIX, RFIX, TFIX,
     & LOGX, LOGY, LOGZ, LOGR, NEG, GLUN, PLUN, ELUN, POLHIS, MIDORG,
     & FTNRML, VRBOSE
      SAVE /ALG/
C
      ZFIX = .FALSE.
C
      RETURN
      END
C --- ------------------------------------------------------------------
      SUBROUTINE ZSAME
C --- ------------------------------------------------------------------
C ---                         ZSAME version 0.0
C
C ---  Written by Alien in Fortran-77. 
C
C ---  This  routine  causes  the  range  of  the  Z-axis on subsequent
C ---  graphical plots to be the same as those  used  on  the  previous
C ---  invocation. 
C
C ---  USAGE: CALL ZSAME 
C
C ---  PARAMETERS 
C ---  none 
C
C ---  RESTRICTIONS 
C ---  none 
C
C ---  SUBPROGRAMS INVOKED 
C ---  |ALGERR| 
C
C ---  COMMONS 
C ---  |ZFIX|, |ZMIN|, |ZMAX| in |/ALG/| 
C
C --- Copyright (C) Alien 1987 -- All rights reserved.
C
      IMPLICIT NONE
C
      INTEGER GRFGRF, GRFHIS, GRFPOL
      INTEGER MAXICH, MAXRCH
      INTEGER MINLUN, MAXLUN
      INTEGER MAXOUT, MAXARR, MAXAFT, MAXCH
      INTEGER MAXSTV, NOUSEM
      REAL PI
C
      PARAMETER( GRFGRF=0, GRFHIS=1, GRFPOL=2 )
      PARAMETER( MAXICH=11, MAXRCH=11 )
      PARAMETER( MINLUN=1, MAXLUN=99 )
      PARAMETER( MAXOUT=133, MAXARR=512, MAXAFT=(9*MAXARR)/4+1 )
      PARAMETER( MAXCH=16 )
      PARAMETER( MAXSTV=3, NOUSEM=-1 )
      PARAMETER( PI=3.1415926535897932384626433 )
C
      INTEGER GLUN, PLUN, ELUN, POLHIS
      LOGICAL XFIX, YFIX, ZFIX, RFIX, TFIX, LOGX, LOGY, LOGZ, LOGR
      LOGICAL VRBOSE, NEG, MIDORG, FTNRML
      REAL XMIN, XMAX, YMIN, YMAX, ZMIN, ZMAX, RMIN, RMAX, TMIN, TMAX,
     & FTFWD, FTREV
      REAL TOL
C
      COMMON /ALG/ XMIN, XMAX, YMIN, YMAX, ZMIN, ZMAX, RMIN, RMAX,
     & TMIN, TMAX, TOL, FTFWD, FTREV, XFIX, YFIX, ZFIX, RFIX, TFIX,
     & LOGX, LOGY, LOGZ, LOGR, NEG, GLUN, PLUN, ELUN, POLHIS, MIDORG,
     & FTNRML, VRBOSE
      SAVE /ALG/
C
      IF( ZMIN .LT. ZMAX ) THEN
         ZFIX = .TRUE.
      ELSE
         CALL ALGERR('ZSAME','Zmin was not smaller than Zmax.',
     &    'Call ignored.' )
      END IF
C
      RETURN
      END
C --- -----------------------------------------------------------------
      SUBROUTINE DONEG
C --- -----------------------------------------------------------------
C
C --- DONEG version 0.0 was written by Alien in Fortran-77.
C
C --- This routine causes subsequent grey-level pictures to  be  drawn
C --- with negative contrast.
C
C --- USAGE:  CALL DONEG
C
C --- PARAMETERS
C --- none
C
C --- RESTRICTIONS
C --- none
C
C --- SUBPROGRAMS INVOKED
C --- none
C
C --- COMMONS
C --- NEG in /ALG/
C
C --- Copyright (C) Alien 1987 -- All rights reserved.
C
      IMPLICIT NONE
C
      INTEGER GRFGRF, GRFHIS, GRFPOL
      INTEGER MAXICH, MAXRCH
      INTEGER MINLUN, MAXLUN
      INTEGER MAXOUT, MAXARR, MAXAFT, MAXCH
      INTEGER MAXSTV, NOUSEM
      REAL PI
C
      PARAMETER( GRFGRF=0, GRFHIS=1, GRFPOL=2 )
      PARAMETER( MAXICH=11, MAXRCH=11 )
      PARAMETER( MINLUN=1, MAXLUN=99 )
      PARAMETER( MAXOUT=133, MAXARR=512, MAXAFT=(9*MAXARR)/4+1 )
      PARAMETER( MAXCH=16 )
      PARAMETER( MAXSTV=3, NOUSEM=-1 )
      PARAMETER( PI=3.1415926535897932384626433 )
      INTEGER GLUN, PLUN, ELUN, POLHIS
      LOGICAL XFIX, YFIX, ZFIX, RFIX, TFIX, LOGX, LOGY, LOGZ, LOGR
      LOGICAL VRBOSE, NEG, MIDORG, FTNRML
      REAL XMIN, XMAX, YMIN, YMAX, ZMIN, ZMAX, RMIN, RMAX, TMIN, TMAX,
     & FTFWD, FTREV
      REAL TOL
C
      COMMON /ALG/ XMIN, XMAX, YMIN, YMAX, ZMIN, ZMAX, RMIN, RMAX,
     & TMIN, TMAX, TOL, FTFWD, FTREV, XFIX, YFIX, ZFIX, RFIX, TFIX,
     & LOGX, LOGY, LOGZ, LOGR, NEG, GLUN, PLUN, ELUN, POLHIS, MIDORG,
     & FTNRML, VRBOSE
      SAVE /ALG/
C
C
      NEG = .TRUE.
C
      RETURN
      END
C --- -----------------------------------------------------------------
      SUBROUTINE DOPOS
C --- -----------------------------------------------------------------
C
C --- DOPOS version 0.0 was written by Alien in Fortran-77.
C
C --- This routine causes subsequent grey-level pictures to  be  drawn
C --- with negative contrast.
C
C --- USAGE:  CALL DOPOS
C
C --- PARAMETERS
C --- none
C
C --- RESTRICTIONS
C --- none
C
C --- SUBPROGRAMS INVOKED
C --- none
C
C --- COMMONS
C --- NEG in /ALG/
C
C --- Copyright (C) Alien 1987 -- All rights reserved.
C
      IMPLICIT NONE
C
      INTEGER GRFGRF, GRFHIS, GRFPOL
      INTEGER MAXICH, MAXRCH
      INTEGER MINLUN, MAXLUN
      INTEGER MAXOUT, MAXARR, MAXAFT, MAXCH
      INTEGER MAXSTV, NOUSEM
      REAL PI
C
      PARAMETER( GRFGRF=0, GRFHIS=1, GRFPOL=2 )
      PARAMETER( MAXICH=11, MAXRCH=11 )
      PARAMETER( MINLUN=1, MAXLUN=99 )
      PARAMETER( MAXOUT=133, MAXARR=512, MAXAFT=(9*MAXARR)/4+1 )
      PARAMETER( MAXCH=16 )
      PARAMETER( MAXSTV=3, NOUSEM=-1 )
      PARAMETER( PI=3.1415926535897932384626433 )
      INTEGER GLUN, PLUN, ELUN, POLHIS
      LOGICAL XFIX, YFIX, ZFIX, RFIX, TFIX, LOGX, LOGY, LOGZ, LOGR
      LOGICAL VRBOSE, NEG, MIDORG, FTNRML
      REAL XMIN, XMAX, YMIN, YMAX, ZMIN, ZMAX, RMIN, RMAX, TMIN, TMAX,
     & FTFWD, FTREV
      REAL TOL
C
      COMMON /ALG/ XMIN, XMAX, YMIN, YMAX, ZMIN, ZMAX, RMIN, RMAX,
     & TMIN, TMAX, TOL, FTFWD, FTREV, XFIX, YFIX, ZFIX, RFIX, TFIX,
     & LOGX, LOGY, LOGZ, LOGR, NEG, GLUN, PLUN, ELUN, POLHIS, MIDORG,
     & FTNRML, VRBOSE
      SAVE /ALG/
C
C
      NEG = .FALSE.
C
      RETURN
      END
C --- ------------------------------------------------------------------
      SUBROUTINE MINMAX( ARRAY, M, N, LOWEST, HIEST )
C --- ------------------------------------------------------------------
C
C --- MINMAX version 0.0 was written by Alien in Fortran-77.
C
C --- This  routine  determines  the smallest and largest values of an
C --- array. If an interrupt is detected during the estimation of  the
C --- limits of the data, the currently-detected limits are returned.
C
C --- USAGE: CALL MINMAX( ARRAY, M, N, MIN, MAX )
C
C --- PARAMETERS
C ---     ARRAY  REAL     array of which the limits are to be
C ---                     determined
C ---     M      INTEGER  first dimension of ARRAY
C ---     N      INTEGER  second dimension of ARRAY
C ---     MIN    REAL     minimum value found in ARRAY (returned)
C ---     MAX    REAL     maximum value found in ARRAY (returned)
C
C --- RESTRICTIONS
C --- If  interrupts are to be detected, interrupt detection must have
C --- been enabled  by  the  calling  program---see  ABANDN  for  more
C --- details.
C
C --- SUBPROGRAMS INVOKED
C --- ABANDN
C
C --- COMMONS
C --- none
C
C --- Copyright (C) Alien 1987 -- All rights reserved.
C
      IMPLICIT NONE
      INTEGER GRFGRF, GRFHIS, GRFPOL
      INTEGER MAXICH, MAXRCH
      INTEGER MINLUN, MAXLUN
      INTEGER MAXOUT, MAXARR, MAXAFT, MAXCH
      INTEGER MAXSTV, NOUSEM
      REAL PI
C
      PARAMETER( GRFGRF=0, GRFHIS=1, GRFPOL=2 )
      PARAMETER( MAXICH=11, MAXRCH=11 )
      PARAMETER( MINLUN=1, MAXLUN=99 )
      PARAMETER( MAXOUT=133, MAXARR=512, MAXAFT=(9*MAXARR)/4+1 )
      PARAMETER( MAXCH=16 )
      PARAMETER( MAXSTV=3, NOUSEM=-1 )
      PARAMETER( PI=3.1415926535897932384626433 )
C
      INTEGER M, N
      REAL ARRAY(M*N), LOWEST, HIEST
C
      INTEGER I, J, JM
      REAL VAL, LO, HI
      INTEGER*2 CHAN
      LOGICAL ABFLAG
C
      COMMON /ALG_ABANDN/ ABFLAG, CHAN
      SAVE /ALG_ABANDN/
      EXTERNAL ALGINI
C
C --- We have declared ARRAY as a 1-D array, but will still access
C --- it via two DO-loops. This is so that ABANDN is only invoked once
C --- per "row" of ARRAY.
C
      LO = ARRAY(1)
      HI = LO
C
      DO 1 J = 1, N
         JM = (J-1) * M
      IF( ABFLAG ) GO TO 2
         DO 1 I = 1, M
            VAL = ARRAY(I+JM)
            IF( VAL .LT. LO ) LO = VAL
            IF( VAL .GT. HI ) HI = VAL
    1 CONTINUE
C
    2 CONTINUE
      LOWEST = LO
      HIEST = HI
C
      RETURN
      END
C --- ------------------------------------------------------------------
      SUBROUTINE ALGERR( NAME, MESS, EXTRA )
C --- ------------------------------------------------------------------
C
C --- ALGERR version 0.0 was written by Alien in Fortran-77.
C
C --- This routine reports errors generated by other routines. NAME is
C --- the  name  of the invoking routine while MESS and EXTRA form the
C --- message to be reported to the user. MESS  is  the  text  of  the
C --- message.  EXTRA,  if non-blank, contains extra information about
C --- the error; leading and trailing blanks are  removed  from  EXTRA
C --- before  it is output. The current version of this routine simply
C --- outputs the message text on the error output channel  --  future
C --- versions will be more sophisticated.
C
C --- USAGE: CALL ALGERR( NAME, MESS, EXTRA )
C
C --- PARAMETERS
C ---     NAME  CHARACTER*(*)  name of the invoking routine
C ---     MESS  CHARACTER*(*)  message to be output
C ---     EXTRA CHARACTER*(*)  additional text for the message
C
C --- RESTRICTIONS
C --- The  total  length  of  the message must be less than the output
C --- line length (usually 132 characters)  --  this  means  that  the
C --- lengths of NAME and MESS, when added together, must come to less
C --- then 110 characters.
C
C --- SUBPROGRAMS INVOKED
C --- none
C
C --- COMMONS
C --- /ALG/
C
C --- Copyright (C) Alien 1987 -- All rights reserved.
C
      IMPLICIT NONE
C
      CHARACTER*1 BLANK
      PARAMETER( BLANK=' ' )
C
      CHARACTER*(*) NAME, MESS, EXTRA
C
      INTEGER NEXTRA, FC, LC, NMESS, LM
C
      INTEGER GLUN, PLUN, ELUN, POLHIS
      LOGICAL XFIX, YFIX, ZFIX, RFIX, TFIX, LOGX, LOGY, LOGZ, LOGR
      LOGICAL VRBOSE, NEG, MIDORG, FTNRML
      REAL XMIN, XMAX, YMIN, YMAX, ZMIN, ZMAX, RMIN, RMAX, TMIN, TMAX,
     & FTFWD, FTREV
      REAL TOL
C
      COMMON /ALG/ XMIN, XMAX, YMIN, YMAX, ZMIN, ZMAX, RMIN, RMAX,
     & TMIN, TMAX, TOL, FTFWD, FTREV, XFIX, YFIX, ZFIX, RFIX, TFIX,
     & LOGX, LOGY, LOGZ, LOGR, NEG, GLUN, PLUN, ELUN, POLHIS, MIDORG,
     & FTNRML, VRBOSE
      SAVE /ALG/
      EXTERNAL ALGINI
C
      NMESS = LEN( MESS )
      DO 1 LM = NMESS, 1, -1
         IF( MESS(LM:LM) .NE. BLANK ) GO TO 2
    1 CONTINUE
      LM = 1
    2 CONTINUE
C
      IF( EXTRA .EQ. BLANK ) THEN
         WRITE( ELUN, 100 ) NAME, MESS(1:LM)
      ELSE
         NEXTRA = LEN( EXTRA )
         DO 3 FC = 1, NEXTRA
            IF( EXTRA(FC:FC) .NE. BLANK ) GO TO 4
    3    CONTINUE
    4    CONTINUE
         DO 5 LC = NEXTRA, FC, -1
            IF( EXTRA(LC:LC) .NE. BLANK ) GO TO 6
    5    CONTINUE
    6    CONTINUE
         WRITE( ELUN, 100 ) NAME, MESS(1:LM)
         WRITE( ELUN, 101 ) EXTRA(FC:LC)
      END IF
C
      RETURN
  100 FORMAT(1X,A,': error -- ',A)
  101 FORMAT(10X,A)
      END
C --- ------------------------------------------------------------------
      LOGICAL FUNCTION ABANDN( OP )
C --- ------------------------------------------------------------------
C
C --- ABANDN version 0.1 was written by Alien in Fortran-77.
C
C --- This  LOGICAL  function  is  used to detect whether the user has
C --- tried to interrupt execution.
C
C ---    The method of specifying an interrupt varies from  system  to
C --- system,   but   is  typically  by  typing  a  control  character
C --- (control-C on the VAX). ABANDN is used  with  OP  =  0  to  TEST
C --- whether the user has signalled an interrupt -- the value TRUE is
C --- returned  as  the  value  of  the  function if this is the case.
C --- ABANDN is used with OP = 1 to SET or CLEAR the  interrupt  trap;
C --- this  must  be  done  by  the  calling program. Note that ABANDN
C --- returns the value TRUE if an error  occurred  while  setting  or
C --- clearing the interrupt trap.
C
C --- USAGE:   <logical variable> = ABANDN( OP )
C
C --- PARAMETERS
C ---     OP  INTEGER  operation 0 ==> test, 1 ==> set
C
C --- RESTRICTIONS
C --- Interrupts  will  not  be trapped before the first invocation of
C --- ABANDN(1).
C --- After  the  user  has   signalled   an   interrupt,   subsequent
C --- invocations  of  ABANDN(0)  will  return TRUE until ABANDN(1) is
C --- used to clear it.
C --- If the user generates interrupts very quickly (for  example,  by
C --- letting  the  ^C  auto-repeat), they may be delivered so quickly
C --- that ABANDN does not manage to reset its trap in time;  in  this
C --- case, it will actually interrupt program execution.
C --- This version of ABANDN requires VAX/VMS 3.0 or later.
C
C --- SUBPROGRAMS INVOKED
C --- ALG_ABANDN_AST (condition handler)
C
C --- COMMONS
C --- /ALG_ABANDN/
C
C --- Copyright (C) Alien 1987 -- All rights reserved.
C
      IMPLICIT NONE
C
      INCLUDE '($IODEF)'
C
      INTEGER ABSET, ABTEST
      INTEGER GRFGRF, GRFHIS, GRFPOL
      INTEGER MAXICH, MAXRCH
      INTEGER MINLUN, MAXLUN
      INTEGER MAXOUT, MAXARR, MAXAFT, MAXCH
      INTEGER MAXSTV, NOUSEM
      REAL PI
C
      PARAMETER( GRFGRF=0, GRFHIS=1, GRFPOL=2 )
      PARAMETER( MAXICH=11, MAXRCH=11 )
      PARAMETER( MINLUN=1, MAXLUN=99 )
      PARAMETER( MAXOUT=133, MAXARR=512, MAXAFT=(9*MAXARR)/4+1 )
      PARAMETER( MAXCH=16 )
      PARAMETER( MAXSTV=3, NOUSEM=-1 )
      PARAMETER( PI=3.1415926535897932384626433 )
      PARAMETER( ABSET=1, ABTEST=0 )
C
      INTEGER OP
C
      CHARACTER*(MAXICH) CODE
      INTEGER F
      INTEGER IOS, VAL, SYS$GETDVI, SYS$ASSIGN, SYS$QIOW, SYS$DASSGN
      INTEGER DVIBLK(4)/ '40004'X, 0, 0, 0/
      INTEGER*2 IOSB(4)
      LOGICAL FIRST/.TRUE./
      EXTERNAL ALG_ABANDN_AST
      INTEGER*2 CHAN
      LOGICAL ABFLAG
C
      COMMON /ALG_ABANDN/ ABFLAG, CHAN
      SAVE /ALG_ABANDN/
C
C --- Branch according to the value of OP.
C
      IF( OP .EQ. ABTEST ) THEN
         ABANDN = ABFLAG
      ELSE IF( OP .EQ. ABSET ) THEN
         ABANDN = .FALSE.
         IF( FIRST ) THEN
C
C --- Check that we're using a terminal.
C
            DVIBLK(2) = %LOC( VAL )
            IOS = SYS$GETDVI( ,, 'TT', DVIBLK, ,,, )
            IF( .NOT. IOS ) CALL EXIT( IOS )
            IF( VAL .EQ. '42'X ) THEN
C
C --- If we're using a terminal, assign a channel to the device and set
C --- the trap; failure from any of the system services is taken as a
C --- fatal error. We will only return a failure code to the user if
C --- IOSB(1) indicates an error.
C
               IOS = SYS$ASSIGN( 'TT', CHAN,, )
               IF( .NOT. IOS ) CALL EXIT( IOS )
               IOS = SYS$QIOW(, %VAL(CHAN), %VAL(IO$_SETMODE.OR.IO$M_CTR
     &LCAST),
     &            IOSB, ,,   ALG_ABANDN_AST, ,,,, )
               IF( .NOT. IOS ) CALL EXIT( IOS )
               IF( IOSB(1) ) THEN
                  FIRST = .FALSE.
               ELSE
C
C --- We didn't succeed in setting the interrupt trap, heaven knows why!
C --- Set the function to return an error code, then close the channel
C --- we
C --- have so carefully opened.
C
                  ABANDN = .TRUE.
                  IOS = SYS$DASSGN( %VAL(CHAN) )
                  IF( .NOT. IOS ) CALL EXIT( IOS )
               END IF
            END IF
         END IF
         ABFLAG = .FALSE.
      ELSE
         STOP 'ABANDN: Illegal argument value.'
      END IF
C
      RETURN
  100 FORMAT(I11)
      END
C --- ------------------------------------------------------------------
      SUBROUTINE ALG_ABANDN_AST
C --- ------------------------------------------------------------------
C
C --- This routine is the condition handler which is used in the
C --- implementation of ABANDN for VAX/VMS. It is called by the system
C --- when the user types ^C at his terminal; its main purpose is to set
C --- ABFLAG in common /ALG_ABANDN/, to be tested by ABANDN(ABTEST).
C --- However, because VMS ^C condition handlers are one-shot affairs,
C --- we must also re-impose the trap. This is done by invoking the
C --- simple routine ALG_ABANDN_RESET_TRAP.
C
      INTEGER*2 CHAN
      LOGICAL ABFLAG
C
      COMMON /ALG_ABANDN/ ABFLAG, CHAN
      SAVE /ALG_ABANDN/
C
C --- Set ABFLAG.
C
      ABFLAG = .TRUE.
C
C --- And reset the trap.
C
      CALL ALG_ABANDN_RESET_TRAP
C
      RETURN
      END
C --- ------------------------------------------------------------------
      SUBROUTINE ALG_ABANDN_RESET_TRAP
C --- ------------------------------------------------------------------
C
C --- This routine resets the ^C trap for ALG_ABANDN_AST, because the
C --- Fortran compiler will not allow ALG_ABANDN_AST to be used in the
C --- $QIOW call inside its own code.
C
      INCLUDE '($IODEF)'
      INTEGER*2 IOSB(4)
      INTEGER IOS, SYS$QIOW
      EXTERNAL ALG_ABANDN_AST
C
      INTEGER*2 CHAN
      LOGICAL ABFLAG
C
      COMMON /ALG_ABANDN/ ABFLAG, CHAN
      SAVE /ALG_ABANDN/
C
      IOS = SYS$QIOW(, %VAL(CHAN), %VAL(IO$_SETMODE.OR.IO$M_CTRLCAST),
     &   IOSB, ,,   ALG_ABANDN_AST, ,,,, )
      IF( .NOT. IOS ) CALL EXIT( IOS )
C
      RETURN
      END
C --- ------------------------------------------------------------------
           B L O C K    D A T A    A L G I N I
C --- ------------------------------------------------------------------
C
C --- Copyright (C) Alien 1987 -- All rights reserved.
C
      IMPLICIT NONE
C
C --- The following definitions are used to allow expressions to be
C --- typed for the initial values of variables.
C
      INTEGER GRFGRF, GRFHIS, GRFPOL
      INTEGER MAXICH, MAXRCH
      INTEGER MINLUN, MAXLUN
      INTEGER MAXOUT, MAXARR, MAXAFT, MAXCH
      INTEGER MAXSTV, NOUSEM
      REAL PI
      INTEGER ORDRED, RNDOM, STRAIT
C
      PARAMETER( GRFGRF=0, GRFHIS=1, GRFPOL=2 )
      PARAMETER( MAXICH=11, MAXRCH=11 )
      PARAMETER( MINLUN=1, MAXLUN=99 )
      PARAMETER( MAXOUT=133, MAXARR=512, MAXAFT=(9*MAXARR)/4+1 )
      PARAMETER( MAXCH=16 )
      PARAMETER( MAXSTV=3, NOUSEM=-1 )
      PARAMETER( PI=3.1415926535897932384626433 )
      PARAMETER( ORDRED=1, RNDOM=2, STRAIT=0 )
      INTEGER MOUT1, MSTAT
      PARAMETER (MOUT1=MAXOUT-1, MSTAT=MAXSTV+1)
C
C --- Include all the common variables and blocks.
C
      INTEGER GLUN, PLUN, ELUN, POLHIS
      LOGICAL XFIX, YFIX, ZFIX, RFIX, TFIX, LOGX, LOGY, LOGZ, LOGR
      LOGICAL VRBOSE, NEG, MIDORG, FTNRML
      REAL XMIN, XMAX, YMIN, YMAX, ZMIN, ZMAX, RMIN, RMAX, TMIN, TMAX,
     & FTFWD, FTREV
      REAL TOL
      INTEGER*2 CHAN
      LOGICAL ABFLAG
      CHARACTER*1 BLANK, VMARK, HMARK, TICK
      CHARACTER*(MAXOUT) LPBUF
      INTEGER LPHT, LPWID
      LOGICAL FF
      REAL ASPECT
      LOGICAL USEM, EXACT, KNOWEM(0:MAXSTV)
      REAL MINS(0:MAXSTV), MAXS(0:MAXSTV), MEANS(0:MAXSTV),
     &   SDS(0:MAXSTV)
      INTEGER MMAX
      INTEGER METHOD
C
      COMMON /ALG/ XMIN, XMAX, YMIN, YMAX, ZMIN, ZMAX, RMIN, RMAX,
     & TMIN, TMAX, TOL, FTFWD, FTREV, XFIX, YFIX, ZFIX, RFIX, TFIX,
     & LOGX, LOGY, LOGZ, LOGR, NEG, GLUN, PLUN, ELUN, POLHIS, MIDORG,
     & FTNRML, VRBOSE
      SAVE /ALG/
      COMMON /ALG_ABANDN/ ABFLAG, CHAN
      SAVE /ALG_ABANDN/
      COMMON /LPC/ LPBUF, BLANK, VMARK, HMARK, TICK
      COMMON /LPN/ ASPECT, LPHT, LPWID, FF
      SAVE /LPC/, /LPN/
      COMMON /STAT/ MINS, MAXS, MEANS, SDS, USEM, KNOWEM, EXACT
      SAVE /STAT/
      COMMON/ALGTEX/ MMAX
      SAVE /ALGTEX/
      COMMON /V80/ METHOD
C
C --- / A L G /
C
      DATA LOGX/.FALSE./, LOGY/.FALSE./, LOGZ/.FALSE./, LOGR/.FALSE./
      DATA XMIN/0.0/, XMAX/0.0/, YMIN/0.0/, YMAX/0.0/, ZMIN/0.0/,
     & ZMAX/0.0/, RMIN/0.0/, RMAX/0.0/, TMIN/0.0/, TMAX/0.0/
      DATA XFIX/.FALSE./, YFIX/.FALSE./, ZFIX/.FALSE./
      DATA RFIX/.FALSE./, TFIX/.FALSE./
      DATA VRBOSE/.FALSE./, NEG/.FALSE./
      DATA MIDORG/.TRUE./, FTNRML/.FALSE./
      DATA GLUN/6/, PLUN/6/, ELUN/6/, POLHIS/GRFGRF/
      DATA TOL/1.0E-8/
      DATA FTFWD/0.0/, FTREV/0.0/
C
C --- / A B A N D N /
C
      DATA ABFLAG/.FALSE./
C
C --- / A L G T E X /
C
      DATA MMAX/256/
C
C --- / L P C /
C
      DATA BLANK/' '/, VMARK/'|'/, HMARK/'-'/, TICK/'+'/
C
C --- / L P N /
C
      DATA FF/.TRUE./
      DATA LPHT/62/, LPWID/MOUT1/
      DATA ASPECT/ 0.604 /
C
C --- / S T A T /
C
      DATA USEM/NOUSEM/, KNOWEM/MSTAT*.FALSE./, EXACT/.FALSE./
      DATA MEANS/MSTAT*0.0/, SDS/MSTAT*0.0/
      DATA MINS/MSTAT*0.0/, MAXS/MSTAT*0.0/
C
C --- / V 8 0 /
C
      DATA METHOD/STRAIT/
C
      END
$EOD
$WRITE SYS$OUTPUT "creating HALFTONE.MF" 
$CREATE HALFTONE.MF
$DECK
% halftone font with 65 levels of gray, characters "0" (white) to "p" (black)

pair p[]; % the pixels in order (first p0 becomes black, then p1, etc)
p0=(1,1);
p8=(2,0);
p16=(1,0);
p24=(0,0);
p32=(3,-1);
p40=(2,-1);
p48=(1,-1);
p56=(2,-2);
transform r; r=identity rotatedaround ((1.5,1.5),90);

for i=0 step 8 until 56:
 p[i+2]=p[i] transformed r;
 p[i+6]=p[i+2] transformed r;
 p[i+5]=p[i+6] transformed r;
 p[i+1]=p[i] shifted (4,4);
 p[i+3]=p[i+2] shifted (4,4);
 p[i+7]=p[i+6] shifted (4,4);
 p[i+4]=p[i+5] shifted (4,4);
 endfor

for i=32 step 1 until 63:
 p[i] := (xpart p[i] mod 8, ypart p[i] mod 8);
endfor

mode_setup;
designsize:=64/pt; % that's 64 pixels

def makebox(text t)= enddef; % shut off boxes

picture prevchar;

prevchar=nullpicture;
for i=0 upto 64:
 beginchar(i+ASCII"0",designsize/8,designsize/8,0);
 currentpicture:=prevchar;
 if i>0: fill unitsquare shifted p[i-1]; fi
 prevchar:=currentpicture;
 endchar;
 endfor

font_quad=designsize/8;
end
$EOD