blob: 31578b6f11cffa5a1db67f22e6347345b8711863 (
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
|
%!PS-Adobe-1.0
%%Creator: Ross Cartlidge <rossc@extro.ucc.su.oz.au>
%%Title: Multiple pages on one page
%%CreationDate: Tue Apr 10 09:37:26 EST 1990
%%Pages: 0
%%DocumentFonts:
%%BoundingBox: 0 0 0 0
%%EndComments
%
% Uncomment the next line if you wish to load multi into the "exitserver"
% state of the PostScript device
% serverdict begin 0 exitserver
%
%
% make each operator to overlay a procedure so a bind in
% a prolog will not stop the overlaying by "multi"
%
[
/gsave
/grestore
/grestoreall
/initgraphics
/initmatrix
/currentmatrix
/setmatrix
% Path construction operators
/initclip
% Virtual memory operators
/save
% ones which needed special overloading
/showpage
/erasepage
/copypage
/restore
% ignore these
/letter
/legal
/a4
/b5
/lettersmall
/note
]
{
% if exists check if operator else define {}
dup where
{
pop
% If operator then make into procedure
dup load type /operatortype eq
{
1 array cvx dup
0
3 index cvx % /n -> n
put % {}[0] -> n
bind
def
}
{
pop
}
ifelse
}
{
{} def
}
ifelse
}
forall
%
% Initialise endmulti to execute an error
%
/endmulti
{
count array astore /ostack exch def
250 array execstack /estack exch def
20 array dictstack /dstack exch def
$error /newerror true put
$error /errorname (No matching multi) cvn put
$error /command (endmulti) put
$error /ostack ostack put
$error /estack estack put
$error /dstack dstack put
stop
}
bind
def
%
% Put multiple logical pages on one physical page
% until "endmulti" called
%
% landscape nrows ncols left_right up_down row_major dividers multi -
% landscape nrows ncols up_down row_major dividers multi -
% landscape nrows ncols row_major dividers multi -
% landscape nrows ncols dividers multi -
% landscape nrows ncols multi -
%
% Go into multi page representation
%
% landscape boolean:true - divide page in landscape orientation
% false- divide page in portrait orirntation
% nrows integer:number of logical pages down physical page
% ncols integer:number of logical pages across physical page
% left_right(*) boolean:true - rows fill left to right
% false- rows fill right to left
% up_down(*) boolean:true - columsn fill top to bottom
% false- columns fill bottom to top
% row_major(*) boolean:true - fill rowwise
% false- fill columnwise
% dividers(*) boolean:true - divide logical pages by lines
% false- don't divide logical pages
%
% NB: Optional parameters(*) default to true.
%
/multi
{
currentdict
64 dict begin
/initdict exch def % store initial dict for backward reference
%
% Initialise the Optional Parameters (right to left)
%
[
/dividers
/row_major
/up_down
/left_right
]
{
exch dup type /booleantype ne
{
exch % put non bool back
true def % default to true
}
{
def
}
ifelse
}
forall
/cols exch def
/rows exch def
%
% get size of current page
%
initgraphics clippath pathbbox
/Y exch def % Max Y
/X exch def % Max X
/y exch def % Min Y
/x exch def % Min X
/W X x add def % Width of Page
/H Y y add def % Height of page
%
% functions to turn page# into row and column
% depending on whether rows or cols fill first
%
row_major
{
/tocol { cols mod } def
/torow { cols idiv } def
}
{
/tocol { rows idiv } def
/torow { rows mod } def
}
ifelse
% if landscape
{
%
% Note: x and y are reversed
%
/w Y y sub def % Width of imageable region
/h X x sub def % Height of imageable region
/ox y def % origin of physical page
/oy x def
/L % Map to landscape
-90 matrix rotate
0 H matrix translate
matrix concatmatrix
def
}
{
/w X x sub def
/h Y y sub def
/ox x def
/oy y def
/L matrix def
}
ifelse
%
% Calculate origin fudge so that scaled margin = fudge
% This means that the clippath of the logical page
% will align with the physical clippath.
% (wf/W)x = xf where,
% wf = new width = w + 2xf,
% x = margin xf = scaled margin
% so xf = wx/(COLS.W-2x)
/xf w x mul W cols mul 2 x mul sub div def
/yf h y mul H rows mul 2 y mul sub div def
/w w 2 xf mul add def
/h h 2 yf mul add def
%
% CTM (multi) = C x T x M x L x I
% CTM (normal) = C x I
% CTM (normal) = CTM (multi) x (T x M x L x I)-1 x I
% M = (Scale rows/cols) x (Scale logical to physical) x
% (Translate to physical clip origin + fudge)
% T = (Convert logical page to spot and physical)
% L = (Convert to landscape)
% I = Initial Physical CTM
% C = Random transform on logical page
/M
w W div cols div
h H div rows div
matrix scale
ox xf sub oy yf sub matrix translate % Move to origin
matrix concatmatrix
def
/I
matrix currentmatrix
def
/I_inv
I matrix invertmatrix
def
% matrix T <current T>
/T
{
page# tocol
left_right not
{
cols 1 sub exch sub
}
if
W mul
page# torow
up_down
{
rows 1 sub exch sub
}
if
H mul
3 -1 roll translate
}
def
%
% Utility functions
% NB: *_t1 are temporary variables
%
% matrix fromcanon <I-1 x T x M x L x I>
/From_t1 matrix def
/From_t2 matrix def
/From_t3 matrix def
/From_t4 matrix def
/fromcanon
{
I_inv
From_t1 T
M
L
I
From_t2 concatmatrix
From_t3 concatmatrix
From_t4 concatmatrix
3 -1 roll concatmatrix
}
def
% /n {} mkmulti -
% makes a new function called "n" in previous dict with:-
% {}[0] = /n
% {}[1] = currentdict
% currentdict.n = prevdict.n
%
/mkmulti
{
1 index dup load def %define old val in current dict
5 array cvx
dup 3 4 -1 roll put % A[3] = {}
dup 0 3 index put % A[0] = /n
dup 1 currentdict put % A[1] = currentdict
dup 2 /begin cvx put % A[2] = begin
dup 4 /exec cvx put % A[4] = exec
initdict 3 1 roll
put % define initdict.n to multi function
}
def
%
% path_to_proc {}
% make proc represenation of current path
%
/path_to_proc
{
{
[
/newpath cvx
{ /moveto cvx}
{ /lineto cvx}
{ /curveto cvx}
{ /closepath cvx }
pathforall
]
cvx
exch pop
}
stopped
{
$error /errorname get /invalidaccess eq
{
cleartomark
$error /newerror false put
(%%Warning%% charpath in path - path nulled) =
cvx exec
}
{
stop
}
ifelse
}
if
}
def
/path_def
{
{ currentpoint } stopped
{
$error /newerror false put
{ newpath }
}
{
/newpath cvx 3 1 roll /moveto cvx 4 array astore cvx
}
ifelse
}
cvlit def
%
% Draw lines round logical pages
%
/draw_dividers
{
initgraphics
L concat
M concat
1 1 cols 1 sub
{
W mul
dup
0 moveto
rows H mul lineto
}
for
1 1 rows 1 sub
{
H mul
dup
0 exch moveto
cols W mul exch lineto
}
for
stroke
}
def
%
% for each graphics operator which affects absolute state
%
/M1 matrix def
/M3 matrix def
/M2 matrix def
[
/gsave
/grestore
/grestoreall
/initgraphics
/initmatrix
/currentmatrix
/setmatrix
% Path construction operators
/initclip
% Virtual memory operators
/save
]
{
{
% Save paths
path_def path_to_proc
clippath { {} } path_to_proc
%
% CTM <- CTM x Tocano (canon mode)
%
M1 currentmatrix
Tocanon
M2
concatmatrix
setmatrix
% Restore paths
initclip exec clip
exec
load exec
% Save paths
path_def path_to_proc
clippath { {} } path_to_proc
%
% CTM <- CTM x Fromcanon (Non canon mode)
%
M1 currentmatrix
Fromcanon
M2
concatmatrix
setmatrix
% Restore paths
initclip exec clip
exec
end
}
mkmulti
}
forall
%
% Define the operators which can't use the standard template
%
/showpage
{
/page# page# 1 add def
% Update the transform matrices
page# npages eq
{
dividers
{
draw_dividers
}
if
load exec % the previous showpage
/page# 0 def
}
{
pop
}
ifelse
/Fromcanon Fromcanon fromcanon def
/Tocanon Fromcanon Tocanon invertmatrix def
end
initgraphics % the new initgraphics
}
mkmulti
/copypage
{
pop
end
gsave
showpage
grestore
}
mkmulti
/erasepage
{
pop
end
gsave
initclip
clippath
1 setgray fill
grestore
}
mkmulti
[
/letter
/legal
/a4
/b5
/lettersmall
/note
]
{
{
pop end
(%%Warning%% Device change ignored) =
}
mkmulti
}
forall
%
% Define restore separately as it affects the value of page#, etc
%
/restore
{
pop
% Push the values to restore after restore
mark exch % put mark under -save-
page#
Fromcanon aload pop
Tocanon aload pop
counttomark -1 roll % get -save- to the top
restore
% Restore popped values
Tocanon astore pop
Fromcanon astore pop
/page# exch def
pop % mark
% Save paths
path_def path_to_proc
clippath { { } } path_to_proc
%
% CTM <- CTM x Fromcanon (Non canon mode)
%
M1 currentmatrix
Fromcanon
M2
concatmatrix
setmatrix
% Restore paths
initclip exec clip
exec
end
}
mkmulti
%
% procedure to undo the effect of multi
%
/endmulti
{
pop % don't need /endmulti
[
/gsave
/grestore
/grestoreall
/initgraphics
/initmatrix
/currentmatrix
/setmatrix
% Path construction operators
/initclip
% Virtual memory operators
/save
% ones which needed special overloading
/showpage
/erasepage
/copypage
/restore
% ignore these
/letter
/legal
/a4
/b5
/lettersmall
/note
%
/endmulti
]
{
initdict exch
dup load % get old value
put % restore old value
}
forall
page# 0 ne % if not at new page show uncomplete page
{
dividers
{
draw_dividers
}
if
showpage
}
if
end
}
mkmulti
%
% Set up in multi(non canon) mode
%
/page# 0 def
/npages rows cols mul def
/Fromcanon matrix fromcanon def
/Tocanon Fromcanon matrix invertmatrix def
end
initgraphics
}
bind
def
%%%%%%%%
/end-hook { endmulti } def
false 2 2 multi
|