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
|
%
% psi.prolog
%
% Copyright (C) 1996-2000 by vhf computer GmbH + vhf interservice GmbH
% Author: Georg Fleischmann
%
% created: 2000-09-09
% modified:
%
%%% this file also contains a section taken from GPL Ghostscript 8.50 "traceimg.ps", see below
% this PostScript code writes a file with the structure below.
% # # # # l (x0 y0 x1 y1) line
% # # # # # # # #c (x0 y0 x1 y1 x2 y2 x3 y3) curve
% # w (width) width
% # # # # # co (c m y k a) color
% n new list
% f list is a filled polygon
% s list is a group
% cl list is a clip list (clip with old clip list and use it)
% gs save current clip list and width to top of stack
% gr use last clip list (on top of stack) and width
% # # # # # # # # # # (x y a b c d e f text font) text
%
% Adapted for Scribus by Franz Schmid 15.05.2004
% Also removed the hardcoded Output Filename
% and changed it in a way the -sOutputFile Option of Ghostscript can be used
% Speeded up the flattening of Text by removing unneeded calculations.
% Changed the Output slightly to ease parsing
% m moveto
% l # # # # (x0 y0 x1 y1) line
% c # # # # # # # # (x0 y0 x1 y1 x2 y2 x3 y3) curve
% w # (width) Linewidth
% co # # # # # (c m y k a) color
% n new list
% f list is a filled polygon
% s list is a stroke path
% cp close current subpath
% ci list is a clip list (clip with old clip list and use it)
% sp end of page
% lj # linejoin
% lc # linecap
% ld # # #n linedash count offset d1, d2, dx
% im # image <name>
% pat # # makepattern params tmpfilename
% mask imagemask, followed by b/w image
% fill-evenodd set fill rule
% fill-winding - " -
% 15.05.2004 Added the Glyphshow Operator.
% 17.05.2004 Made clipping working.
% 20.05.2004 kshow is working now.
% 22.02.2006 added image and colorimage ops -- av
% 02.03.2006 added code to divide reported coordinates by (device resolution/72) -- av
% 23.03.2006 added code to trace PDF commands
% some hacks to get access to PDF operators, needs -sDELAYBIND
currentglobal true setglobal
GS_PDF_ProcSet begin
currentdict /setshowstate
{
dup WordSpacing 0 32 TextSpacing 0 6 -1 roll awidthshow
//setshowstate exec
} .forceput
currentdict /endpage {
(sp\n) print
//endpage exec
} .forceput
currentdict /doimage known not {
currentdict /doimage { } .forceput
} if
currentdict /doimage {
currentdict i_image
//doimage exec
} .forceput
end
setglobal
.bindnow
/cfile TraceFile (w) file def
/print { cfile exch writestring } bind def
/==write % any ==write -
{
dup type dup /arraytype eq exch /packedarraytype eq or
{
i_file ([) writestring
{ ==write i_file ( ) writestring } forall
i_file (]) writestring
} {
dup type /nametype eq
{
i_file (/) writestring i_file exch i_str cvs writestring
} {
dup type /stringtype eq
{
true 1 index { 32 ge and } forall
{
i_file (\() writestring i_file exch writestring i_file (\)) writestring
}
{
i_file (<) writestring
i_file /ASCIIHexEncode filter dup
3 -1 roll
writestring closefile % close filter
i_file (\n) writestring
} ifelse
} {
dup type /dicttype eq
{
i_file (<<) writestring
{ ==write ( ) =write ==write (\n) =write } forall
i_file (>>) writestring
} {
i_file exch i_str cvs
dup dup length 1 sub get (-) 0 get eq { pop (null) } if
writestring
} ifelse } ifelse } ifelse } ifelse
} def
/=write % any =write -
{
dup type dup /arraytype eq exch /packedarraytype eq or
{
{ =write i_file ( ) writestring } forall
} {
dup type /nametype eq
{
i_file exch i_str cvs writestring
} {
dup type /stringtype eq
{
i_file exch writestring
} {
dup type /dicttype eq
{
i_file (<<) writestring
{ =write ( ) =write =write (\n) =write } forall
i_file (>>) writestring
} {
i_file exch i_str cvs writestring
} ifelse } ifelse } ifelse } ifelse
} def
% flag to deactivate our substitutions
/i_shortcut false def
% defines an overloaded function name proc i_shortcutOverload -
% equvalent to /name { i_shortcut { //name } { proc } ifelse } bind def
/i_shortcutOverload
{
[ /i_shortcut /load load [ 5 index load ] cvx 4 index /ifelse load ] cvx
exch pop
bind def
} def
% whether we have to flatten the text
/flattenText 1 def
% is a Clipping there
/clipCnt 0 def
% remember the current point
/currentX 0 def
/currentY 0 def
% 1st point of path to close the path
/beginX 0 def
/beginY 0 def
% dummy for converting strings
/i_str 50 string def
% 0 = mirror at
/mirror 0 def
% mirror a at 0
/mir
{
mirror 0 ne
{ 0 exch sub
}if
} bind def
% scale
currentpagedevice /HWResolution get aload pop
72 div /i_vscale exch def
72 div /i_hscale exch def
/m_a 1 def
/m_b 0 def
/m_c 0 def
/m_d 1 def
/m_x 0 def
/m_y 0 def
/matrix_x % x y
{
% ax + cy + tx
m_c mul exch m_a mul add m_x add i_hscale div
} bind def
/matrix_y % x y
{
% bx + dy + ty
m_d mul exch m_b mul add m_y add i_vscale div
} bind def
/concatenate % str1 str2 concatenate str12
{
dup length 2 index length add string
dup 3 index length 3 index putinterval
dup 0 4 index putinterval
exch pop exch pop
} bind def
% this is like search but returns the last match in string
/rsearch % string seek rsearch post match pre true // string false
{
2 copy search % string seek post1 match1 pre1 true
{
2 index 4 index rsearch % string seek post1 match1 pre1 post2 match2 pre2 true
{
6 -1 roll pop % string seek match1 pre1 post2 match2 pre2
% combine (pre1 match1 pre2) into one string
5 -1 roll exch concatenate % string seek pre1 post2 match2 (match1+pre2)
4 -1 roll exch concatenate % string seek post2 match2 (pre1+match1+pre2)
} { % string seek post1 match1 pre1 post1
pop
} ifelse
% string seek post match pre
5 -2 roll pop pop
true
} { % string seek string
pop pop false
} ifelse
} bind def
% returns a unique filename for the given extension
/i_exportfilename % string i_exportfilename string
{
/ExportFiles where { /ExportFiles get (.) rsearch { exch pop exch pop } if } { (imagefile) } ifelse
(-) concatenate dup /i_basename exch def i_filecount 9 string cvs concatenate
{
i_filecount 1 add /i_filecount exch store
dup 2 index concatenate status not { exit } if
pop pop pop pop pop
i_basename i_filecount 9 string cvs concatenate
} loop
exch pop
} bind def
% Code for reading patters is currently commented out, as it
% doesn't seem to work correctly.
% /makepattern { % dict matrix makepattern patterndict
% %/makepattern =
% % we will do some real painting here:
% /i_shortcut true store
% % params:
% /i_m exch def
% /i_dict exch def
% % define export filename
% /i_basename (.png) i_exportfilename (.png) concatenate def
% i_dict /BBox get
% dup 0 get /i_x exch def
% dup 1 get /i_y exch def
% dup 2 get i_x sub /i_w exch def
% 3 get i_y sub /i_h exch def
% % we want those in devspace:
% i_x i_y i_m itransform matrix currentmatrix transform
% i_vscale div /i_y exch def i_hscale div /i_x exch def
% i_w i_h i_m idtransform matrix currentmatrix dtransform
% i_vscale div /i_h exch def i_hscale div /i_w exch def
% % i_h < 0 ?
% i_h 0 le
% {
% /i_y i_h i_y add def
% /i_h i_h neg def
% } if
% % i_w < 0 ?
% i_w 0 le
% {
% /i_x i_w i_x add def
% /i_w i_w neg def
% } if
% % now we can use the current matrix as pattern matrix, but with (0,0) origin
% i_m ==
% i_x i_y matrix currentmatrix translate /i_m exch def
% i_m ==
% i_dict /BBox [ 0 0 i_w i_h ] put
% (w x h =) = i_w = i_h =
% % paint pattern to png file
% gsave
% currentcolor currentcolorspace
% <<
% /OutputFile i_basename
% /OutputDevice (pngalpha)
% /TextAlphaBits 4
% /GraphicsAlphaBits 4
% % /BackgroundColor 16777215
% % /BackgroundColor 0
% /PageUsesTransparency true
% /HWResolution [ 72 72 ]
% /ProcessColorModel /DeviceRGB
% /PageSize [i_w i_h]
% /pngalpha finddevice putdeviceprops setdevice
% setcolorspace setcolor
% % matrix currentmatrix ==
% % 0 0 transform exch = =
% % 1 1 transform exch = =
% i_dict i_w i_h matrix identmatrix scale
% %matrix identmatrix
% //makepattern setpattern
% 0 0 i_w i_h rectfill
% showpage
% grestore
% % create pattern with our extensions:
% i_dict dup /ExportFile i_basename put
% dup /Origin [ 0 0 transform ] put
% i_m //makepattern
% /i_shortcut false store
% %/makepatternE =
% } i_shortcutOverload
/writecurrentpattern
{
currentcolor
(pat ) print
dup /Origin get
dup 0 get i_hscale div i_str cvs print ( ) print
1 get i_vscale div i_str cvs print ( ) print
/ExportFile get print
(\n) print
} bind def
/writecurrentcmykcolor
{
currentcmykcolor % -> c m y k
(co )print
3 index i_str cvs print
( ) print
2 index i_str cvs print
( ) print
1 index i_str cvs print
( ) print
i_str cvs print
( ) print
pop pop pop
.currentopacityalpha % a
i_str cvs print
(\n) print
} bind def
/writecurrentrgbcolor
{
currentrgbcolor % -> r g b
(corgb )print
2 index i_str cvs print
( ) print
1 index i_str cvs print
( ) print
i_str cvs print
( ) print
pop pop
.currentopacityalpha % a
i_str cvs print
(\n) print
} bind def
/writecurrentcolor
{
currentcolorspace 0 get
% try to find a base colorspace first
dup /Indexed eq
{
pop
currentcolorspace 1 get
dup type /arraytype eq { 0 get } if
} if
dup dup /DeviceN eq exch /Separation eq or
{
pop
currentcolorspace 2 get
dup type /arraytype eq { 0 get } if
} if
% now write values
dup /CIEBasedABC eq
{ % this must be a hack....
gsave
currentcolor setrgbcolor
writecurrentrgbcolor
grestore
} {
dup /DeviceRGB eq
{
writecurrentrgbcolor
} {
dup dup /DeviceCMYK eq exch /DeviceGray eq or
{
writecurrentcmykcolor
} {
dup /Pattern eq
{
writecurrentpattern
} {
% TODO: other CIE
writecurrentrgbcolor % will always be 0
}
ifelse } ifelse } ifelse } ifelse
pop
} bind def
/writecurrentlinecap
{
(lc ) print
currentlinecap i_str cvs print
(\n) print
} bind def
/writecurrentlinejoin
{
(lj ) print
currentlinejoin i_str cvs print
(\n) print
} bind def
/writecurrentdash
{
(ld ) print
currentdash 1 index length i_str cvs print ( ) print i_str cvs print ( ) print
0 1 2 index length 1 sub
{
1 index exch get
storeMatrix
dup dup dup m_b abs mul exch m_d abs mul add exch m_a abs mul add exch m_c abs mul add 2 div abs
i_hscale div
i_str cvs print ( ) print
} for
pop
(\n) print
} bind def
/writecurrentlinewidth
{
userdict begin
currentlinewidth % w
storeMatrix
% (wb + wd + wa + wc) / 2
%??
dup dup dup m_b abs mul exch m_d abs mul add exch m_a abs mul add exch m_c abs mul add 2 div abs
i_hscale div
% transform (w,w) and take length
%av-test: dup dtransform i_vscale div dup mul exch i_hscale div dup mul add sqrt
(w ) print
i_str cvs print
(\n) print
end
} bind def
/i_move % x y
{
userdict begin
(m\n) print
/currentY exch def
/currentX exch def
/beginX currentX def
/beginY currentY def
end
} bind def
/i_line
{
userdict begin
/y1 exch def
/x1 exch def
% x x1 ne y y1 ne or
currentX x1 sub abs 0.001 gt currentY y1 sub abs 0.001 gt or
{
(l ) print
currentX currentY matrix_x i_str cvs print
( ) print
currentX currentY matrix_y i_str cvs print
( ) print
x1 y1 matrix_x i_str cvs print
( ) print
x1 y1 matrix_y i_str cvs print
(\n) print
/currentX x1 def
/currentY y1 def
}if
end
} bind def
/i_curve
{
userdict begin
% x1 y1 x2 y2 x3 y3
(c ) print
currentX currentY matrix_x i_str cvs print
( ) print
currentX currentY matrix_y i_str cvs print
( ) print
5 index 5 index matrix_x i_str cvs print
( ) print
5 index 5 index matrix_y i_str cvs print
( ) print
3 index 3 index matrix_x i_str cvs print
( ) print
3 index 3 index matrix_y i_str cvs print
( ) print
/currentY exch def
/currentX exch def
currentX currentY matrix_x i_str cvs print
( ) print
currentX currentY matrix_y i_str cvs print
(\n)print
pop pop pop pop
end
} bind def
% modified: 18.10.96
/i_close
{
beginX beginY i_line
(cp\n) print
} bind def
/storeMatrix
{
userdict begin
matrix currentmatrix
dup 0 get /m_a exch def
dup 1 get /m_b exch def
dup 2 get /m_c exch def
dup 3 get /m_d exch def
dup 4 get /m_x exch def
5 get /m_y exch def
end
} bind def
/pathClipAndClose % this is not nice: closes all open paths & flattens the path :-(
{
clipsave
clip % combine clippath and path
newpath clippath % copy (closed) clippath to path
cliprestore
} bind def
% find out if the point is within the clipping area
/i_in_clip % x y i_in_clip bool
{
gsave
newpath clippath
infill
grestore
} bind def
% find out if two points are within the clipping area
/i_in_clip2 % x1 y1 x2 y2 i_in_clip bool1 bool2
{
gsave
newpath clippath
infill % x1 y1 bool2
3 1 roll % bool2 x1 y1
infill % bool2 bool1
exch
grestore
} bind def
/i_clip_move
{
/beginY exch store
/beginX exch store
/currentX beginX store
/currentY beginY store
% test if within cliparea
currentX currentY i_in_clip
{
currentX currentY /moveto load
} if
} bind def
% find intersection with line x1,y1 -> x2,y2 with clip path.
% x1,y2 is outside the clip area, x2, y2, x3, y3 inside
/i_find_clip_intersect % x1 y1 x2 y2 i_find_clip_intersect x3 y3
{
3 index 2 index sub % x1 y1 x2 y2 dx
3 index 2 index sub % x1 y1 x2 y2 dx dy
gsave
newpath clippath
{
2 div exch 2 div exch % half interval
2 copy abs 0.01 lt exch abs 0.01 lt and
{ exit } if % done
2 copy 4 index add exch % x1 y1 x2 y2 dx dy (y2+dy) dx
5 index add exch % x1 y1 x2 y2 dx dy (x2+dx) (y2+dy)
% /Intersect = 7 index = 6 index = 5 index = 4 index = 3 index = 2 index = 1 index = 0 index =
2 copy infill
{ % replace x2,y2
6 -2 roll pop pop
4 2 roll
} {
8 -2 roll pop pop % replace x1,y1
6 2 roll
} ifelse
} loop
grestore
6 -2 roll % return x2,y2
4 { pop } repeat
} bind def
/i_clip_line
{
/endY exch store
/endX exch store
currentX currentY endX endY i_in_clip2
{ % end in
{
% both in. just draw it. FIXME check if line leaves cliparea
endX endY /lineto load
} {
% current not in
% find new current point
currentX currentY endX endY i_find_clip_intersect
/moveto load
endX endY /lineto load
} ifelse
} { % end not in
{ % current in
% find new endpoint
endX endY currentX currentY i_find_clip_intersect
/lineto load
} {
% both not in
% try to find a point within cliparea
currentX currentY endX endY i_find_clip_intersect
2 copy i_in_clip
{
% yeah
/moveto load
% now find point from other end
endX endY currentX currentY i_find_clip_intersect
/lineto load
} {
pop pop
} ifelse
} ifelse
} ifelse
/currentX endX store
/currentY endY store
} bind def
/pathClipForStroke
{
% only lines
flattenpath
% create a userpath from currentpath
userdict begin
/beginX 0 def /beginY 0 def
/currentX 0 def /currentY 0 def
/endX 0 def /endY 0 def
systemdict begin % some EPS redefine moveto & Co :-(
[
{ i_clip_move } % remember last move
{ i_clip_line } % clip lines individually
{ 6 {pop} repeat /OOPS = } % won't happen
{ beginX beginY i_clip_line } % close with line
pathforall
] cvx
% dup ==
newpath % uappend % userpaths SUCK!
end end
exec
} bind def
/rectfill
{
userdict begin
(n\n)print % start polygon
writecurrentcolor
writecurrentlinewidth
writecurrentlinecap
writecurrentlinejoin
writecurrentdash
storeMatrix
% x y width height
dup type /arraytype ne
{
/hr exch def
/wr exch def
/yr exch def
/xr exch def
xr yr i_move
xr wr add yr i_line
xr wr add yr hr add i_line
xr yr hr add i_line
xr yr i_line
}
% numarray
% numstring
{
/ar exch def
0 4 ar length 1 sub
{
/n exch def
ar n get /xr exch def
ar n 1 add get /yr exch def
ar n 2 add get /wr exch def
ar n 3 add get /hr exch def
xr yr i_move
xr wr add yr i_line
xr wr add yr hr add i_line
xr yr hr add i_line
xr yr i_line
} for
}ifelse
(cp\n)print
(f\n)print % close polygon
end
} i_shortcutOverload
/rectstroke
{
userdict begin
(n\n)print % start rect
writecurrentcolor
writecurrentlinewidth
writecurrentlinecap
writecurrentlinejoin
writecurrentdash
storeMatrix
% x y width height
dup type dup /arraytype ne exch /stringtype ne and
{
/hr exch def
/wr exch def
/yr exch def
/xr exch def
xr yr i_move
xr wr add yr i_line
xr wr add yr hr add i_line
xr yr hr add i_line
xr yr i_line
}
% numarray
% numstring
{
/ar exch def
0 4 ar length 1 sub
{
/n exch def
ar n get /xr exch def
ar n 1 add get /yr exch def
ar n 2 add get /wr exch def
ar n 3 add get /hr exch def
xr yr i_move
xr wr add yr i_line
xr wr add yr hr add i_line
xr yr hr add i_line
xr yr i_line
} for
}ifelse
(cp\n)print
(s\n)print % stroke rect
end
} i_shortcutOverload
/stroke
{
(n\n) print
writecurrentcolor
writecurrentlinewidth
writecurrentlinecap
writecurrentlinejoin
writecurrentdash
% clipCnt 1 eq
% { pathClipForStroke } if
storeMatrix
{i_move} {i_line} {i_curve} {i_close} pathforall
(s\n)print % stroke path
newpath
} i_shortcutOverload
/eofill
{
(n\n) print % start polygon
writecurrentcolor % write color
writecurrentlinewidth
writecurrentlinecap
writecurrentlinejoin
writecurrentdash
% clipCnt 1 eq
% { pathClipAndClose } if
storeMatrix % take transformation, scaling, rotation from PostScript
{i_move} {i_line} {i_curve} {i_close} pathforall
(f\n)print % close polygon
newpath % clear stack
} i_shortcutOverload
/fill
{
(fill-winding\n) print
eofill
(fill-evenodd\n) print
} i_shortcutOverload
/clip
{
userdict begin
(n\n)print % start clip polygon
% FIXME: pathClipAndClose first?
storeMatrix % take transformation, scaling, rotation from PostScript
{i_move} {i_line} {i_curve} {i_close} pathforall
(ci\n)print % close clip polygon begin path
% we have to close the path!!
% clip
% /clipCnt 1 def
newpath % clear stack
end
} i_shortcutOverload
/eoclip
{
userdict begin
(n\n)print % start clip polygon
% FIXME: pathClipAndClose first?
storeMatrix % take transformation, scaling, rotation from PostScript
{i_move} {i_line} {i_curve} {i_close} pathforall
(ci\n)print % close clip polygon begin path
% we have to close the path!!
% clip
% /clipCnt 1 def
newpath % clear stack
end
} i_shortcutOverload
% we don't clip
% because this doesn't work for flattening text (show, charpath) with NeXT PostScript Code
/rectclip
{
% let Scribus decide what to do with ci; was: pop pop pop pop
userdict begin
(n\n)print % start clip polygon
storeMatrix % take transformation, scaling, rotation from PostScript
dup type dup /arraytype ne exch /stringtype ne and
{
4 copy
/i_h exch def
/i_w exch def
/i_y exch def
/i_x exch def
i_x i_y i_move
i_x i_w add i_y i_line
i_x i_w add i_y i_h add i_line
i_x i_y i_h add i_line
} {
% array or string
0 4 dup length 1 sub
{
1 index 1 index get /i_x exch def
1 add
1 index 1 index get /i_y exch def
1 add
1 index 1 index get /i_w exch def
1 add
1 index 1 index get /i_y exch def
i_x i_y i_move
i_x i_w add i_y i_line
i_x i_w add i_y i_h add i_line
i_x i_y i_h add i_line
} for
} ifelse
(ci\n)print % close clip polygon begin path
% we have to close the path!!
% rectclip
% /clipCnt 1 def
newpath % clear stack
end
} i_shortcutOverload
% Code for reading images is currently commented out, as it
% doesn't seem to work correctly.
% Copyright (C) 1994 Aladdin Enterprises. All rights reserved.
%
% This software is provided AS-IS with no warranty, either express or
% implied.
%
% This software is distributed under license and may not be copied,
% modified or distributed except as expressly authorized under the terms
% of the license contained in the file LICENSE in this distribution.
%
% For more information about licensing, please refer to
% http://www.ghostscript.com/licensing/. For information on
% commercial licensing, go to http://www.artifex.com/licensing/ or
% contact Artifex Software, Inc., 101 Lucas Valley Road #110,
% San Rafael, CA 94903, U.S.A., +1(415)492-9861.
% $Id$
% traceimg.ps
% Trace the data supplied to the 'image' operator.
% This code currently handles only the (Level 2) dictionary form of image,
% with a single data source and 8-bit pixels.
% changed for Scribus image import by Andreas Vox, 2006-2-21
% added support for colorimage and other image variant
/i_image % <dict> i_image -
{
%dup { == == } forall
/i_image =
begin
/i_left Width Height mul Decode length 2 idiv mul BitsPerComponent mul 8 idiv dup /i_size exch store store
/i_dict currentdict store
/i_nsources 1 store
/i_source 0 store
/i_datasource currentdict /DataSource get store
currentdict /MultipleDataSources known not
{ /MultipleDataSources false def } if
MultipleDataSources
{
/i_nsources DataSource length store
/i_datasource DataSource 0 get store
} if
end
storeMatrix
i_dict /ImageMatrix get matrix invertmatrix matrix currentmatrix matrix concatmatrix /i_m exch def
i_dict /Width get 0 i_m dtransform dup mul exch dup mul add sqrt /i_w exch def
0 i_dict /Height get i_m dtransform dup mul exch dup mul add sqrt /i_h exch def
0 0 i_m transform /i_y exch def /i_x exch def
i_dict /Width get i_dict /Height get i_m transform
/i_hflip -1 def /i_vflip 1 def
dup i_y le { /i_y exch def } { pop /i_vflip -1 def } ifelse
dup i_x le { /i_x exch def } { pop /i_hflip 1 def } ifelse
0 i_dict /Height get i_m dtransform atan
/i_angle exch def
(.dat) i_exportfilename
(im ) print % im x y w h angle ...
i_x i_hscale div i_str cvs print ( ) print
i_y i_vscale div i_str cvs print ( ) print
i_w i_hscale div i_str cvs print ( ) print
i_h i_vscale div i_str cvs print ( ) print
i_angle i_str cvs print ( ) print
i_dict /Width get i_str cvs print ( ) print % ... hpix vpix ...
i_dict /Height get i_str cvs print ( ) print
currentcolorspace 0 get /DeviceRGB eq
{ (tiff24nc ) print }
{ currentcolorspace 0 get /DeviceCMYK eq
{ (psdcmyk ) print }
{ currentcolorspace 0 get /DeviceGray eq
{ (tiffgray ) print }
{ (tiff32nc ) print }
ifelse } ifelse } ifelse
dup (.tif) concatenate print (\n) print flush % ... dev filename
(.dat) concatenate (w) file /i_file exch store % temp file
currentcolorspace ==write ( setcolorspace\n) =write
(<<\n) =write
i_dict { exch
dup /DataSource eq
{ pop pop (/DataSource currentfile\n) =write }
{
dup /ImageMatrix eq
{ pop pop (/ImageMatrix [) =write
i_hflip ==write ( 0 0 ) =write i_vflip ==write
( ) =write
i_hflip 0 lt { i_dict /Width get } { 0 } ifelse ==write
( ) =write
i_vflip 0 lt { i_dict /Height get} { 0 } ifelse ==write
(]\n) =write }
{ ==write ( ) =write ==write (\n) =write }
ifelse
} ifelse
} forall
(>>\nimage\n) =write i_file flushfile
{ %loop
i_left 0 le
{
i_source 1 add /i_source exch def
i_source i_nsources ge { exit } if
i_dict /DataSource get i_source get /i_datasource exch def
/i_left i_size def
} if
/i_datasource load exec
dup type /filetype eq
{ i_buf 0 i_left 32 .min getinterval readstring pop
} if
dup length 0 eq {pop i_zero 0 i_left 32 .min getinterval} if
dup i_file exch writestring
i_left exch length sub /i_left exch def
} loop
i_file flushfile
/i_imageE =
} bind def
/colorimage
{
/colorimage =
% width height bits/sample matrix datasource0..n-1 multi ncomp
/tmpN exch def
/tmpMulti exch def
tmpMulti
{
/tmpN load array astore
} if
/tmpN load 6 add dict
dup 7 -1 roll /Width exch put
dup 6 -1 roll /Height exch put
dup 5 -1 roll /BitsPerComponent exch put
dup 4 -1 roll /ImageMatrix exch put
dup 3 -1 roll /DataSource exch put
tmpMulti
{
dup /MultipleDataSources true put
} if
dup /ImageType 1 put
gsave
/tmpN load
dup 1 eq
{
1 index /Decode [0 1] /Decode put
/DeviceGray setcolorspace
} if
dup 3 eq
{
1 index /Decode [0 1 0 1 0 1] put
/DeviceRGB setcolorspace
} if
dup 4 eq
{
1 index /Decode [0 1 0 1 0 1 0 1] put
/DeviceCMYK setcolorspace
} if
pop
i_image
grestore
/colorimageE =
} i_shortcutOverload
/image {
/image =
gsave
dup type /dicttype ne
{
% width height bits/sample matrix datasource
7 dict
dup 7 -1 roll /Width exch put
dup 6 -1 roll /Height exch put
dup 5 -1 roll /BitsPerComponent exch put
dup 4 -1 roll /ImageMatrix exch put
dup 3 -1 roll /DataSource exch put
dup 1 /ImageType exch put
dup [0 1] /Decode exch put
/DeviceGray setcolorspace
} if
i_image
grestore
/imageE =
} i_shortcutOverload
/imagemask
{
/imagemask =
writecurrentcolor
(mask\n) print
gsave
dup type /dicttype ne
{
% width height pol matrix datasource
7 dict
dup 7 -1 roll /Width exch put
dup 6 -1 roll /Height exch put
dup 5 -1 roll { [0 1] } { [1 0] } ifelse /Decode exch put
dup 4 -1 roll /ImageMatrix exch put
dup 3 -1 roll /DataSource exch put
} if
dup 1 /ImageType exch put
dup 1 /BitsPerComponent exch put
/DeviceGray setcolorspace
i_image
grestore
/imagemaskE =
} i_shortcutOverload
% declare some global vars
/i_left 0 def
/i_size 0 def
/i_dict null def
/i_buf 32 string def
/i_nsources 1 def
/i_source 0 def
/i_datasource { (x) } def
/i_file null def
/i_filecount 1 def
/i_zero 32 string def
%%%% End of traceimage code
/stateArray 500 array def
/stateTop 0 def
/gsave
{
(gs\n) print
userdict begin
% (gs\n) print
stateArray stateTop gstate currentgstate put
/stateTop stateTop 1 add def
end
} i_shortcutOverload
/grestore
{
(gr\n) print
userdict begin
stateTop 1 lt
{
}
{
% (gr\n) print
stateArray stateTop 1 sub get setgstate
/stateTop stateTop 1 sub def
stateArray stateTop 0 put
}ifelse
end
} i_shortcutOverload
/stringwidth
{
/i_shortcut true store
stringwidth
/i_shortcut false store
} i_shortcutOverload
% a bind def of the show operator doesn't work,
% so this is our way to get a charpath entry for flattening text
/root_charpath
{
charpath
} bind def
/i_kerningI
{
exch 1 getinterval stringwidth
} bind def
% find kerning value
/i_kerningII % index string i_kerning dx dy
{
% stringwidth( [n..n+1] ) - stringwidth( [n+1] )
/i_pstring exch def
/i_pindex exch def
i_pstring i_pindex 2 getinterval stringwidth exch % y2 x2
i_pstring i_pindex 1 add 1 getinterval stringwidth % y2 x2 x1 y1
4 1 roll sub % y1 y2 (x2-x1)
3 1 roll exch sub % (x2-x1) (y2-y1)
} bind def
/i_kerningIII % index string i_kerning dx dy
{
% stringwidth( [n..n+1] ) - stringwidth( [n+1] )
/i_pstring exch def
/i_pindex exch def
i_pstring i_pindex 2 getinterval (l) exch concatenate stringwidth exch % y2 x2
i_pstring i_pindex 1 add 1 getinterval (l) exch concatenate stringwidth % y2 x2 x1 y1
4 1 roll sub % y1 y2 (x2-x1)
3 1 roll exch sub % (x2-x1) (y2-y1)
} bind def
/i_kerning /i_kerningII load def
/show % string show -
{
userdict begin
storeMatrix
currentfont /FontName known
% stack: string
{
currentfont /FontType get dup 3 eq exch 0 eq or
{
currentpoint /ycur exch def /xcur exch def
currentpoint % x y
newpath
/clipCnt 0 def
moveto
(n\n)print % start polygon
writecurrentcolor % write color
storeMatrix
dup
stringwidth
/curwidthy exch def /curwidthx exch def
false root_charpath
{i_move} {i_line} {i_curve} {i_close} pathforall
(f\n)print % close polygon
newpath
curwidthx xcur add curwidthy ycur add moveto
currentpoint /ycur exch def /xcur exch def
newpath % clear graphic stack
xcur ycur moveto
}
{
currentpoint /ycur exch def /xcur exch def
currentpoint % x y
newpath
/clipCnt 0 def
moveto
/completeString exch def
% we process each char separately to get smaller paths
0 1 completeString length 1 sub
{
(n\n)print % start polygon
writecurrentcolor % write color
storeMatrix
dup completeString length 1 sub eq
{ dup completeString exch 1 getinterval stringwidth }
{ dup completeString i_kerning } ifelse
/curwidthy exch def /curwidthx exch def
completeString exch 1 getinterval dup /curstr exch def
false root_charpath
{i_move} {i_line} {i_curve} {i_close} pathforall
(f\n)print % close polygon
newpath
curwidthx xcur add curwidthy ycur add moveto
currentpoint /ycur exch def /xcur exch def
newpath % clear graphic stack
xcur ycur moveto
} for
currentpoint % x y
newpath % clear graphic stack (and current point)
moveto
} ifelse
}
{
currentfont /FontType known
{
currentfont /FontType get dup 3 eq exch 0 eq or
{
currentpoint /ycur exch def /xcur exch def
currentpoint % x y
newpath
/clipCnt 0 def
moveto
(n\n)print % start polygon
writecurrentcolor % write color
storeMatrix
dup
stringwidth
/curwidthy exch def /curwidthx exch def
false root_charpath
{i_move} {i_line} {i_curve} {i_close} pathforall
(f\n)print % close polygon
newpath
curwidthx xcur add curwidthy ycur add moveto
currentpoint /ycur exch def /xcur exch def
newpath % clear graphic stack
xcur ycur moveto
}
{
pop
} ifelse
}
{
pop
} ifelse
} ifelse
end
} i_shortcutOverload
/ashow
{
% ax ay string
exch /ydist exch def
exch /xdist exch def
userdict begin
storeMatrix
currentfont /FontName known
% stack: string
{
currentpoint /ycur exch def /xcur exch def
currentpoint % x y
newpath
/clipCnt 0 def
moveto
/completeString exch def
% we process each char separately to get smaller paths
0 1 completeString length 1 sub
{
(n\n)print % start polygon
writecurrentcolor % write color
storeMatrix
dup completeString length 1 sub eq
{ dup completeString exch 1 getinterval stringwidth }
{ dup completeString i_kerning } ifelse
/curwidthy exch def /curwidthx exch def
completeString exch 1 getinterval dup /curstr exch def
false root_charpath
{i_move} {i_line} {i_curve} {i_close} pathforall
(f\n)print % close polygon
newpath
curwidthx xcur add curwidthy ycur add
exch xdist add exch ydist add moveto
currentpoint /ycur exch def /xcur exch def
newpath % clear graphic stack
xcur ycur moveto
} for
currentpoint % x y
newpath % clear graphic stack (and current point)
moveto
} {
pop
} ifelse
end
} i_shortcutOverload
/awidthshow % cx cy char ax ay string
{
% ax ay string
exch /ydist exch def
exch /xdist exch def
% cx cy char string
exch /char exch def
exch /cydist exch def
exch /cxdist exch def
userdict begin
storeMatrix
currentfont /FontName known
% stack: string
{
currentpoint /ycur exch def /xcur exch def
currentpoint % x y
newpath
/clipCnt 0 def
moveto
/completeString exch def
% we process each char separately to get smaller paths
0 1 completeString length 1 sub
{
(n\n)print % start polygon
writecurrentcolor % write color
storeMatrix
dup completeString length 1 sub eq
{ dup completeString exch 1 getinterval stringwidth }
{ dup completeString i_kerning } ifelse
/curwidthy exch def /curwidthx exch def
completeString exch 1 getinterval dup /curstr exch def
false root_charpath
{i_move} {i_line} {i_curve} {i_close} pathforall
(f\n)print % close polygon
newpath
curwidthx xcur add curwidthy ycur add
exch xdist add exch ydist add moveto
curstr 0 get char eq
{
currentpoint exch cxdist add exch cydist add moveto
} if
currentpoint /ycur exch def /xcur exch def
newpath % clear graphic stack
xcur ycur moveto
} for
currentpoint % x y
newpath % clear graphic stack (and current point)
moveto
} {
pop
} ifelse
end
} i_shortcutOverload
/widthshow % cx cy char string
{
0 exch
0 exch
awidthshow
} bind def
%/cshow % proc string
%{
% exch pop
% show
%} i_shortcutOverload
/kshow % proc string
{
dup length 1 sub
dup 0 ne
{
1 index 0 1 getinterval
show
1 sub
dup 0 ne
{
1 add
1 exch 1 exch
{
dup 1 sub
2 index exch get
2 index 2 index get
4 index exec
1 index exch 1 getinterval
show
} for
} if
}
{
pop dup show
} ifelse
pop pop
} i_shortcutOverload
/xshow % string array
{
pop %FIXME
show
} i_shortcutOverload
/xyshow % string array
{
pop %FIXME
show
} i_shortcutOverload
/yshow % string array
{
pop %FIXME
show
} i_shortcutOverload
/i_reencode % newfontname reencodevector origfontdict -> i_reencode -> newfontdict
{
userdict begin
dup begin dup maxlength dict begin
{ 1 index /FID ne {def} {pop pop} ifelse
} forall
/Encoding exch def
currentdict
end end
definefont
end
} bind def
/glyphshow {
save % So can reclaim VM from reencoding
currentfont /Encoding get dup length array copy dup 0 5 -1 roll put
/GlyphShowTempFont exch currentfont i_reencode
setfont
(\000) show
currentpoint 3 -1 roll % curx cury -save-
restore
newpath
moveto
} i_shortcutOverload
/showpage
{
(sp\n) print
} i_shortcutOverload
|