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
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
|
if not modules then modules = { } end modules ['lpdf-lmt'] = {
version = 1.001,
comment = "companion to lpdf-ini.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
-- The code below was originally in back-lpd.lua but it makes more sense in
-- this namespace. I will rename variables.
--
-- There is no way that a lua based backend can compete with the original one
-- for relative simple text runs. And we're talking seconds here on say 500
-- pages with paragraphs alternativng between three fonts and colors. But such
-- documents are rare so in practice we are quite okay, especially because in
-- ConTeXt we can gain quite a bit elsewhere. So, when we loose 30% on such
-- simple documents, we break even on for instance the manual, and gain 30% on
-- Thomas's turture test (also for other reasons). But .. who knows what magic
-- I can cook up in due time.
-- If you consider this complex, watch:
--
-- https://www.youtube.com/watch?v=6H-cAzfB2qo
--
-- or in distractionmode:
--
-- https://www.youtube.com/watch?v=TYuTE_1jvvE
-- https://www.youtube.com/watch?v=nnicGKX3lvM
--
-- For the moment we have to support the built in backend as well as the alternative. So
-- the next interface is suboptimal and will change at some time. At that moment I will
-- also optimize and extend.
local type, next, unpack, tonumber = type, next, unpack, tonumber
local char, rep, find = string.char, string.rep, string.find
local formatters, splitupstring = string.formatters, string.splitup
local band, extract = bit32.band, bit32.extract
local concat, sortedhash = table.concat, table.sortedhash
local setmetatableindex = table.setmetatableindex
local loaddata = io.loaddata
local bpfactor = number.dimenfactors.bp
local md5HEX = md5.HEX
local osuuid = os.uuid
local zlibcompress = (xzip or zlib).compress
local nuts = nodes.nuts
local tonut = nodes.tonut
local getdata = nuts.getdata
local getsubtype = nuts.getsubtype
local getwhd = nuts.getwhd
local flushlist = nuts.flush_list
local pdfincludeimage = lpdf.includeimage
local pdfgetfontname = lpdf.getfontname
local pdfgetfontobjnumber = lpdf.getfontobjnumber
local pdfreserveobject = lpdf.reserveobject
local pdfpagereference = lpdf.pagereference
local pdfflushobject = lpdf.flushobject
local pdfreference = lpdf.reference
local pdfdictionary = lpdf.dictionary
local pdfarray = lpdf.array
local pdfconstant = lpdf.constant
local pdfflushstreamobject = lpdf.flushstreamobject
local pdfliteral = lpdf.literal -- not to be confused with a whatsit!
local pdf_pages = pdfconstant("Pages")
local pdf_page = pdfconstant("Page")
local pdf_xobject = pdfconstant("XObject")
local pdf_form = pdfconstant("Form")
local fonthashes = fonts.hashes
local characters = fonthashes.characters
local descriptions = fonthashes.descriptions
local parameters = fonthashes.parameters
local properties = fonthashes.properties
local report = logs.reporter("backend")
-- used variables
local pdf_h, pdf_v
local need_tm, need_tf, cur_tmrx, cur_factor, cur_f, cur_e
local need_width, need_mode, done_width, done_mode
local mode
local f_pdf_cur, f_pdf, fs_cur, fs, f_cur
local tj_delta, cw
local usedfonts, usedxforms, usedximages, usedxgroups
local getxformname, getximagename
local boundingbox, shippingmode, objectnumber
local tmrx, tmry, tmsx, tmsy, tmtx, tmty
local cmrx, cmry, cmsx, cmsy, cmtx, cmty
local function usefont(t,k) -- a bit redundant hash
local v = pdfgetfontname(k)
t[k] = v
return v
end
local function reset_variables(specification)
pdf_h, pdf_v = 0, 0
cmrx, cmry = 1.0, 1.0
cmsx, cmsy = 0.0, 0.0
cmtx, cmty = 0.0, 0.0
tmrx, tmry = 1.0, 1.0
tmsx, tmsy = 0.0, 0.0
tmtx, tmty = 0.0, 0.0
need_tm = false
need_tf = false
need_width = 0
need_mode = 0
done_width = false
done_mode = false
mode = "page"
shippingmode = specification.shippingmode
objectnumber = specification.objectnumber
cur_tmrx = 0.0
f_cur = 0
f_pdf_cur = 0 -- nullfont
f_pdf = 0 -- nullfont
fs_cur = 0
fs = 0
cur_factor = 0
cur_f = false
cur_e = false
tj_delta = 0.0
cw = 0.0
usedfonts = setmetatableindex(usefont)
usedxforms = { }
usedximages = { }
-- usedxgroups = { }
boundingbox = specification.boundingbox
end
-- buffer
local buffer = lua.newtable(1024,0) -- { }
local b = 0
local function reset_buffer()
b = 0
end
-- fonts
local fontcharacters
local fontdescriptions
local fontparameters
local fontproperties
local usedcharacters = setmetatableindex("table")
local pdfcharacters
local horizontalmode = true
----- widefontmode = true
local scalefactor = 1
local threshold = 655360
local tjfactor = 100 / 65536
lpdf.usedcharacters = usedcharacters
local function updatefontstate(font)
fontcharacters = characters[font]
fontdescriptions = descriptions[font]
fontparameters = parameters[font]
fontproperties = properties[font]
local size = fontparameters.size -- or bad news
local designsize = fontparameters.designsize or size
pdfcharacters = usedcharacters[font]
horizontalmode = fontparameters.writingmode ~= "vertical"
-- widefontmode = fontproperties.encodingbytes == 2
scalefactor = (designsize/size) * tjfactor
local fthreshold = fontproperties.threshold
threshold = (fthreshold and (size * fthreshold / 100)) or 655360
end
-- helpers
local f_cm = formatters["%.6N %.6N %.6N %.6N %.6N %.6N cm"]
local f_tm = formatters["%.6N %.6N %.6N %.6N %.6N %.6N Tm"]
local saved_text_pos_v = 0
local saved_text_pos_h = 0
local function begin_text()
saved_text_pos_h = pdf_h
saved_text_pos_v = pdf_v
b = b + 1 ; buffer[b] = "BT"
need_tf = true
need_width = 0
need_mode = 0
mode = "text"
end
local function end_text()
if done_width then
b = b + 1 ; buffer[b] = "0 w"
done_width = false
end
if done_mode then
b = b + 1 ; buffer[b] = "0 Tr"
done_mode = false
end
b = b + 1 ; buffer[b] = "ET"
pdf_h = saved_text_pos_h
pdf_v = saved_text_pos_v
mode = "page"
end
local saved_chararray_pos_h
local saved_chararray_pos_v
local saved_b = 0
local function begin_chararray()
saved_chararray_pos_h = pdf_h
saved_chararray_pos_v = pdf_v
cw = horizontalmode and saved_chararray_pos_h or - saved_chararray_pos_v
tj_delta = 0
saved_b = b
b = b + 1 ; buffer[b] = " ["
mode = "chararray"
end
local function end_chararray()
b = b + 1 ; buffer[b] = "] TJ"
buffer[saved_b] = concat(buffer,"",saved_b,b)
b = saved_b
pdf_h = saved_chararray_pos_h
pdf_v = saved_chararray_pos_v
mode = "text"
end
local function begin_charmode()
b = b + 1 ; buffer[b] = "<"
mode = "char"
end
local function end_charmode()
b = b + 1 ; buffer[b] = ">"
mode = "chararray"
end
local function calc_pdfpos(h,v)
-- mostly char
if mode == "page" then
cmtx = h - pdf_h
cmty = v - pdf_v
return h ~= pdf_h or v ~= pdf_v
elseif mode == "text" then
tmtx = h - saved_text_pos_h
tmty = v - saved_text_pos_v
return h ~= pdf_h or v ~= pdf_v
elseif horizontalmode then
tmty = v - saved_text_pos_v
tj_delta = cw - h
return tj_delta ~= 0 or v ~= pdf_v
else
tmtx = h - saved_text_pos_h
tj_delta = cw + v
return tj_delta ~= 0 or h ~= pdf_h
end
end
local function pdf_set_pos(h,v)
local move = calc_pdfpos(h,v)
if move then
b = b + 1 ; buffer[b] = f_cm(cmrx, cmsx, cmsy, cmry, cmtx*bpfactor, cmty*bpfactor)
pdf_h = pdf_h + cmtx
pdf_v = pdf_v + cmty
end
end
local function pdf_reset_pos()
if mode == "page" then
cmtx = - pdf_h
cmty = - pdf_v
if pdf_h == 0 and pdf_v == 0 then
return
end
elseif mode == "text" then
tmtx = - saved_text_pos_h
tmty = - saved_text_pos_v
if pdf_h == 0 and pdf_v == 0 then
return
end
elseif horizontalmode then
tmty = - saved_text_pos_v
tj_delta = cw
if tj_delta == 0 and pdf_v == 0 then
return
end
else
tmtx = - saved_text_pos_h
tj_delta = cw
if tj_delta == 0 and pdf_h == 0 then
return
end
end
b = b + 1 ; buffer[b] = f_cm(cmrx, cmsx, cmsy, cmry, cmtx*bpfactor, cmty*bpfactor)
pdf_h = pdf_h + cmtx
pdf_v = pdf_v + cmty
end
local function pdf_set_pos_temp(h,v)
local move = calc_pdfpos(h,v)
if move then
b = b + 1 ; buffer[b] = f_cm(cmrx, cmsx, cmsy, cmry, cmtx*bpfactor, cmty*bpfactor)
end
end
-- these dummy returns makes using them a bit faster
local function pdf_end_string_nl()
if mode == "char" then
end_charmode()
return end_chararray()
elseif mode == "chararray" then
return end_chararray()
end
end
local function pdf_goto_textmode()
if mode == "page" then
pdf_reset_pos()
return begin_text()
elseif mode ~= "text" then
if mode == "char" then
end_charmode()
return end_chararray()
else -- if mode == "chararray" then
return end_chararray()
end
end
end
local function pdf_goto_pagemode()
if mode ~= "page" then
if mode == "char" then
end_charmode()
end_chararray()
return end_text()
elseif mode == "chararray" then
end_chararray()
return end_text()
elseif mode == "text" then
return end_text()
end
end
end
local function pdf_goto_fontmode()
if mode == "char" then
end_charmode()
end_chararray()
end_text()
elseif mode == "chararray" then
end_chararray()
end_text()
elseif mode == "text" then
end_text()
end
pdf_reset_pos()
mode = "page"
end
-- characters
local flushcharacter do
local round = math.round
-- across pages ... todo: clean up because we don't need to pass the font
-- as fontparameters already has checked / set it we can also have a variable
-- for it so
local naturalwidth = nil
-- local naturalwidths = setmetatableindex(function(t,font)
-- local d = descriptions[font]
-- local c = characters[font]
-- local f = parameters[font].hfactor
-- local v = setmetatableindex(function(t,char)
-- local w
-- local e = d and d[char]
-- if e then
-- w = e.width
-- if w then
-- w = w * f
-- end
-- end
-- if not w then
-- e = c[char]
-- if e then
-- w = e.width or 0
-- end
-- end
-- if not w then
-- w = 0
-- end
-- t[char] = w
-- return w
-- end)
-- t[font] = v
-- return v
-- end)
local naturalwidths = setmetatableindex(function(t,font)
local d = descriptions[font]
local c = characters[font]
local f = parameters[font].hfactor
local v = setmetatableindex(function(t,char)
local w
local e = c[char]
if e then
w = e.width or 0
end
if not w then
e = d and d[char]
if e then
w = e.width
if w then
w = w * f
end
end
end
if not w then
w = 0
end
t[char] = w
return w
end)
t[font] = v
return v
end)
local function setup_fontparameters(font,factor,f,e)
local slant = fontparameters.slantfactor or 0
local extend = fontparameters.extendfactor or 1
local squeeze = fontparameters.squeezefactor or 1
local expand = 1 + factor / 1000000
local format = fontproperties.format
if e then
extend = extend * e
end
tmrx = expand * extend
tmsy = slant
tmry = squeeze
need_width = fontparameters.width or 0
need_mode = fontparameters.mode or 0
f_cur = font
f_pdf = usedfonts[font] -- cache
cur_factor = factor
cur_f = f
cur_e = e
tj_delta = 0
fs = fontparameters.size * bpfactor
if f then
fs = fs * f
end
-- kind of special:
if format == "opentype" or format == "type1" then
fs = fs * 1000 / fontparameters.units -- can we avoid this ?
end
--
naturalwidth = naturalwidths[font]
end
-- This only saves a little on hz because there we switch a lot of
-- instances.
-- local lastslant, lastextend, lastsqueeze, lastformat, lastsize, lastwidth, lastmode, lastused, lastfont
-- local function setup_fontparameters(font,factor,f,e)
-- if font ~= lastfont then
-- lastslant = fontparameters.slantfactor or 0
-- lastextend = fontparameters.extendfactor or 1
-- lastsqueeze = fontparameters.squeezefactor or 1
-- lastformat = fontproperties.format
-- lastsize = fontparameters.size * bpfactor
-- if format == "opentype" or format == "type1" then
-- lastsize = lastsize * 1000 / fontparameters.units -- can we avoid this ?
-- end
-- lastwidth = fontparameters.width
-- lastmode = fontparameters.mode
-- lastused = usedfonts[font] -- cache
-- lastfont = font
-- end
-- local expand = 1 + factor / 1000000
-- if e then
-- tmrx = expand * lastextend * e
-- else
-- tmrx = expand * lastextend
-- end
-- tmsy = lastslant
-- tmry = lastsqueeze
-- need_width = lastwidth
-- need_mode = lastmode
-- f_cur = lastfont
-- f_pdf = lastused
-- cur_factor = factor
-- cur_f = f
-- cur_e = e
-- tj_delta = 0
-- if f then
-- fs = lastsize * f
-- else
-- fs = lastsize
-- end
-- end
local f_width = formatters["%.6N w"]
local f_mode = formatters["%i Tr"] -- can be hash
local f_font = formatters["/F%i %.6N Tf"] -- can be hash
local s_width = "0 w"
local s_mode = "0 Tr"
local function set_font()
-- if need_width and need_width ~= 0 then
if need_width ~= 0 then
b = b + 1 ; buffer[b] = f_width(bpfactor * need_width / 1000)
done_width = true
elseif done_width then
b = b + 1 ; buffer[b] = s_width
done_width = false
end
-- if need_mode and need_mode ~= 0 then
if need_mode ~= 0 then
b = b + 1 ; buffer[b] = f_mode(need_mode)
done_mode = true
elseif done_mode then
b = b + 1 ; buffer[b] = s_mode
done_mode = false
end
b = b + 1 ; buffer[b] = f_font(f_pdf,fs)
f_pdf_cur = f_pdf
fs_cur = fs
need_tf = false
need_tm = true
end
local function set_textmatrix(h,v)
local move = calc_pdfpos(h,v)
if need_tm or move then
b = b + 1 ; buffer[b] = f_tm(tmrx, tmsx, tmsy, tmry, tmtx*bpfactor, tmty*bpfactor)
pdf_h = saved_text_pos_h + tmtx
pdf_v = saved_text_pos_v + tmty
need_tm = false
end
cur_tmrx = tmrx
end
local f_hex_4 = formatters["%04X"]
local f_hex_2 = formatters["%02X"]
local h_hex_4 = setmetatableindex(function(t,k) -- we already have this somewhere
if k < 256 then -- maybe 512
-- not sparse in this range
for i=0,255 do
t[i] = f_hex_4(i)
end
return t[k]
else
local v = f_hex_4(k)
t[k] = v
return v
end
end)
local h_hex_2 = setmetatableindex(function(t,k) -- we already have this somewhere
local v = k < 256 and f_hex_2(k) or "00"
t[k] = v
return v
end)
local trace_threshold = false trackers.register("backends.pdf.threshold", function(v) trace_threshold = v end)
flushcharacter = function(current,pos_h,pos_v,pos_r,font,char,data,f,e,factor) -- ,naturalwidth,width)
if need_tf or font ~= f_cur or f_pdf ~= f_pdf_cur or fs ~= fs_cur or mode == "page" then
pdf_goto_textmode()
setup_fontparameters(font,factor,f,e)
set_font()
elseif cur_tmrx ~= tmrx or cur_factor ~= factor or cur_f ~= f or cur_e ~= e then
setup_fontparameters(font,factor,f,e)
need_tm = true
end
local move = calc_pdfpos(pos_h,pos_v)
-- if trace_threshold then
-- report(
-- "font %i, char %C, factor %i, naturalwidth %p, move %l, tm %l, hpos %p, delta %p, threshold %p, cw %p",
-- font,char,factor,naturalwidth[char],move,need_tm,pos_h,tj_delta,threshold,cw
-- )
-- end
if move or need_tm then
if not need_tm then
if horizontalmode then
if (saved_text_pos_v + tmty) ~= pdf_v then
need_tm = true
elseif tj_delta >= threshold or tj_delta <= -threshold then
need_tm = true
end
else
if (saved_text_pos_h + tmtx) ~= pdf_h then
need_tm = true
elseif tj_delta >= threshold or tj_delta <= -threshold then
need_tm = true
end
end
end
if need_tm then
pdf_goto_textmode()
set_textmatrix(pos_h,pos_v)
begin_chararray()
move = calc_pdfpos(pos_h,pos_v)
end
if move then
local d = tj_delta * scalefactor
if d <= -0.5 or d >= 0.5 then
if mode == "char" then
end_charmode()
end
b = b + 1 ; buffer[b] = round(d) -- or f_skip(d)
end
cw = cw - tj_delta
end
end
if mode == "chararray" then
begin_charmode()
end
cw = cw + naturalwidth[char] * tmrx
local index = data.index or char
b = b + 1 ; buffer[b] = font > 0 and h_hex_4[index] or h_hex_2[index]
if not pdfcharacters[index] then
pdfcharacters[index] = true
end
end
flushfontchar = function(font,char,data)
local dummy = usedfonts[font]
local index = data.index or char
if not pdfcharacters[index] then
pdfcharacters[index] = true
end
return dummy
end
end
-- literals
local flushliteral do
local nodeproperties = nodes.properties.data
local literalvalues = nodes.literalvalues
local originliteral_code = literalvalues.origin
local pageliteral_code = literalvalues.page
local alwaysliteral_code = literalvalues.always
local rawliteral_code = literalvalues.raw
local textliteral_code = literalvalues.text
local fontliteral_code = literalvalues.font
flushliteral = function(current,pos_h,pos_v,mode,str)
if mode then
if not str then
mode, str = originliteral_code, mode
elseif mode == "mode" then
mode = literalvalues[str]
if mode == originliteral_code then
pdf_goto_pagemode()
pdf_set_pos(pos_h,pos_v)
elseif mode == pageliteral_code then
pdf_goto_pagemode()
elseif mode == textliteral_code then
pdf_goto_textmode()
elseif mode == fontliteral_code then
pdf_goto_fontmode()
elseif mode == alwaysliteral_code then
pdf_end_string_nl()
need_tm = true
elseif mode == rawliteral_code then
pdf_end_string_nl()
end
return
else
mode = literalvalues[mode]
end
else
local p = nodeproperties[current]
if p then
str = p.data
mode = p.mode
else
str, mode = getdata(current)
end
end
if str and str ~= "" then
if mode == originliteral_code then
pdf_goto_pagemode()
pdf_set_pos(pos_h,pos_v)
elseif mode == pageliteral_code then
pdf_goto_pagemode()
elseif mode == textliteral_code then
pdf_goto_textmode()
elseif mode == fontliteral_code then
pdf_goto_fontmode()
elseif mode == alwaysliteral_code then
pdf_end_string_nl()
need_tm = true
elseif mode == rawliteral_code then
pdf_end_string_nl()
else
report("check literal")
pdf_goto_pagemode()
pdf_set_pos(pos_h,pos_v)
end
b = b + 1 ; buffer[b] = str
end
end
updaters.register("backend.update.pdf",function()
function pdf.print(mode,str)
if str then
mode = literalvalues[mode]
else
mode, str = originliteral_code, mode
end
if str and str ~= "" then
if mode == originliteral_code then
pdf_goto_pagemode()
-- pdf_set_pos(pdf_h,pdf_v)
elseif mode == pageliteral_code then
pdf_goto_pagemode()
elseif mode == textliteral_code then
pdf_goto_textmode()
elseif mode == fontliteral_code then
pdf_goto_fontmode()
elseif mode == alwaysliteral_code then
pdf_end_string_nl()
need_tm = true
elseif mode == rawliteral_code then
pdf_end_string_nl()
else
pdf_goto_pagemode()
-- pdf_set_pos(pdf_h,pdf_v)
end
b = b + 1 ; buffer[b] = str
end
end
end)
end
-- grouping & orientation
local flushsave, flushrestore, flushsetmatrix do
local matrices = { }
local positions = { }
local nofpositions = 0
local nofmatrices = 0
local f_matrix = formatters["%s 0 0 cm"]
flushsave = function(current,pos_h,pos_v)
nofpositions = nofpositions + 1
positions[nofpositions] = { pos_h, pos_v, nofmatrices }
pdf_goto_pagemode()
pdf_set_pos(pos_h,pos_v)
b = b + 1 ; buffer[b] = "q"
end
flushrestore = function(current,pos_h,pos_v)
if nofpositions < 1 then
return
end
local t = positions[nofpositions]
-- local h = pos_h - t[1]
-- local v = pos_v - t[2]
if shippingmode == "page" then
nofmatrices = t[3]
end
pdf_goto_pagemode()
pdf_set_pos(pos_h,pos_v)
b = b + 1 ; buffer[b] = "Q"
nofpositions = nofpositions - 1
end
local function pdf_set_matrix(str,pos_h,pos_v)
if shippingmode == "page" then
local rx, sx, sy, ry = splitupstring(str," ")
if rx and ry and sx and ry then
rx, sx, sy, ry = tonumber(rx), tonumber(sx), tonumber(sy), tonumber(ry)
local tx = pos_h * (1 - rx) - pos_v * sy
local ty = pos_v * (1 - ry) - pos_h * sx
if nofmatrices > 0 then
local t = matrices[nofmatrices]
local r_x, s_x, s_y, r_y, te, tf = t[1], t[2], t[3], t[4], t[5], t[6]
rx, sx = rx * r_x + sx * s_y, rx * s_x + sx * r_y
sy, ry = sy * r_x + ry * s_y, sy * s_x + ry * r_y
tx, ty = tx * r_x + ty * s_y, tx * s_x + ty * r_y
end
nofmatrices = nofmatrices + 1
matrices[nofmatrices] = { rx, sx, sy, ry, tx, ty }
end
end
end
local nodeproperties = nodes.properties.data
flushsetmatrix = function(current,pos_h,pos_v)
local str
if type(current) == "string" then
str = current
else
local p = nodeproperties[current]
if p then
str = p.matrix
else
str = getdata(current) -- for the moment
end
end
if str and str ~= "" then
pdf_set_matrix(str,pos_h,pos_v)
pdf_goto_pagemode()
pdf_set_pos(pos_h,pos_v)
b = b + 1 ; buffer[b] = f_matrix(str)
end
end
do
local function hasmatrix()
return nofmatrices > 0
end
local function getmatrix()
if nofmatrices > 0 then
return unpack(matrices[nofmatrices])
else
return 1, 0, 0, 1, 0, 0
end
end
updaters.register("backend.update.pdf",function()
pdf.hasmatrix = hasmatrix
pdf.getmatrix = getmatrix
end)
end
pushorientation = function(orientation,pos_h,pos_v,pos_r)
pdf_goto_pagemode()
pdf_set_pos(pos_h,pos_v)
b = b + 1 ; buffer[b] = "q"
if orientation == 1 then
b = b + 1 ; buffer[b] = "0 -1 1 0 0 0 cm" -- 90
elseif orientation == 2 then
b = b + 1 ; buffer[b] = "-1 0 0 -1 0 0 cm" -- 180
elseif orientation == 3 then
b = b + 1 ; buffer[b] = "0 1 -1 0 0 0 cm" -- 270
end
end
poporientation = function(orientation,pos_h,pos_v,pos_r)
pdf_goto_pagemode()
pdf_set_pos(pos_h,pos_v)
b = b + 1 ; buffer[b] = "Q"
end
-- pushorientation = function(orientation,pos_h,pos_v,pos_r)
-- flushsave(false,pos_h,pos_v)
-- if orientation == 1 then
-- flushsetmatrix("0 -1 1 0",pos_h,pos_v)
-- elseif orientation == 2 then
-- flushsetmatrix("-1 0 0 -1",pos_h,pos_v)
-- elseif orientation == 3 then
-- flushsetmatrix("0 1 -1 0",pos_h,pos_v)
-- end
-- end
-- poporientation = function(orientation,pos_h,pos_v,pos_r)
-- flushrestore(false,pos_h,pos_v)
-- end
end
-- rules
local flushedxforms = { } -- actually box resources but can also be direct
local localconverter = nil -- will be set
local flushrule, flushsimplerule, flushimage, flushgroup do
local rulecodes = nodes.rulecodes
local newrule = nodes.pool.rule
local setprop = nuts.setprop
local getprop = nuts.getprop
local normalrule_code = rulecodes.normal
local boxrule_code = rulecodes.box
local imagerule_code = rulecodes.image
local emptyrule_code = rulecodes.empty
local userrule_code = rulecodes.user
local overrule_code = rulecodes.over
local underrule_code = rulecodes.under
local fractionrule_code = rulecodes.fraction
local radicalrule_code = rulecodes.radical
local outlinerule_code = rulecodes.outline
local rule_callback = callbacks.functions.process_rule
local f_fm = formatters["/Fm%d Do"]
local f_im = formatters["/Im%d Do"]
local f_gr = formatters["/Gp%d Do"]
local s_b = "q"
local s_e = "Q"
local f_v = formatters["[] 0 d 0 J %.6N w 0 0 m %.6N 0 l S"]
local f_h = formatters["[] 0 d 0 J %.6N w 0 0 m 0 %.6N l S"]
local f_f = formatters["0 0 %.6N %.6N re f"]
local f_o = formatters["[] 0 d 0 J 0 0 %.6N %.6N re S"]
local f_w = formatters["[] 0 d 0 J %.6N w 0 0 %.6N %.6N re S"]
-- Historically the index is an object which is kind of bad.
local boxresources, n = { }, 0
getxformname = function(index)
local l = boxresources[index]
if l then
return l.name
else
report("no box resource %S",index)
end
end
updaters.register("backend.update.pdf",function()
pdf.getxformname = getxformname
end)
local function saveboxresource(box,attributes,resources,immediate,kind,margin)
n = n + 1
local immediate = true
local margin = margin or 0 -- or dimension
local objnum = pdfreserveobject()
local list = tonut(type(box) == "number" and tex.takebox(box) or box)
--
local width, height, depth = getwhd(list)
--
local l = {
width = width,
height = height,
depth = depth,
margin = margin,
attributes = attributes,
resources = resources,
list = nil,
type = kind,
name = n,
index = objnum,
objnum = objnum,
}
boxresources[objnum] = l
if immediate then
localconverter(list,"xform",objnum,l)
flushedxforms[objnum] = { true , objnum }
flushlist(list)
else
l.list = list
end
return objnum
end
local function useboxresource(index,wd,ht,dp)
local l = boxresources[index]
if l then
if wd or ht or dp then
wd, ht, dp = wd or 0, ht or 0, dp or 0
else
wd, ht, dp = l.width, l.height, l.depth
end
local rule = newrule(wd,ht,dp) -- newboxrule
rule.subtype = boxrule_code
setprop(tonut(rule),"index",index)
return rule, wd, ht, dp
else
report("no box resource %S",index)
end
end
local function getboxresourcedimensions(index)
local l = boxresources[index]
if l then
return l.width, l.height, l.depth, l.margin
else
report("no box resource %S",index)
end
end
local function getboxresourcebox(index)
local l = boxresources[index]
if l then
return l.list
end
end
updaters.register("backend.update.tex",function()
tex.saveboxresource = saveboxresource
tex.useboxresource = useboxresource
tex.getboxresourcedimensions = getboxresourcedimensions
tex.getboxresourcebox = getboxresourcebox
end)
-- a bit of a mess: index is now objnum but that has to change to a proper index
-- ... an engine inheritance
local function flushpdfxform(current,pos_h,pos_v,pos_r,size_h,size_v)
-- object properties
local objnum = getprop(current,"index")
local name = getxformname(objnum)
local info = flushedxforms[objnum]
local r = boxresources[objnum]
if not info then
info = { false , objnum }
flushedxforms[objnum] = info
end
local wd, ht, dp = getboxresourcedimensions(objnum)
-- or: wd, ht, dp = r.width, r.height, r.depth
-- sanity check
local htdp = ht + dp
if wd == 0 or size_h == 0 or htdp == 0 or size_v == 0 then
return
end
-- calculate scale
local rx, ry = 1, 1
if wd ~= size_h or htdp ~= size_v then
rx = size_h / wd
ry = size_v / htdp
end
-- flush the reference
usedxforms[objnum] = true
pdf_goto_pagemode()
calc_pdfpos(pos_h,pos_v)
tx = cmtx * bpfactor
ty = cmty * bpfactor
b = b + 1 ; buffer[b] = s_b
b = b + 1 ; buffer[b] = f_cm(rx,0,0,ry,tx,ty)
b = b + 1 ; buffer[b] = f_fm(name)
b = b + 1 ; buffer[b] = s_e
end
-- place image also used in vf but we can use a different one if we need it
local imagetypes = images.types -- pdf png jpg jp2 jbig2 stream memstream
local img_none = imagetypes.none
local img_pdf = imagetypes.pdf
local img_stream = imagetypes.stream
local img_memstream = imagetypes.memstream
local one_bp = 65536 * bpfactor
local imageresources, n = { }, 0
getximagename = function(index)
local l = imageresources[index]
if l then
return l.name
else
report("no image resource %S",index)
end
end
updaters.register("backend.update.pdf",function()
pdf.getximagename = getximagename
end)
-- Groups are flushed immediately but we can decide to make them into a
-- specific whatsit ... but not now. We could hash them if needed when
-- we use lot sof them in mp ... but not now.
usedxgroups = { }
local groups = 0
local group = nil
flushgroup = function(content,bbox)
if not group then
group = pdfdictionary {
Type = pdfconstant("Group"),
S = pdfconstant("Transparency"),
}
end
local wrapper = pdfdictionary {
Type = pdf_xobject,
Subtype = pdf_form,
FormType = 1,
Group = group,
BBox = pdfarray(bbox),
Resources = lpdf.collectedresources { serialize = false },
}
local objnum = pdfflushstreamobject(content,wrapper,false)
groups = groups + 1
usedxgroups[groups] = objnum
return f_gr(groups)
end
lpdf.flushgroup = flushgroup -- todo: access via driver in mlib-pps
-- end of experiment
local function flushpdfximage(current,pos_h,pos_v,pos_r,size_h,size_v)
local width,
height,
depth = getwhd(current)
local total = height + depth
local transform = getprop(current,"transform") or 0 -- we never set it ... so just use rotation then
local index = getprop(current,"index") or 0
local kind,
xorigin,
yorigin,
xsize,
ysize,
rotation, -- transform / orientation / rotation : it's a mess (i need to redo this)
objnum,
groupref = pdfincludeimage(index) -- needs to be sorted out, bad name (no longer mixed anyway)
if not kind then
report("invalid image %S",index)
return
end
local rx, sx, sy, ry, tx, ty = 1, 0, 0, 1, 0, 0
-- tricky: xsize and ysize swapped
if kind == img_pdf or kind == img_stream or kind == img_memstream then
rx, ry, tx, ty = 1/xsize, 1/ysize, xorigin/xsize, yorigin/ysize
else
-- if kind == img_png then
-- -- if groupref > 0 and img_page_group_val == 0 then
-- -- img_page_group_val = groupref
-- -- end
-- end
rx, ry = bpfactor, bpfactor
end
if band(transform,7) > 3 then
-- mirror
rx, tx = -rx, -tx
end
local t = band(transform + rotation,3)
if t == 0 then
-- nothing
elseif t == 1 then
-- rotation over 90 degrees (counterclockwise)
rx, sx, sy, ry, tx, ty = 0, rx, -ry, 0, -ty, tx
elseif t == 2 then
-- rotation over 180 degrees (counterclockwise)
rx, ry, tx, ty = -rx, -ry, -tx, -ty
elseif t == 3 then
-- rotation over 270 degrees (counterclockwise)
rx, sx, sy, ry, tx, ty = 0, -rx, ry, 0, ty, -tx
end
rx = rx * width
sx = sx * total
sy = sy * width
ry = ry * total
tx = pos_h - tx * width
ty = pos_v - ty * total
local t = transform + rotation
if band(transform,7) > 3 then
t = t + 1
end
t = band(t,3)
if t == 0 then
-- no transform
elseif t == 1 then
-- rotation over 90 degrees (counterclockwise)
tx = tx + width
elseif t == 2 then
-- rotation over 180 degrees (counterclockwise)
tx = tx + width
ty = ty + total
elseif t == 3 then
-- rotation over 270 degrees (counterclockwise)
ty = ty + total
end
-- a flaw in original, can go:
--
-- if img_page_group_val == 0 then
-- img_page_group_val = group_ref
-- end
usedximages[index] = objnum -- hm
pdf_goto_pagemode()
calc_pdfpos(tx,ty)
tx = cmtx * bpfactor
ty = cmty * bpfactor
b = b + 1 ; buffer[b] = s_b
b = b + 1 ; buffer[b] = f_cm(rx,sx,sy,ry,tx,ty)
b = b + 1 ; buffer[b] = f_im(index)
b = b + 1 ; buffer[b] = s_e
end
flushimage = function(index,width,height,depth,pos_h,pos_v)
-- used in vf characters
local total = height + depth
local kind,
xorigin, yorigin,
xsize, ysize,
rotation,
objnum,
groupref = pdfincludeimage(index)
local rx = width / xsize
local sx = 0
local sy = 0
local ry = total / ysize
local tx = pos_h
-- to be sorted out
-- local ty = pos_v - depth
local ty = pos_v -- we assume that depth is dealt with in the caller (for now)
usedximages[index] = objnum
pdf_goto_pagemode()
calc_pdfpos(tx,ty)
tx = cmtx * bpfactor
ty = cmty * bpfactor
b = b + 1 ; buffer[b] = s_b
b = b + 1 ; buffer[b] = f_cm(rx,sx,sy,ry,tx,ty)
b = b + 1 ; buffer[b] = f_im(index)
b = b + 1 ; buffer[b] = s_e
end
-- For the moment we need this hack because the engine checks the 'image'
-- command in virtual fonts (so we use lua instead).
flushrule = function(current,pos_h,pos_v,pos_r,size_h,size_v,subtype)
if subtype == emptyrule_code then
return
elseif subtype == boxrule_code then
return flushpdfxform(current,pos_h,pos_v,pos_r,size_h,size_v)
elseif subtype == imagerule_code then
return flushpdfximage(current,pos_h,pos_v,pos_r,size_h,size_v)
end
if subtype == userrule_code or subtype >= overrule_code and subtype <= radicalrule_code then
pdf_goto_pagemode()
b = b + 1 ; buffer[b] = s_b
pdf_set_pos_temp(pos_h,pos_v)
rule_callback(current,size_h,size_v,pos_r) -- so we pass direction
b = b + 1 ; buffer[b] = s_e
return
end
pdf_goto_pagemode()
-- local saved_b = b
b = b + 1 ; buffer[b] = s_b
local dim_h = size_h * bpfactor
local dim_v = size_v * bpfactor
local rule
if dim_v <= one_bp then
pdf_set_pos_temp(pos_h,pos_v + 0.5 * size_v)
rule = f_v(dim_v,dim_h)
elseif dim_h <= one_bp then
pdf_set_pos_temp(pos_h + 0.5 * size_h,pos_v)
rule = f_h(dim_h,dim_v)
else
pdf_set_pos_temp(pos_h,pos_v)
if subtype == outlinerule_code then
local linewidth = getdata(current)
if linewidth > 0 then
rule = f_w(linewidth * bpfactor,dim_h,dim_v)
else
rule = f_o(dim_h,dim_v)
end
else
rule = f_f(dim_h,dim_v)
end
end
b = b + 1 ; buffer[b] = rule
b = b + 1 ; buffer[b] = s_e
-- buffer[saved_b] = concat(buffer," ",saved_b,b)
-- b = saved_b
end
flushsimplerule = function(pos_h,pos_v,pos_r,size_h,size_v)
pdf_goto_pagemode()
b = b + 1 ; buffer[b] = s_b
local dim_h = size_h * bpfactor
local dim_v = size_v * bpfactor
local rule
if dim_v <= one_bp then
pdf_set_pos_temp(pos_h,pos_v + 0.5 * size_v)
rule = f_v(dim_v,dim_h)
elseif dim_h <= one_bp then
pdf_set_pos_temp(pos_h + 0.5 * size_h,pos_v)
rule = f_h(dim_h,dim_v)
else
pdf_set_pos_temp(pos_h,pos_v)
rule = f_f(dim_h,dim_v)
end
b = b + 1 ; buffer[b] = rule
b = b + 1 ; buffer[b] = s_e
end
end
--- basics
local wrapup, registerpage do
local pages = { }
local maxkids = 10
local nofpages = 0
local pagetag = "unset"
registerpage = function(object)
nofpages = nofpages + 1
local objnum = pdfpagereference(nofpages)
pages[nofpages] = {
page = nofpages, -- original number, only for diagnostics
objnum = objnum,
object = object,
tag = pagetag,
}
end
function lpdf.setpagetag(tag)
pagetag = tag or "unset"
end
function lpdf.getnofpages()
return nofpages
end
function lpdf.getpagetags()
local list = { }
for i=1,nofpages do
list[i] = pages[i].tag
end
return list
end
function lpdf.setpageorder(mapping)
-- mapping can be a hash so:
local list = table.sortedkeys(mapping)
local n = #list
if n == nofpages then
local done = { }
local hash = { }
for i=1,n do
local order = mapping[list[i]]
if hash[order] then
report("invalid page order, duplicate entry %i",order)
return
elseif order < 1 or order > nofpages then
report("invalid page order, no page %i",order)
return
else
done[i] = pages[order]
hash[order] = true
end
end
pages = done
else
report("invalid page order, %i entries expected",nofpages)
end
end
-- We can have this, but then via codeinjections etc. Later.
-- function structures.pages.swapthem()
-- local n = lpdf.getnofpages()
-- local t = { }
-- for i=1,n do
-- t[i] = i
-- end
-- for i=2,math.odd(n) and n or (n-1),2 do
-- t[i] = i+1
-- t[i+1] = i
-- end
-- lpdf.setpageorder(t)
-- end
wrapup = function(driver)
-- hook (to reshuffle pages)
local pagetree = { }
local parent = nil
local minimum = 0
local maximum = 0
local current = 0
if #pages > 1.5 * maxkids then
repeat
local plist, pnode
if current == 0 then
plist, minimum = pages, 1
elseif current == 1 then
plist, minimum = pagetree, 1
else
plist, minimum = pagetree, maximum + 1
end
maximum = #plist
if maximum > minimum then
local kids
for i=minimum,maximum do
local p = plist[i]
if not pnode or #kids == maxkids then
kids = pdfarray()
parent = pdfreserveobject()
pnode = pdfdictionary {
objnum = parent,
Type = pdf_pages,
Kids = kids,
Count = 0,
}
pagetree[#pagetree+1] = pnode
end
kids[#kids+1] = pdfreference(p.objnum)
pnode.Count = pnode.Count + (p.Count or 1)
p.Parent = pdfreference(parent)
end
end
current = current + 1
until maximum == minimum
-- flush page tree
for i=1,#pagetree do
local entry = pagetree[i]
local objnum = entry.objnum
entry.objnum = nil
pdfflushobject(objnum,entry)
end
else
-- ugly
local kids = pdfarray()
local list = pdfdictionary {
Type = pdf_pages,
Kids = kids,
Count = nofpages,
}
parent = pdfreserveobject()
for i=1,nofpages do
local page = pages[i]
kids[#kids+1] = pdfreference(page.objnum)
page.Parent = pdfreference(parent)
end
pdfflushobject(parent,list)
end
for i=1,nofpages do
local page = pages[i]
local object = page.object
object.Parent = page.Parent
pdfflushobject(page.objnum,object)
end
lpdf.addtocatalog("Pages",pdfreference(parent))
end
end
pdf_h, pdf_v = 0, 0
local function initialize(driver,details)
reset_variables(details)
reset_buffer()
end
-- This will all move and be merged and become less messy.
-- todo: more clever resource management: a bit tricky as we can inject
-- stuff in the page stream
local compact = false
do
-- This is more a convenience feature and it might even be not entirely robust.
-- It removes redundant color directives which makes the page stream look a bit
-- nicer (also when figuring out issues). I might add more here but there is
-- some additional overhead involved so runtime can be impacted.
local P, R, S, Cs, lpegmatch = lpeg.P, lpeg.R, lpeg.S, lpeg.Cs, lpeg.match
local p_ds = (R("09") + S(" ."))^1
----- p_nl = S("\n\r")^1
local p_nl = S("\n")^1
local p_eg = P("Q")
local p_cl = p_ds * (P("rg") + P("g") + P("k")) * p_ds * (P("RG") + P("G") + P("K"))
----- p_cl = (p_ds * (P("rg") + P("g") + P("k") + P("RG") + P("G") + P("K")))^1
local p_tr = P("/Tr") * p_ds * P("gs")
local p_no_cl = (p_cl * p_nl) / ""
local p_no_tr = (p_tr * p_nl) / ""
local p_no_nl = 1 - p_nl
local p_do_cl = p_cl * p_nl
local p_do_tr = p_tr * p_nl
local p_do_eg = p_eg * p_nl
local pattern = Cs( (
(p_no_cl + p_no_tr)^0 * p_do_eg -- transparencies and colors before Q
+ p_no_tr * p_no_cl * p_do_tr * p_do_cl -- transparencies and colors before others
+ p_no_cl * p_do_cl -- successive colors
+ p_no_tr * p_do_tr -- successive transparencies
+ p_no_nl^1
+ 1
)^1 )
local oldsize = 0
local newsize = 0
directives.register("pdf.compact", function(v)
compact = v and function(s)
oldsize = oldsize + #s
s = lpegmatch(pattern,s) or s
newsize = newsize + #s
return s
end
end)
statistics.register("pdf pagestream",function()
if oldsize ~= newsize then
return string.format("old size: %i, new size %i",oldsize,newsize)
end
end)
end
local flushdeferred -- defined later
local level = 0
local finalize do
local f_font = formatters["F%d"]
local f_form = formatters["Fm%d"]
local f_group = formatters["Gp%d"]
local f_image = formatters["Im%d"]
finalize = function(driver,details)
level = level + 1
pdf_goto_pagemode() -- for now
local objnum = details.objnum
local specification = details.specification
local content = concat(buffer,"\n",1,b)
if compact then
content = compact(content)
end
local fonts = nil
local xforms = nil
if next(usedfonts) then
fonts = pdfdictionary { }
for k, v in next, usedfonts do
fonts[f_font(v)] = pdfreference(pdfgetfontobjnumber(k)) -- we can overload for testing
end
end
-- messy: use real indexes for both ... so we need to change some in the
-- full luatex part
if next(usedxforms) or next(usedximages) or next(usedxgroups) then
xforms = pdfdictionary { }
for k in sortedhash(usedxforms) do
-- xforms[f_form(k)] = pdfreference(k)
xforms[f_form(getxformname(k))] = pdfreference(k)
end
for k, v in sortedhash(usedximages) do
xforms[f_image(k)] = pdfreference(v)
end
for k, v in sortedhash(usedxgroups) do
xforms[f_group(k)] = pdfreference(v)
end
end
reset_buffer()
-- finish_pdfpage_callback(shippingmode == "page")
if shippingmode == "page" then
local pageproperties = lpdf.getpageproperties()
local pageresources = pageproperties.pageresources
local pageattributes = pageproperties.pageattributes
local pagesattributes = pageproperties.pagesattributes
pageresources.Font = fonts
pageresources.XObject = xforms
pageresources.ProcSet = lpdf.procset()
local xorigin, yorigin, relocated = backends.codeinjections.getpageorigin() -- for now here
local bbox = pdfarray {
(boundingbox[1] + xorigin) * bpfactor,
(boundingbox[2] + yorigin) * bpfactor,
(boundingbox[3] + xorigin) * bpfactor,
(boundingbox[4] + yorigin) * bpfactor,
}
if relocated then
content = formatters["1 0 0 1 %.6N %.6N cm\n%s"](bbox[1],bbox[2],content)
end
local contentsobj = pdfflushstreamobject(content,false,false)
pageattributes.Type = pdf_page
pageattributes.Contents = pdfreference(contentsobj)
pageattributes.Resources = pageresources
-- pageattributes.Resources = pdfreference(pdfflushobject(pageresources))
pageattributes.MediaBox = bbox
pageattributes.Parent = nil -- precalculate
pageattributes.Group = nil -- todo
-- resources can be indirect
registerpage(pageattributes)
lpdf.finalizepage(true)
if relocated then
if pageattributes.TrimBox then pageattributes.TrimBox = box end
if pageattributes.CropBox then pageattributes.CropBox = box end
if pageattributes.BleedBox then pageattributes.BleedBox = box end
end
else
local xformtype = specification.type or 0
local margin = specification.margin or 0
local attributes = specification.attributes or ""
local resources = specification.resources or ""
local wrapper = nil
if xformtype == 0 then
wrapper = pdfdictionary {
Type = pdf_xobject,
Subtype = pdf_form,
FormType = 1,
BBox = nil,
Matrix = nil,
Resources = nil,
}
else
wrapper = pdfdictionary {
BBox = nil,
Matrix = nil,
Resources = nil,
}
end
if xformtype == 0 or xformtype == 1 or xformtype == 3 then
wrapper.BBox = pdfarray {
-margin * bpfactor,
-margin * bpfactor,
(boundingbox[3] + margin) * bpfactor,
(boundingbox[4] + margin) * bpfactor,
}
end
if xformtype == 0 or xformtype == 2 or xformtype == 3 then
wrapper.Matrix = pdfarray { 1, 0, 0, 1, 0, 0 }
end
-- todo: additional = resources
local boxresources = lpdf.collectedresources { serialize = false }
boxresources.Font = fonts
boxresources.XObject = xforms
-- todo: maybe share them
-- wrapper.Resources = pdfreference(pdfflushobject(boxresources))
if resources ~= "" then
boxresources = boxresources + resources
end
if attributes ~= "" then
wrapper = wrapper + attributes
end
wrapper.Resources = next(boxresources) and boxresources or nil
wrapper.ProcSet = lpdf.procset()
-- pdfflushstreamobject(content,wrapper,false,objectnumber)
pdfflushstreamobject(content,wrapper,false,specification.objnum)
end
for objnum in sortedhash(usedxforms) do
local f = flushedxforms[objnum]
if f[1] == false then
f[1] = true
local objnum = f[2] -- specification.objnum
local specification = boxresources[objnum]
local list = specification.list
localconverter(list,"xform",f[2],specification)
end
end
pdf_h, pdf_v = 0, 0
if level == 1 then
flushdeferred()
end
level = level - 1
end
end
updaters.register("backend.update.pdf",function()
job.positions.registerhandlers {
getpos = drivers.getpos,
getrpos = drivers.getrpos,
gethpos = drivers.gethpos,
getvpos = drivers.getvpos,
}
end)
updaters.register("backend.update",function()
local saveboxresource = tex.boxresources.save
--
-- also in lpdf-res .. brrr .. needs fixing
--
backends.codeinjections.registerboxresource = function(n,offset)
local r = saveboxresource(n,nil,nil,false,0,offset or 0)
return r
end
end)
-- now comes the pdf file handling
local objects = { }
local streams = { } -- maybe just parallel to objects (no holes)
local nofobjects = 0
local offset = 0
local f = false
local flush = false
local threshold = 40 -- also #("/Filter /FlateDecode") (compression threshold)
local objectstream = true
local compress = true
local cache = false
local info = ""
local catalog = ""
local lastdeferred = false
local majorversion = 1
local minorversion = 7
local trailerid = true
directives.register("backend.pdf.threshold",function(v)
if v then
threshold = tonumber(v) or 40
else
threshold = -1000
end
end)
local f_object = formatters["%i 0 obj\010%s\010endobj\010"]
local f_stream_n_u = formatters["%i 0 obj\010<< /Length %i >>\010stream\010%s\010endstream\010endobj\010"]
local f_stream_n_c = formatters["%i 0 obj\010<< /Filter /FlateDecode /Length %i >>\010stream\010%s\010endstream\010endobj\010"]
local f_stream_d_u = formatters["%i 0 obj\010<< %s /Length %i >>\010stream\010%s\010endstream\010endobj\010"]
local f_stream_d_c = formatters["%i 0 obj\010<< %s /Filter /FlateDecode /Length %i >>\010stream\010%s\010endstream\010endobj\010"]
local f_stream_d_r = formatters["%i 0 obj\010<< %s >>\010stream\010%s\010endstream\010endobj\010"]
----- f_object_b = formatters["%i 0 obj\010"]
local f_stream_b_n_u = formatters["%i 0 obj\010<< /Length %i >>\010stream\010"]
local f_stream_b_n_c = formatters["%i 0 obj\010<< /Filter /FlateDecode /Length %i >>\010stream\010"]
local f_stream_b_d_u = formatters["%i 0 obj\010<< %s /Length %i >>\010stream\010"]
local f_stream_b_d_c = formatters["%i 0 obj\010<< %s /Filter /FlateDecode /Length %i >>\010stream\010"]
local f_stream_b_d_r = formatters["%i 0 obj\010<< %s >>\010stream\010"]
----- s_object_e = "\010endobj\010"
local s_stream_e = "\010endstream\010endobj\010"
do
local function setinfo() end -- we get it
local function setcatalog() end -- we get it
local function settrailerid(v)
trailerid = v or false
end
local function setmajorversion(v) majorversion = tonumber(v) or majorversion end
local function setminorversion(v) minorversion = tonumber(v) or minorversion end
local function getmajorversion(v) return majorversion end
local function getminorversion(v) return minorversion end
local function setcompresslevel (v) compress = v and v ~= 0 and true or false end
local function setobjcompresslevel(v) objectstream = v and v ~= 0 and true or false end
local function getcompresslevel (v) return compress and 3 or 0 end
local function getobjcompresslevel(v) return objectstream and 1 or 0 end
local function setpageresources () end -- needs to be sorted out
local function setpageattributes () end
local function setpagesattributes() end
updaters.register("backend.update.pdf",function()
pdf.setinfo = setinfo
pdf.setcatalog = setcatalog
pdf.settrailerid = settrailerid
pdf.setmajorversion = setmajorversion
pdf.setminorversion = setminorversion
pdf.getmajorversion = getmajorversion
pdf.getminorversion = getminorversion
pdf.setcompresslevel = setcompresslevel
pdf.setobjcompresslevel = setobjcompresslevel
pdf.getcompresslevel = getcompresslevel
pdf.getobjcompresslevel = getobjcompresslevel
pdf.setpageresources = setpageresources
pdf.setpageattributes = setpageattributes
pdf.setpagesattributes = setpagesattributes
end)
end
local addtocache, flushcache, cache do
local data, d = { }, 0
local list, l = { }, 0
local coffset = 0
local indices = { }
local maxsize = 32 * 1024 -- uncompressed
local maxcount = 0xFF
addtocache = function(n,str)
local size = #str
if size == 0 then
-- todo: message
return
end
if coffset + size > maxsize or d == maxcount then
flushcache()
end
if d == 0 then
nofobjects = nofobjects + 1
objects[nofobjects] = false
streams[nofobjects] = indices
cache = nofobjects
end
objects[n] = - cache
indices[n] = d
d = d + 1
-- can have a comment n 0 obj as in luatex
data[d] = str
l = l + 1 ; list[l] = n
l = l + 1 ; list[l] = coffset
coffset = coffset + size + 1
end
local p_ObjStm = pdfconstant("ObjStm")
flushcache = function() -- references cannot be stored
if l > 0 then
list = concat(list," ")
data[0] = list
data = concat(data,"\010",0,d)
local strobj = pdfdictionary {
Type = p_ObjStm,
N = d,
First = #list + 1,
}
objects[cache] = offset
local b = nil
local e = s_stream_e
if compress then
local comp = zlibcompress(data,3)
if comp and #comp < #data then
data = comp
b = f_stream_b_d_c(cache,strobj(),#data)
else
b = f_stream_b_d_u(cache,strobj(),#data)
end
else
b = f_stream_b_d_u(cache,strobj(),#data)
end
flush(f,b)
flush(f,data)
flush(f,e)
offset = offset + #b + #data + #e
data, d = { }, 0
list, l = { }, 0
coffset = 0
indices = { }
end
end
end
local function pdfreserveobj()
nofobjects = nofobjects + 1
objects[nofobjects] = false
return nofobjects
end
local pages = table.setmetatableindex(function(t,k)
local v = pdfreserveobj()
t[k] = v
return v
end)
local function getpageref(n)
return pages[n]
end
local function refobj()
-- not needed, as we have auto-delay
end
local function flushnormalobj(data,n)
if not n then
nofobjects = nofobjects + 1
n = nofobjects
end
data = f_object(n,data)
if level == 0 then
objects[n] = offset
offset = offset + #data
flush(f,data)
else
if not lastdeferred then
lastdeferred = n
elseif n < lastdeferred then
lastdeferred = n
end
objects[n] = data
end
return n
end
local function flushstreamobj(data,n,dict,comp,nolength)
if not data then
report("no data for %S",dict)
return
end
if not n then
nofobjects = nofobjects + 1
n = nofobjects
end
local size = #data
if level == 0 then
local b = nil
local e = s_stream_e
if nolength then
b = f_stream_b_d_r(n,dict)
elseif comp ~= false and compress and size > threshold then
local compdata = zlibcompress(data,3)
if compdata then
local compsize = #compdata
if compsize > size - threshold then
b = dict and f_stream_b_d_u(n,dict,size) or f_stream_b_n_u(n,size)
else
data = compdata
b = dict and f_stream_b_d_c(n,dict,compsize) or f_stream_b_n_c(n,compsize)
end
else
b = dict and f_stream_b_d_u(n,dict,size) or f_stream_b_n_u(n,size)
end
else
b = dict and f_stream_b_d_u(n,dict,size) or f_stream_b_n_u(n,size)
end
flush(f,b)
flush(f,data)
flush(f,e)
objects[n] = offset
offset = offset + #b + #data + #e
else
if nolength then
data = f_stream_d_r(n,dict,data)
elseif comp ~= false and compress and size > threshold then
local compdata = zlibcompress(data,3)
if compdata then
local compsize = #compdata
if compsize > size - threshold then
data = dict and f_stream_d_u(n,dict,size,data) or f_stream_n_u(n,size,data)
else
data = dict and f_stream_d_c(n,dict,compsize,compdata) or f_stream_n_c(n,compsize,compdata)
end
else
data = dict and f_stream_d_u(n,dict,size,data) or f_stream_n_u(n,size,data)
end
else
data = dict and f_stream_d_u(n,dict,size,data) or f_stream_n_u(n,size,data)
end
if not lastdeferred then
lastdeferred = n
elseif n < lastdeferred then
lastdeferred = n
end
objects[n] = data
end
return n
end
flushdeferred = function() -- was forward defined
if lastdeferred then
for n=lastdeferred,nofobjects do
local o = objects[n]
if type(o) == "string" then
objects[n] = offset
offset = offset + #o
flush(f,o)
end
end
lastdeferred = false
end
end
-- n = pdf.obj([n,] objtext)
-- n = pdf.obj([n,] "file", filename)
-- n = pdf.obj([n,] "stream", streamtext [, attrtext])
-- n = pdf.obj([n,] "streamfile", filename [, attrtext])
--
-- n = pdf.obj {
-- type = <string>, -- raw|stream
-- immediate = <boolean>,
-- objnum = <number>,
-- attr = <string>,
-- compresslevel = <number>,
-- objcompression = <boolean>,
-- file = <string>,
-- string = <string>,
-- nolength = <boolean>,
-- }
local function obj(a,b,c,d)
local kind --, immediate
local objnum, data, attr, filename
local compresslevel, objcompression, nolength
local argtype = type(a)
if argtype == "table" then
kind = a.type -- raw | stream
-- immediate = a.immediate
objnum = a.objnum
attr = a.attr
compresslevel = a.compresslevel
objcompression = a.objcompression
filename = a.file
data = a.string or a.stream or ""
nolength = a.nolength
if kind == "stream" then
if filename then
data = loaddata(filename) or ""
end
elseif kind == "raw"then
if filename then
data = loaddata(filename) or ""
end
elseif kind == "file"then
kind = "raw"
data = filename and loaddata(filename) or ""
elseif kind == "streamfile" then
kind = "stream"
data = filename and loaddata(filename) or ""
end
else
if argtype == "number" then
objnum = a
a, b, c = b, c, d
else
nofobjects = nofobjects + 1
objnum = nofobjects
end
if b then
if a == "stream" then
kind = "stream"
data = b
elseif a == "file" then
-- kind = "raw"
data = loaddata(b)
elseif a == "streamfile" then
kind = "stream"
data = loaddata(b)
else
data = "" -- invalid object
end
attr = c
else
-- kind = "raw"
data = a
end
end
if not objnum then
nofobjects = nofobjects + 1
objnum = nofobjects
end
-- todo: immediate
if kind == "stream" then
flushstreamobj(data,objnum,attr,compresslevel and compresslevel > 0 or nil,nolength)
elseif objectstream and objcompression ~= false then
addtocache(objnum,data)
else
flushnormalobj(data,objnum)
end
return objnum
end
updaters.register("backend.update.pdf",function()
pdf.reserveobj = pdfreserveobj
pdf.getpageref = getpageref
pdf.refobj = refobj
pdf.flushstreamobj = flushstreamobj
pdf.flushnormalobj = flushnormalobj
pdf.obj = obj
pdf.immediateobj = obj
end)
-- In lua 5.4 the methods are now moved one metalevel deeper so we need to get them
-- from mt.__index instead. (I did get that at first.) It makes for a slightly (imo)
-- nicer interface but no real gain in speed as we don't flush that often.
local openfile, closefile do
-- I used to do <space><lf> but then figured out that when I open and save a file in a mode
-- that removes trailing spaces, the xref becomes invalid. The problem was then that a
-- reconstruction of the file by a viewer gives weird effects probably because percent symbols
-- gets interpreted then. Thanks to Ross Moore for noticing this side effect!
local f_used = formatters["%010i 00000 n\013\010"]
local f_link = formatters["%010i 00000 f\013\010"]
local f_first = formatters["%010i 65535 f\013\010"]
local f_pdf = formatters["%%PDF-%i.%i\010"]
local f_xref = formatters["xref\0100 %i\010"]
local f_trailer_id = formatters["trailer\010<< %s /ID [ <%s> <%s> ] >>\010startxref\010%i\010%%%%EOF"]
local f_trailer_no = formatters["trailer\010<< %s >>\010startxref\010%i\010%%%%EOF"]
local f_startxref = formatters["startxref\010%i\010%%%%EOF"]
local inmemory = false
local close = false
openfile = function(filename)
if inmemory then
local n = 0
f = { }
flush = function(f,s)
n = n + 1 f[n] = s
end
close = function(f)
f = concat(f)
io.savedata(filename,f)
f = false
end
-- local n = 0
-- f = {
-- write = function(self,s)
-- n = n + 1 f[n] = s
-- end,
-- close = function(self)
-- f = concat(f)
-- io.savedata(filename,f)
-- f = false
-- end,
-- }
else
f = io.open(filename,"wb")
if not f then
-- message
os.exit()
end
-- f:setvbuf("full",64*1024)
local m = getmetatable(f)
flush = m.write or m.__index.write
close = m.close or m.__index.close
end
local v = f_pdf(majorversion,minorversion)
-- local b = "%\xCC\xD5\xC1\xD4\xC5\xD8\xD0\xC4\xC6\010" -- LUATEXPDF (+128)
local b = "%\xC3\xCF\xCE\xD4\xC5\xD8\xD4\xD0\xC4\xC6\010" -- CONTEXTPDF (+128)
flush(f,v)
flush(f,b)
offset = #v + #b
end
closefile = function(abort)
if abort then
f:close()
if not environment.arguments.nodummy then
f = io.open(abort,"wb")
if f then
local name = resolvers.findfile("context-lmtx-error.pdf")
if name then
local data = io.loaddata(name)
if data then
f:write(data)
f:close()
return
end
end
f:close()
end
end
removefile(abort)
else
local xrefoffset = offset
local lastfree = 0
local noffree = 0
local catalog = lpdf.getcatalog()
local info = lpdf.getinfo()
if trailerid == true then
trailerid = md5HEX(osuuid())
elseif trailerid and #trailerid > 32 then
trailerid = md5HEX(trailerid)
else
trailerid = false
end
if objectstream then
flushdeferred()
flushcache()
--
xrefoffset = offset
--
nofobjects = nofobjects + 1
objects[nofobjects] = offset -- + 1
--
-- combine these three in one doesn't really give less code so
-- we go for the efficient ones
--
local nofbytes = 4
local c1, c2, c3, c4
if offset <= 0xFFFF then
nofbytes = 2
for i=1,nofobjects do
local o = objects[i]
if not o then
noffree = noffree + 1
else
local strm = o < 0
if strm then
o = -o
end
c1 = extract(o,8,8)
c2 = extract(o,0,8)
if strm then
objects[i] = char(2,c1,c2,streams[o][i])
else
objects[i] = char(1,c1,c2,0)
end
end
end
if noffree > 0 then
for i=nofobjects,1,-1 do
local o = objects[i]
if not o then
local f1 = extract(lastfree,8,8)
local f2 = extract(lastfree,0,8)
objects[i] = char(0,f1,f2,0)
lastfree = i
end
end
end
elseif offset <= 0xFFFFFF then
nofbytes = 3
for i=1,nofobjects do
local o = objects[i]
if not o then
noffree = noffree + 1
else
local strm = o < 0
if strm then
o = -o
end
c1 = extract(o,16,8)
c2 = extract(o, 8,8)
c3 = extract(o, 0,8)
if strm then
objects[i] = char(2,c1,c2,c3,streams[o][i])
else
objects[i] = char(1,c1,c2,c3,0)
end
end
end
if noffree > 0 then
for i=nofobjects,1,-1 do
local o = objects[i]
if not o then
local f1 = extract(lastfree,16,8)
local f2 = extract(lastfree, 8,8)
local f3 = extract(lastfree, 0,8)
objects[i] = char(0,f1,f2,f3,0)
lastfree = i
end
end
end
else
nofbytes = 4
for i=1,nofobjects do
local o = objects[i]
if not o then
noffree = noffree + 1
else
local strm = o < 0
if strm then
o = -o
end
c1 = extract(o,24,8)
c2 = extract(o,16,8)
c3 = extract(o, 8,8)
c4 = extract(o, 0,8)
if strm then
objects[i] = char(2,c1,c2,c3,c4,streams[o][i])
else
objects[i] = char(1,c1,c2,c3,c4,0)
end
end
end
if noffree > 0 then
for i=nofobjects,1,-1 do
local o = objects[i]
if not o then
local f1 = extract(lastfree,24,8)
local f2 = extract(lastfree,16,8)
local f3 = extract(lastfree, 8,8)
local f4 = extract(lastfree, 0,8)
objects[i] = char(0,f1,f2,f3,f4,0)
lastfree = i
end
end
end
end
objects[0] = rep("\0",1+nofbytes+1)
local data = concat(objects,"",0,nofobjects)
local xref = pdfdictionary {
Type = pdfconstant("XRef"),
Size = nofobjects + 1,
W = pdfarray { 1, nofbytes, 1 },
Root = catalog,
Info = info,
ID = trailerid and pdfarray { pdfliteral(trailerid,true), pdfliteral(trailerid,true) } or nil,
}
if compress then
local comp = zlibcompress(data,3)
if comp then
data = comp
flush(f,f_stream_b_d_c(nofobjects,xref(),#data))
else
flush(f,f_stream_b_d_u(nofobjects,xref(),#data))
end
else
flush(f,f_stream_b_d_u(nofobjects,xref(),#data))
end
flush(f,data)
flush(f,s_stream_e)
flush(f,f_startxref(xrefoffset))
else
flushdeferred()
xrefoffset = offset
flush(f,f_xref(nofobjects+1))
local trailer = pdfdictionary {
Size = nofobjects+1,
Root = catalog,
Info = info,
}
for i=1,nofobjects do
local o = objects[i]
if o then
objects[i] = f_used(o)
end
end
for i=nofobjects,1,-1 do
local o = objects[i]
if not o then
objects[i] = f_link(lastfree)
lastfree = i
end
end
objects[0] = f_first(lastfree)
flush(f,concat(objects,"",0,nofobjects))
trailer.Size = nofobjects + 1
if trailerid then
flush(f,f_trailer_id(trailer(),trailerid,trailerid,xrefoffset))
else
flush(f,f_trailer_no(trailer(),xrefoffset))
end
end
f:close()
end
io.flush()
closefile = function() end
end
end
-- For the moment we overload it here, although back-fil.lua eventually will
-- be merged with back-pdf as it's pdf specific, or maybe back-imp-pdf or so.
updaters.register("backend.update.pdf",function()
-- We overload img but at some point it will even go away, so we just
-- reimplement what we need in context. This will change completely i.e.
-- we will drop the low level interface!
local codeinjections = backends.pdf.codeinjections
local imagetypes = images.types -- pdf png jpg jp2 jbig2 stream memstream
local img_none = imagetypes.none
local rulecodes = nodes.rulecodes
local setprop = nodes.nuts.setprop
local report_images = logs.reporter("backend","images")
local lastindex = 0
local indices = { }
local bpfactor = number.dimenfactors.bp
local imagerule_code = rulecodes.image
function codeinjections.newimage(specification)
return specification
end
function codeinjections.copyimage(original)
return setmetatableindex(original)
end
function codeinjections.scanimgage(specification)
return specification
end
local function embedimage(specification)
if specification then
lastindex = lastindex + 1
index = lastindex
specification.index = index
local xobject = pdfdictionary { }
if not specification.notype then
xobject.Type = pdf_xobject
xobject.Subtype = pdf_form
xobject.FormType = 1
end
local bbox = specification.bbox
if bbox and not specification.nobbox then
xobject.BBox = pdfarray {
bbox[1] * bpfactor,
bbox[2] * bpfactor,
bbox[3] * bpfactor,
bbox[4] * bpfactor,
}
end
xobject = xobject + specification.attr
if bbox and not specification.width then
specification.width = bbox[3]
end
if bbox and not specification.height then
specification.height = bbox[4]
end
local dict = xobject()
--
nofobjects = nofobjects + 1
local objnum = nofobjects
local nolength = specification.nolength
local stream = specification.stream or specification.string
--
-- We cannot set type in native img so we need this hack or
-- otherwise we need to patch too much. Better that i write
-- a wrapper then. Anyway, it has to be done better: a key that
-- tells either or not to scale by xsize/ysize when flushing.
--
if not specification.type then
local kind = specification.kind
if kind then
-- take that one
elseif attr and find(attr,"BBox") then
kind = img_stream
else
-- hack: a bitmap
kind = img_none
end
specification.type = kind
specification.kind = kind
end
local compress = compresslevel and compresslevel > 0 or nil
flushstreamobj(stream,objnum,dict,compress,nolength)
specification.objnum = objnum
specification.rotation = specification.rotation or 0
specification.orientation = specification.orientation or 0
specification.transform = specification.transform or 0
specification.stream = nil
specification.attr = nil
specification.type = specification.kind or specification.type or img_none
indices[index] = specification -- better create a real specification
return specification
end
end
codeinjections.embedimage = embedimage
function codeinjections.wrapimage(specification)
--
local index = specification.index
if not index then
embedimage(specification)
end
--
local width = specification.width or 0
local height = specification.height or 0
local depth = specification.depth or 0
-- newimagerule
local n = nodes.pool.rule(width,height,depth)
n.subtype = imagerule_code
setprop(tonut(n),"index",specification.index)
return n
end
function pdf.includeimage(index)
local specification = indices[index]
if specification then
local bbox = specification.bbox
local xorigin = bbox[1]
local yorigin = bbox[2]
local xsize = bbox[3] - xorigin -- we need the original ones, not the 'rotated' ones
local ysize = bbox[4] - yorigin -- we need the original ones, not the 'rotated' ones
local transform = specification.transform or 0
local objnum = specification.objnum or pdfreserveobj()
local groupref = nil
local kind = specification.kind or specification.type or img_none -- determines scaling type
return
kind,
xorigin, yorigin,
xsize, ysize,
transform,
objnum,
groupref
end
end
end)
updaters.register("backend.update.lpdf",function()
-- todo: an md5 or sha2 hash can save space
-- todo: make a type 3 font instead
-- todo: move to lpdf namespace
local pdfimage = lpdf.epdf.image
local newpdf = pdfimage.new
local openpdf = pdfimage.open
local closepdf = pdfimage.close
local copypage = pdfimage.copy
local embedimage = images.embed
local nofstreams = 0
local topdf = { }
local toidx = { }
local function storedata_s(pdf)
local idx = toidx[pdf]
if not idx then
nofstreams = nofstreams + 1
idx = nofstreams
toidx[pdf] = nofstreams
topdf[idx] = pdf
end
return idx
end
local function vfimage_s(id,wd,ht,dp,pos_h,pos_v)
local index = topdf[id]
if type(index) == "string" then
local pdfdoc = newpdf(index,#index)
local image = copypage(pdfdoc)
local bbox = image.bbox
image.width = bbox[3] - bbox[1]
image.height = bbox[4] - bbox[2]
embedimage(image)
index = image.index
topdf[id] = index
end
-- pdf.print or pdf.literal
flushimage(index,wd,ht,dp,pos_h,pos_v)
end
local function storedata_n(name,page)
local idx = toidx[pdf]
if not idx then
nofstreams = nofstreams + 1
idx = nofstreams
toidx[pdf] = nofstreams
topdf[idx] = pdf
end
return idx
end
-- We need to have a way to close such a pdf ... esp for fonts.
local pdfdocs = { }
local function vfimage_n(name,page,wd,ht,dp,pos_h,pos_v)
local d = pdfdocs[name]
if not d then
d = { doc = openpdf(name), pages = { } }
pdfdocs[name] = d
end
local index = d.pages[page]
if not index then
local image = copypage(d.doc,page)
local bbox = image.bbox
image.width = bbox[3] - bbox[1]
image.height = bbox[4] - bbox[2]
embedimage(image)
index = image.index
d.pages[page] = index
end
flushimage(index,wd,ht,dp,pos_h,pos_v)
end
local function pdfvfimage(wd,ht,dp,data,name)
if type(data) == "number" then
return { "lua", function(font,char,pos_h,pos_v)
vfimage_n(name,data,wd,ht,dp,pos_h,pos_v)
end }
else
return { "lua", function(font,char,pos_h,pos_v)
local id = storedata_s(data)
vfimage_s(id,wd,ht,dp,pos_h,pos_v)
end }
end
end
lpdf.vfimage = pdfvfimage
end)
-- The driver.
do
local isfile = lfs.isfile
local removefile = os.remove
local renamefile = os.rename
-- local copyfile = file.copy
-- local addsuffix = file.addsuffix
local texgetbox = tex.getbox
local pdfname = nil
local converter = nil
local useddriver = nil -- a bit of a hack
local function outputfilename(driver)
return pdfname
end
-- todo: prevent twice
local function prepare(driver)
if not environment.initex then
-- install new functions in pdf namespace
updaters.apply("backend.update.pdf")
-- install new functions in lpdf namespace
updaters.apply("backend.update.lpdf")
-- adapt existing shortcuts to lpdf namespace
updaters.apply("backend.update.tex")
-- adapt existing shortcuts to tex namespace
updaters.apply("backend.update")
--
-- if rawget(pdf,"setforcefile") then
-- pdf.setforcefile(false) -- default anyway
-- end
--
-- pdfname = file.addsuffix(tex.jobname,"pdf")
pdfname = tex.jobname .. ".pdf"
openfile(pdfname)
--
luatex.registerstopactions(1,function()
if pdfname then
lpdf.finalizedocument()
closefile()
end
end)
--
luatex.registerpageactions(1,function()
if pdfname then
lpdf.finalizepage(true)
end
end)
-- --
lpdf.registerdocumentfinalizer(wrapup,nil,"wrapping up")
--
end
--
environment.lmtxmode = CONTEXTLMTXMODE
--
converter = drivers.converters.lmtx
useddriver = driver
end
local function wrapup(driver)
if pdfname then
closefile()
pdfname = nil
end
end
local function cleanup(driver)
if pdfname then
closefile(pdfname)
pdfname = nil
end
end
local function convert(driver,boxnumber)
converter(driver,texgetbox(boxnumber),"page")
end
localconverter = function(...)
converter(useddriver,...)
end
drivers.install {
name = "pdf",
flushers = {
character = flushcharacter,
fontchar = flushfontchar,
rule = flushrule,
simplerule = flushsimplerule,
pushorientation = pushorientation,
poporientation = poporientation,
--
literal = flushliteral,
setmatrix = flushsetmatrix,
save = flushsave,
restore = flushrestore,
image = flushimage,
group = flushgroup,
--
updatefontstate = updatefontstate,
},
actions = {
prepare = prepare,
wrapup = wrapup,
cleanup = cleanup,
--
initialize = initialize,
convert = convert,
finalize = finalize,
--
outputfilename = outputfilename,
},
}
end
|