svg2pdf.src.js
110 KB
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
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
/**
* Modules in this bundle
* @license
*
* svg2pdf.js:
* license: MIT (http://opensource.org/licenses/MIT)
* author: yFiles for HTML Support Team <yfileshtml@yworks.com>
* homepage: https://github.com/yWorks/svg2pdf.js#readme
* version: 1.2.0
*
* svgpath:
* license: MIT (http://opensource.org/licenses/MIT)
* homepage: https://github.com/fontello/svgpath#readme
* version: 2.2.1
*
* This header is generated by licensify (https://github.com/twada/licensify)
*/
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.svg2pdf = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
'use strict';
module.exports = require('./lib/svgpath');
},{"./lib/svgpath":6}],2:[function(require,module,exports){
// Convert an arc to a sequence of cubic bézier curves
//
'use strict';
var TAU = Math.PI * 2;
/* eslint-disable space-infix-ops */
// Calculate an angle between two vectors
//
function vector_angle(ux, uy, vx, vy) {
var sign = (ux * vy - uy * vx < 0) ? -1 : 1;
var umag = Math.sqrt(ux * ux + uy * uy);
var vmag = Math.sqrt(ux * ux + uy * uy);
var dot = ux * vx + uy * vy;
var div = dot / (umag * vmag);
// rounding errors, e.g. -1.0000000000000002 can screw up this
if (div > 1.0) { div = 1.0; }
if (div < -1.0) { div = -1.0; }
return sign * Math.acos(div);
}
// Convert from endpoint to center parameterization,
// see http://www.w3.org/TR/SVG11/implnote.html#ArcImplementationNotes
//
// Return [cx, cy, theta1, delta_theta]
//
function get_arc_center(x1, y1, x2, y2, fa, fs, rx, ry, sin_phi, cos_phi) {
// Step 1.
//
// Moving an ellipse so origin will be the middlepoint between our two
// points. After that, rotate it to line up ellipse axes with coordinate
// axes.
//
var x1p = cos_phi*(x1-x2)/2 + sin_phi*(y1-y2)/2;
var y1p = -sin_phi*(x1-x2)/2 + cos_phi*(y1-y2)/2;
var rx_sq = rx * rx;
var ry_sq = ry * ry;
var x1p_sq = x1p * x1p;
var y1p_sq = y1p * y1p;
// Step 2.
//
// Compute coordinates of the centre of this ellipse (cx', cy')
// in the new coordinate system.
//
var radicant = (rx_sq * ry_sq) - (rx_sq * y1p_sq) - (ry_sq * x1p_sq);
if (radicant < 0) {
// due to rounding errors it might be e.g. -1.3877787807814457e-17
radicant = 0;
}
radicant /= (rx_sq * y1p_sq) + (ry_sq * x1p_sq);
radicant = Math.sqrt(radicant) * (fa === fs ? -1 : 1);
var cxp = radicant * rx/ry * y1p;
var cyp = radicant * -ry/rx * x1p;
// Step 3.
//
// Transform back to get centre coordinates (cx, cy) in the original
// coordinate system.
//
var cx = cos_phi*cxp - sin_phi*cyp + (x1+x2)/2;
var cy = sin_phi*cxp + cos_phi*cyp + (y1+y2)/2;
// Step 4.
//
// Compute angles (theta1, delta_theta).
//
var v1x = (x1p - cxp) / rx;
var v1y = (y1p - cyp) / ry;
var v2x = (-x1p - cxp) / rx;
var v2y = (-y1p - cyp) / ry;
var theta1 = vector_angle(1, 0, v1x, v1y);
var delta_theta = vector_angle(v1x, v1y, v2x, v2y);
if (fs === 0 && delta_theta > 0) {
delta_theta -= TAU;
}
if (fs === 1 && delta_theta < 0) {
delta_theta += TAU;
}
return [ cx, cy, theta1, delta_theta ];
}
//
// Approximate one unit arc segment with bézier curves,
// see http://math.stackexchange.com/questions/873224
//
function approximate_unit_arc(theta1, delta_theta) {
var alpha = 4/3 * Math.tan(delta_theta/4);
var x1 = Math.cos(theta1);
var y1 = Math.sin(theta1);
var x2 = Math.cos(theta1 + delta_theta);
var y2 = Math.sin(theta1 + delta_theta);
return [ x1, y1, x1 - y1*alpha, y1 + x1*alpha, x2 + y2*alpha, y2 - x2*alpha, x2, y2 ];
}
module.exports = function a2c(x1, y1, x2, y2, fa, fs, rx, ry, phi) {
var sin_phi = Math.sin(phi * TAU / 360);
var cos_phi = Math.cos(phi * TAU / 360);
// Make sure radii are valid
//
var x1p = cos_phi*(x1-x2)/2 + sin_phi*(y1-y2)/2;
var y1p = -sin_phi*(x1-x2)/2 + cos_phi*(y1-y2)/2;
if (x1p === 0 && y1p === 0) {
// we're asked to draw line to itself
return [];
}
if (rx === 0 || ry === 0) {
// one of the radii is zero
return [];
}
// Compensate out-of-range radii
//
rx = Math.abs(rx);
ry = Math.abs(ry);
var lambda = (x1p * x1p) / (rx * rx) + (y1p * y1p) / (ry * ry);
if (lambda > 1) {
rx *= Math.sqrt(lambda);
ry *= Math.sqrt(lambda);
}
// Get center parameters (cx, cy, theta1, delta_theta)
//
var cc = get_arc_center(x1, y1, x2, y2, fa, fs, rx, ry, sin_phi, cos_phi);
var result = [];
var theta1 = cc[2];
var delta_theta = cc[3];
// Split an arc to multiple segments, so each segment
// will be less than τ/4 (= 90°)
//
var segments = Math.max(Math.ceil(Math.abs(delta_theta) / (TAU / 4)), 1);
delta_theta /= segments;
for (var i = 0; i < segments; i++) {
result.push(approximate_unit_arc(theta1, delta_theta));
theta1 += delta_theta;
}
// We have a bezier approximation of a unit circle,
// now need to transform back to the original ellipse
//
return result.map(function (curve) {
for (var i = 0; i < curve.length; i += 2) {
var x = curve[i + 0];
var y = curve[i + 1];
// scale
x *= rx;
y *= ry;
// rotate
var xp = cos_phi*x - sin_phi*y;
var yp = sin_phi*x + cos_phi*y;
// translate
curve[i + 0] = xp + cc[0];
curve[i + 1] = yp + cc[1];
}
return curve;
});
};
},{}],3:[function(require,module,exports){
'use strict';
/* eslint-disable space-infix-ops */
// The precision used to consider an ellipse as a circle
//
var epsilon = 0.0000000001;
// To convert degree in radians
//
var torad = Math.PI / 180;
// Class constructor :
// an ellipse centred at 0 with radii rx,ry and x - axis - angle ax.
//
function Ellipse(rx, ry, ax) {
if (!(this instanceof Ellipse)) { return new Ellipse(rx, ry, ax); }
this.rx = rx;
this.ry = ry;
this.ax = ax;
}
// Apply a linear transform m to the ellipse
// m is an array representing a matrix :
// - -
// | m[0] m[2] |
// | m[1] m[3] |
// - -
//
Ellipse.prototype.transform = function (m) {
// We consider the current ellipse as image of the unit circle
// by first scale(rx,ry) and then rotate(ax) ...
// So we apply ma = m x rotate(ax) x scale(rx,ry) to the unit circle.
var c = Math.cos(this.ax * torad), s = Math.sin(this.ax * torad);
var ma = [
this.rx * (m[0]*c + m[2]*s),
this.rx * (m[1]*c + m[3]*s),
this.ry * (-m[0]*s + m[2]*c),
this.ry * (-m[1]*s + m[3]*c)
];
// ma * transpose(ma) = [ J L ]
// [ L K ]
// L is calculated later (if the image is not a circle)
var J = ma[0]*ma[0] + ma[2]*ma[2],
K = ma[1]*ma[1] + ma[3]*ma[3];
// the discriminant of the characteristic polynomial of ma * transpose(ma)
var D = ((ma[0]-ma[3])*(ma[0]-ma[3]) + (ma[2]+ma[1])*(ma[2]+ma[1])) *
((ma[0]+ma[3])*(ma[0]+ma[3]) + (ma[2]-ma[1])*(ma[2]-ma[1]));
// the "mean eigenvalue"
var JK = (J + K) / 2;
// check if the image is (almost) a circle
if (D < epsilon * JK) {
// if it is
this.rx = this.ry = Math.sqrt(JK);
this.ax = 0;
return this;
}
// if it is not a circle
var L = ma[0]*ma[1] + ma[2]*ma[3];
D = Math.sqrt(D);
// {l1,l2} = the two eigen values of ma * transpose(ma)
var l1 = JK + D/2,
l2 = JK - D/2;
// the x - axis - rotation angle is the argument of the l1 - eigenvector
this.ax = (Math.abs(L) < epsilon && Math.abs(l1 - K) < epsilon) ?
90
:
Math.atan(Math.abs(L) > Math.abs(l1 - K) ?
(l1 - J) / L
:
L / (l1 - K)
) * 180 / Math.PI;
// if ax > 0 => rx = sqrt(l1), ry = sqrt(l2), else exchange axes and ax += 90
if (this.ax >= 0) {
// if ax in [0,90]
this.rx = Math.sqrt(l1);
this.ry = Math.sqrt(l2);
} else {
// if ax in ]-90,0[ => exchange axes
this.ax += 90;
this.rx = Math.sqrt(l2);
this.ry = Math.sqrt(l1);
}
return this;
};
// Check if the ellipse is (almost) degenerate, i.e. rx = 0 or ry = 0
//
Ellipse.prototype.isDegenerate = function () {
return (this.rx < epsilon * this.ry || this.ry < epsilon * this.rx);
};
module.exports = Ellipse;
},{}],4:[function(require,module,exports){
'use strict';
// combine 2 matrixes
// m1, m2 - [a, b, c, d, e, g]
//
function combine(m1, m2) {
return [
m1[0] * m2[0] + m1[2] * m2[1],
m1[1] * m2[0] + m1[3] * m2[1],
m1[0] * m2[2] + m1[2] * m2[3],
m1[1] * m2[2] + m1[3] * m2[3],
m1[0] * m2[4] + m1[2] * m2[5] + m1[4],
m1[1] * m2[4] + m1[3] * m2[5] + m1[5]
];
}
function Matrix() {
if (!(this instanceof Matrix)) { return new Matrix(); }
this.queue = []; // list of matrixes to apply
this.cache = null; // combined matrix cache
}
Matrix.prototype.matrix = function (m) {
if (m[0] === 1 && m[1] === 0 && m[2] === 0 && m[3] === 1 && m[4] === 0 && m[5] === 0) {
return this;
}
this.cache = null;
this.queue.push(m);
return this;
};
Matrix.prototype.translate = function (tx, ty) {
if (tx !== 0 || ty !== 0) {
this.cache = null;
this.queue.push([ 1, 0, 0, 1, tx, ty ]);
}
return this;
};
Matrix.prototype.scale = function (sx, sy) {
if (sx !== 1 || sy !== 1) {
this.cache = null;
this.queue.push([ sx, 0, 0, sy, 0, 0 ]);
}
return this;
};
Matrix.prototype.rotate = function (angle, rx, ry) {
var rad, cos, sin;
if (angle !== 0) {
this.translate(rx, ry);
rad = angle * Math.PI / 180;
cos = Math.cos(rad);
sin = Math.sin(rad);
this.queue.push([ cos, sin, -sin, cos, 0, 0 ]);
this.cache = null;
this.translate(-rx, -ry);
}
return this;
};
Matrix.prototype.skewX = function (angle) {
if (angle !== 0) {
this.cache = null;
this.queue.push([ 1, 0, Math.tan(angle * Math.PI / 180), 1, 0, 0 ]);
}
return this;
};
Matrix.prototype.skewY = function (angle) {
if (angle !== 0) {
this.cache = null;
this.queue.push([ 1, Math.tan(angle * Math.PI / 180), 0, 1, 0, 0 ]);
}
return this;
};
// Flatten queue
//
Matrix.prototype.toArray = function () {
if (this.cache) {
return this.cache;
}
if (!this.queue.length) {
this.cache = [ 1, 0, 0, 1, 0, 0 ];
return this.cache;
}
this.cache = this.queue[0];
if (this.queue.length === 1) {
return this.cache;
}
for (var i = 1; i < this.queue.length; i++) {
this.cache = combine(this.cache, this.queue[i]);
}
return this.cache;
};
// Apply list of matrixes to (x,y) point.
// If `isRelative` set, `translate` component of matrix will be skipped
//
Matrix.prototype.calc = function (x, y, isRelative) {
var m;
// Don't change point on empty transforms queue
if (!this.queue.length) { return [ x, y ]; }
// Calculate final matrix, if not exists
//
// NB. if you deside to apply transforms to point one-by-one,
// they should be taken in reverse order
if (!this.cache) {
this.cache = this.toArray();
}
m = this.cache;
// Apply matrix to point
return [
x * m[0] + y * m[2] + (isRelative ? 0 : m[4]),
x * m[1] + y * m[3] + (isRelative ? 0 : m[5])
];
};
module.exports = Matrix;
},{}],5:[function(require,module,exports){
'use strict';
var paramCounts = { a: 7, c: 6, h: 1, l: 2, m: 2, r: 4, q: 4, s: 4, t: 2, v: 1, z: 0 };
var SPECIAL_SPACES = [
0x1680, 0x180E, 0x2000, 0x2001, 0x2002, 0x2003, 0x2004, 0x2005, 0x2006,
0x2007, 0x2008, 0x2009, 0x200A, 0x202F, 0x205F, 0x3000, 0xFEFF
];
function isSpace(ch) {
return (ch === 0x0A) || (ch === 0x0D) || (ch === 0x2028) || (ch === 0x2029) || // Line terminators
// White spaces
(ch === 0x20) || (ch === 0x09) || (ch === 0x0B) || (ch === 0x0C) || (ch === 0xA0) ||
(ch >= 0x1680 && SPECIAL_SPACES.indexOf(ch) >= 0);
}
function isCommand(code) {
/*eslint-disable no-bitwise*/
switch (code | 0x20) {
case 0x6D/* m */:
case 0x7A/* z */:
case 0x6C/* l */:
case 0x68/* h */:
case 0x76/* v */:
case 0x63/* c */:
case 0x73/* s */:
case 0x71/* q */:
case 0x74/* t */:
case 0x61/* a */:
case 0x72/* r */:
return true;
}
return false;
}
function isDigit(code) {
return (code >= 48 && code <= 57); // 0..9
}
function isDigitStart(code) {
return (code >= 48 && code <= 57) || /* 0..9 */
code === 0x2B || /* + */
code === 0x2D || /* - */
code === 0x2E; /* . */
}
function State(path) {
this.index = 0;
this.path = path;
this.max = path.length;
this.result = [];
this.param = 0.0;
this.err = '';
this.segmentStart = 0;
this.data = [];
}
function skipSpaces(state) {
while (state.index < state.max && isSpace(state.path.charCodeAt(state.index))) {
state.index++;
}
}
function scanParam(state) {
var start = state.index,
index = start,
max = state.max,
zeroFirst = false,
hasCeiling = false,
hasDecimal = false,
hasDot = false,
ch;
if (index >= max) {
state.err = 'SvgPath: missed param (at pos ' + index + ')';
return;
}
ch = state.path.charCodeAt(index);
if (ch === 0x2B/* + */ || ch === 0x2D/* - */) {
index++;
ch = (index < max) ? state.path.charCodeAt(index) : 0;
}
// This logic is shamelessly borrowed from Esprima
// https://github.com/ariya/esprimas
//
if (!isDigit(ch) && ch !== 0x2E/* . */) {
state.err = 'SvgPath: param should start with 0..9 or `.` (at pos ' + index + ')';
return;
}
if (ch !== 0x2E/* . */) {
zeroFirst = (ch === 0x30/* 0 */);
index++;
ch = (index < max) ? state.path.charCodeAt(index) : 0;
if (zeroFirst && index < max) {
// decimal number starts with '0' such as '09' is illegal.
if (ch && isDigit(ch)) {
state.err = 'SvgPath: numbers started with `0` such as `09` are ilegal (at pos ' + start + ')';
return;
}
}
while (index < max && isDigit(state.path.charCodeAt(index))) {
index++;
hasCeiling = true;
}
ch = (index < max) ? state.path.charCodeAt(index) : 0;
}
if (ch === 0x2E/* . */) {
hasDot = true;
index++;
while (isDigit(state.path.charCodeAt(index))) {
index++;
hasDecimal = true;
}
ch = (index < max) ? state.path.charCodeAt(index) : 0;
}
if (ch === 0x65/* e */ || ch === 0x45/* E */) {
if (hasDot && !hasCeiling && !hasDecimal) {
state.err = 'SvgPath: invalid float exponent (at pos ' + index + ')';
return;
}
index++;
ch = (index < max) ? state.path.charCodeAt(index) : 0;
if (ch === 0x2B/* + */ || ch === 0x2D/* - */) {
index++;
}
if (index < max && isDigit(state.path.charCodeAt(index))) {
while (index < max && isDigit(state.path.charCodeAt(index))) {
index++;
}
} else {
state.err = 'SvgPath: invalid float exponent (at pos ' + index + ')';
return;
}
}
state.index = index;
state.param = parseFloat(state.path.slice(start, index)) + 0.0;
}
function finalizeSegment(state) {
var cmd, cmdLC;
// Process duplicated commands (without comand name)
// This logic is shamelessly borrowed from Raphael
// https://github.com/DmitryBaranovskiy/raphael/
//
cmd = state.path[state.segmentStart];
cmdLC = cmd.toLowerCase();
var params = state.data;
if (cmdLC === 'm' && params.length > 2) {
state.result.push([ cmd, params[0], params[1] ]);
params = params.slice(2);
cmdLC = 'l';
cmd = (cmd === 'm') ? 'l' : 'L';
}
if (cmdLC === 'r') {
state.result.push([ cmd ].concat(params));
} else {
while (params.length >= paramCounts[cmdLC]) {
state.result.push([ cmd ].concat(params.splice(0, paramCounts[cmdLC])));
if (!paramCounts[cmdLC]) {
break;
}
}
}
}
function scanSegment(state) {
var max = state.max,
cmdCode, comma_found, need_params, i;
state.segmentStart = state.index;
cmdCode = state.path.charCodeAt(state.index);
if (!isCommand(cmdCode)) {
state.err = 'SvgPath: bad command ' + state.path[state.index] + ' (at pos ' + state.index + ')';
return;
}
need_params = paramCounts[state.path[state.index].toLowerCase()];
state.index++;
skipSpaces(state);
state.data = [];
if (!need_params) {
// Z
finalizeSegment(state);
return;
}
comma_found = false;
for (;;) {
for (i = need_params; i > 0; i--) {
scanParam(state);
if (state.err.length) {
return;
}
state.data.push(state.param);
skipSpaces(state);
comma_found = false;
if (state.index < max && state.path.charCodeAt(state.index) === 0x2C/* , */) {
state.index++;
skipSpaces(state);
comma_found = true;
}
}
// after ',' param is mandatory
if (comma_found) {
continue;
}
if (state.index >= state.max) {
break;
}
// Stop on next segment
if (!isDigitStart(state.path.charCodeAt(state.index))) {
break;
}
}
finalizeSegment(state);
}
/* Returns array of segments:
*
* [
* [ command, coord1, coord2, ... ]
* ]
*/
module.exports = function pathParse(svgPath) {
var state = new State(svgPath);
var max = state.max;
skipSpaces(state);
while (state.index < max && !state.err.length) {
scanSegment(state);
}
if (state.err.length) {
state.result = [];
} else if (state.result.length) {
if ('mM'.indexOf(state.result[0][0]) < 0) {
state.err = 'SvgPath: string should start with `M` or `m`';
state.result = [];
} else {
state.result[0][0] = 'M';
}
}
return {
err: state.err,
segments: state.result
};
};
},{}],6:[function(require,module,exports){
// SVG Path transformations library
//
// Usage:
//
// SvgPath('...')
// .translate(-150, -100)
// .scale(0.5)
// .translate(-150, -100)
// .toFixed(1)
// .toString()
//
'use strict';
var pathParse = require('./path_parse');
var transformParse = require('./transform_parse');
var matrix = require('./matrix');
var a2c = require('./a2c');
var ellipse = require('./ellipse');
// Class constructor
//
function SvgPath(path) {
if (!(this instanceof SvgPath)) { return new SvgPath(path); }
var pstate = pathParse(path);
// Array of path segments.
// Each segment is array [command, param1, param2, ...]
this.segments = pstate.segments;
// Error message on parse error.
this.err = pstate.err;
// Transforms stack for lazy evaluation
this.__stack = [];
}
SvgPath.prototype.__matrix = function (m) {
var self = this, i;
// Quick leave for empty matrix
if (!m.queue.length) { return; }
this.iterate(function (s, index, x, y) {
var p, result, name, isRelative;
switch (s[0]) {
// Process 'assymetric' commands separately
case 'v':
p = m.calc(0, s[1], true);
result = (p[0] === 0) ? [ 'v', p[1] ] : [ 'l', p[0], p[1] ];
break;
case 'V':
p = m.calc(x, s[1], false);
result = (p[0] === m.calc(x, y, false)[0]) ? [ 'V', p[1] ] : [ 'L', p[0], p[1] ];
break;
case 'h':
p = m.calc(s[1], 0, true);
result = (p[1] === 0) ? [ 'h', p[0] ] : [ 'l', p[0], p[1] ];
break;
case 'H':
p = m.calc(s[1], y, false);
result = (p[1] === m.calc(x, y, false)[1]) ? [ 'H', p[0] ] : [ 'L', p[0], p[1] ];
break;
case 'a':
case 'A':
// ARC is: ['A', rx, ry, x-axis-rotation, large-arc-flag, sweep-flag, x, y]
// Drop segment if arc is empty (end point === start point)
/*if ((s[0] === 'A' && s[6] === x && s[7] === y) ||
(s[0] === 'a' && s[6] === 0 && s[7] === 0)) {
return [];
}*/
// Transform rx, ry and the x-axis-rotation
var ma = m.toArray();
var e = ellipse(s[1], s[2], s[3]).transform(ma);
// flip sweep-flag if matrix is not orientation-preserving
if (ma[0] * ma[3] - ma[1] * ma[2] < 0) {
s[5] = s[5] ? '0' : '1';
}
// Transform end point as usual (without translation for relative notation)
p = m.calc(s[6], s[7], s[0] === 'a');
// Empty arcs can be ignored by renderer, but should not be dropped
// to avoid collisions with `S A S` and so on. Replace with empty line.
if ((s[0] === 'A' && s[6] === x && s[7] === y) ||
(s[0] === 'a' && s[6] === 0 && s[7] === 0)) {
result = [ s[0] === 'a' ? 'l' : 'L', p[0], p[1] ];
break;
}
// if the resulting ellipse is (almost) a segment ...
if (e.isDegenerate()) {
// replace the arc by a line
result = [ s[0] === 'a' ? 'l' : 'L', p[0], p[1] ];
} else {
// if it is a real ellipse
// s[0], s[4] and s[5] are not modified
result = [ s[0], e.rx, e.ry, e.ax, s[4], s[5], p[0], p[1] ];
}
break;
case 'm':
// Edge case. The very first `m` should be processed as absolute, if happens.
// Make sense for coord shift transforms.
isRelative = index > 0;
p = m.calc(s[1], s[2], isRelative);
result = [ 'm', p[0], p[1] ];
break;
default:
name = s[0];
result = [ name ];
isRelative = (name.toLowerCase() === name);
// Apply transformations to the segment
for (i = 1; i < s.length; i += 2) {
p = m.calc(s[i], s[i + 1], isRelative);
result.push(p[0], p[1]);
}
}
self.segments[index] = result;
}, true);
};
// Apply stacked commands
//
SvgPath.prototype.__evaluateStack = function () {
var m, i;
if (!this.__stack.length) { return; }
if (this.__stack.length === 1) {
this.__matrix(this.__stack[0]);
this.__stack = [];
return;
}
m = matrix();
i = this.__stack.length;
while (--i >= 0) {
m.matrix(this.__stack[i].toArray());
}
this.__matrix(m);
this.__stack = [];
};
// Convert processed SVG Path back to string
//
SvgPath.prototype.toString = function () {
var elements = [], skipCmd, cmd;
this.__evaluateStack();
for (var i = 0; i < this.segments.length; i++) {
// remove repeating commands names
cmd = this.segments[i][0];
skipCmd = i > 0 && cmd !== 'm' && cmd !== 'M' && cmd === this.segments[i - 1][0];
elements = elements.concat(skipCmd ? this.segments[i].slice(1) : this.segments[i]);
}
return elements.join(' ')
// Optimizations: remove spaces around commands & before `-`
//
// We could also remove leading zeros for `0.5`-like values,
// but their count is too small to spend time for.
.replace(/ ?([achlmqrstvz]) ?/gi, '$1')
.replace(/ \-/g, '-')
// workaround for FontForge SVG importing bug
.replace(/zm/g, 'z m');
};
// Translate path to (x [, y])
//
SvgPath.prototype.translate = function (x, y) {
this.__stack.push(matrix().translate(x, y || 0));
return this;
};
// Scale path to (sx [, sy])
// sy = sx if not defined
//
SvgPath.prototype.scale = function (sx, sy) {
this.__stack.push(matrix().scale(sx, (!sy && (sy !== 0)) ? sx : sy));
return this;
};
// Rotate path around point (sx [, sy])
// sy = sx if not defined
//
SvgPath.prototype.rotate = function (angle, rx, ry) {
this.__stack.push(matrix().rotate(angle, rx || 0, ry || 0));
return this;
};
// Skew path along the X axis by `degrees` angle
//
SvgPath.prototype.skewX = function (degrees) {
this.__stack.push(matrix().skewX(degrees));
return this;
};
// Skew path along the Y axis by `degrees` angle
//
SvgPath.prototype.skewY = function (degrees) {
this.__stack.push(matrix().skewY(degrees));
return this;
};
// Apply matrix transform (array of 6 elements)
//
SvgPath.prototype.matrix = function (m) {
this.__stack.push(matrix().matrix(m));
return this;
};
// Transform path according to "transform" attr of SVG spec
//
SvgPath.prototype.transform = function (transformString) {
if (!transformString.trim()) {
return this;
}
this.__stack.push(transformParse(transformString));
return this;
};
// Round coords with given decimal precition.
// 0 by default (to integers)
//
SvgPath.prototype.round = function (d) {
var contourStartDeltaX = 0, contourStartDeltaY = 0, deltaX = 0, deltaY = 0, l;
d = d || 0;
this.__evaluateStack();
this.segments.forEach(function (s) {
var isRelative = (s[0].toLowerCase() === s[0]);
switch (s[0]) {
case 'H':
case 'h':
if (isRelative) { s[1] += deltaX; }
deltaX = s[1] - s[1].toFixed(d);
s[1] = +s[1].toFixed(d);
return;
case 'V':
case 'v':
if (isRelative) { s[1] += deltaY; }
deltaY = s[1] - s[1].toFixed(d);
s[1] = +s[1].toFixed(d);
return;
case 'Z':
case 'z':
deltaX = contourStartDeltaX;
deltaY = contourStartDeltaY;
return;
case 'M':
case 'm':
if (isRelative) {
s[1] += deltaX;
s[2] += deltaY;
}
deltaX = s[1] - s[1].toFixed(d);
deltaY = s[2] - s[2].toFixed(d);
contourStartDeltaX = deltaX;
contourStartDeltaY = deltaY;
s[1] = +s[1].toFixed(d);
s[2] = +s[2].toFixed(d);
return;
case 'A':
case 'a':
// [cmd, rx, ry, x-axis-rotation, large-arc-flag, sweep-flag, x, y]
if (isRelative) {
s[6] += deltaX;
s[7] += deltaY;
}
deltaX = s[6] - s[6].toFixed(d);
deltaY = s[7] - s[7].toFixed(d);
s[1] = +s[1].toFixed(d);
s[2] = +s[2].toFixed(d);
s[3] = +s[3].toFixed(d + 2); // better precision for rotation
s[6] = +s[6].toFixed(d);
s[7] = +s[7].toFixed(d);
return;
default:
// a c l q s t
l = s.length;
if (isRelative) {
s[l - 2] += deltaX;
s[l - 1] += deltaY;
}
deltaX = s[l - 2] - s[l - 2].toFixed(d);
deltaY = s[l - 1] - s[l - 1].toFixed(d);
s.forEach(function (val, i) {
if (!i) { return; }
s[i] = +s[i].toFixed(d);
});
return;
}
});
return this;
};
// Apply iterator function to all segments. If function returns result,
// current segment will be replaced to array of returned segments.
// If empty array is returned, current regment will be deleted.
//
SvgPath.prototype.iterate = function (iterator, keepLazyStack) {
var segments = this.segments,
replacements = {},
needReplace = false,
lastX = 0,
lastY = 0,
countourStartX = 0,
countourStartY = 0;
var i, j, newSegments;
if (!keepLazyStack) {
this.__evaluateStack();
}
segments.forEach(function (s, index) {
var res = iterator(s, index, lastX, lastY);
if (Array.isArray(res)) {
replacements[index] = res;
needReplace = true;
}
var isRelative = (s[0] === s[0].toLowerCase());
// calculate absolute X and Y
switch (s[0]) {
case 'm':
case 'M':
lastX = s[1] + (isRelative ? lastX : 0);
lastY = s[2] + (isRelative ? lastY : 0);
countourStartX = lastX;
countourStartY = lastY;
return;
case 'h':
case 'H':
lastX = s[1] + (isRelative ? lastX : 0);
return;
case 'v':
case 'V':
lastY = s[1] + (isRelative ? lastY : 0);
return;
case 'z':
case 'Z':
// That make sence for multiple contours
lastX = countourStartX;
lastY = countourStartY;
return;
default:
lastX = s[s.length - 2] + (isRelative ? lastX : 0);
lastY = s[s.length - 1] + (isRelative ? lastY : 0);
}
});
// Replace segments if iterator return results
if (!needReplace) { return this; }
newSegments = [];
for (i = 0; i < segments.length; i++) {
if (typeof replacements[i] !== 'undefined') {
for (j = 0; j < replacements[i].length; j++) {
newSegments.push(replacements[i][j]);
}
} else {
newSegments.push(segments[i]);
}
}
this.segments = newSegments;
return this;
};
// Converts segments from relative to absolute
//
SvgPath.prototype.abs = function () {
this.iterate(function (s, index, x, y) {
var name = s[0],
nameUC = name.toUpperCase(),
i;
// Skip absolute commands
if (name === nameUC) { return; }
s[0] = nameUC;
switch (name) {
case 'v':
// v has shifted coords parity
s[1] += y;
return;
case 'a':
// ARC is: ['A', rx, ry, x-axis-rotation, large-arc-flag, sweep-flag, x, y]
// touch x, y only
s[6] += x;
s[7] += y;
return;
default:
for (i = 1; i < s.length; i++) {
s[i] += i % 2 ? x : y; // odd values are X, even - Y
}
}
}, true);
return this;
};
// Converts segments from absolute to relative
//
SvgPath.prototype.rel = function () {
this.iterate(function (s, index, x, y) {
var name = s[0],
nameLC = name.toLowerCase(),
i;
// Skip relative commands
if (name === nameLC) { return; }
// Don't touch the first M to avoid potential confusions.
if (index === 0 && name === 'M') { return; }
s[0] = nameLC;
switch (name) {
case 'V':
// V has shifted coords parity
s[1] -= y;
return;
case 'A':
// ARC is: ['A', rx, ry, x-axis-rotation, large-arc-flag, sweep-flag, x, y]
// touch x, y only
s[6] -= x;
s[7] -= y;
return;
default:
for (i = 1; i < s.length; i++) {
s[i] -= i % 2 ? x : y; // odd values are X, even - Y
}
}
}, true);
return this;
};
// Converts arcs to cubic bézier curves
//
SvgPath.prototype.unarc = function () {
this.iterate(function (s, index, x, y) {
var new_segments, nextX, nextY, result = [], name = s[0];
// Skip anything except arcs
if (name !== 'A' && name !== 'a') { return null; }
if (name === 'a') {
// convert relative arc coordinates to absolute
nextX = x + s[6];
nextY = y + s[7];
} else {
nextX = s[6];
nextY = s[7];
}
new_segments = a2c(x, y, nextX, nextY, s[4], s[5], s[1], s[2], s[3]);
// Degenerated arcs can be ignored by renderer, but should not be dropped
// to avoid collisions with `S A S` and so on. Replace with empty line.
if (new_segments.length === 0) {
return [ [ s[0] === 'a' ? 'l' : 'L', s[6], s[7] ] ];
}
new_segments.forEach(function (s) {
result.push([ 'C', s[2], s[3], s[4], s[5], s[6], s[7] ]);
});
return result;
});
return this;
};
// Converts smooth curves (with missed control point) to generic curves
//
SvgPath.prototype.unshort = function () {
var segments = this.segments;
var prevControlX, prevControlY, prevSegment;
var curControlX, curControlY;
// TODO: add lazy evaluation flag when relative commands supported
this.iterate(function (s, idx, x, y) {
var name = s[0], nameUC = name.toUpperCase(), isRelative;
// First command MUST be M|m, it's safe to skip.
// Protect from access to [-1] for sure.
if (!idx) { return; }
if (nameUC === 'T') { // quadratic curve
isRelative = (name === 't');
prevSegment = segments[idx - 1];
if (prevSegment[0] === 'Q') {
prevControlX = prevSegment[1] - x;
prevControlY = prevSegment[2] - y;
} else if (prevSegment[0] === 'q') {
prevControlX = prevSegment[1] - prevSegment[3];
prevControlY = prevSegment[2] - prevSegment[4];
} else {
prevControlX = 0;
prevControlY = 0;
}
curControlX = -prevControlX;
curControlY = -prevControlY;
if (!isRelative) {
curControlX += x;
curControlY += y;
}
segments[idx] = [
isRelative ? 'q' : 'Q',
curControlX, curControlY,
s[1], s[2]
];
} else if (nameUC === 'S') { // cubic curve
isRelative = (name === 's');
prevSegment = segments[idx - 1];
if (prevSegment[0] === 'C') {
prevControlX = prevSegment[3] - x;
prevControlY = prevSegment[4] - y;
} else if (prevSegment[0] === 'c') {
prevControlX = prevSegment[3] - prevSegment[5];
prevControlY = prevSegment[4] - prevSegment[6];
} else {
prevControlX = 0;
prevControlY = 0;
}
curControlX = -prevControlX;
curControlY = -prevControlY;
if (!isRelative) {
curControlX += x;
curControlY += y;
}
segments[idx] = [
isRelative ? 'c' : 'C',
curControlX, curControlY,
s[1], s[2], s[3], s[4]
];
}
});
return this;
};
module.exports = SvgPath;
},{"./a2c":2,"./ellipse":3,"./matrix":4,"./path_parse":5,"./transform_parse":7}],7:[function(require,module,exports){
'use strict';
var Matrix = require('./matrix');
var operations = {
matrix: true,
scale: true,
rotate: true,
translate: true,
skewX: true,
skewY: true
};
var CMD_SPLIT_RE = /\s*(matrix|translate|scale|rotate|skewX|skewY)\s*\(\s*(.+?)\s*\)[\s,]*/;
var PARAMS_SPLIT_RE = /[\s,]+/;
module.exports = function transformParse(transformString) {
var matrix = new Matrix();
var cmd, params;
// Split value into ['', 'translate', '10 50', '', 'scale', '2', '', 'rotate', '-45', '']
transformString.split(CMD_SPLIT_RE).forEach(function (item) {
// Skip empty elements
if (!item.length) { return; }
// remember operation
if (typeof operations[item] !== 'undefined') {
cmd = item;
return;
}
// extract params & att operation to matrix
params = item.split(PARAMS_SPLIT_RE).map(function (i) {
return +i || 0;
});
// If params count is not correct - ignore command
switch (cmd) {
case 'matrix':
if (params.length === 6) {
matrix.matrix(params);
}
return;
case 'scale':
if (params.length === 1) {
matrix.scale(params[0], params[0]);
} else if (params.length === 2) {
matrix.scale(params[0], params[1]);
}
return;
case 'rotate':
if (params.length === 1) {
matrix.rotate(params[0], 0, 0);
} else if (params.length === 3) {
matrix.rotate(params[0], params[1], params[2]);
}
return;
case 'translate':
if (params.length === 1) {
matrix.translate(params[0], 0);
} else if (params.length === 2) {
matrix.translate(params[0], params[1]);
}
return;
case 'skewX':
if (params.length === 1) {
matrix.skewX(params[0]);
}
return;
case 'skewY':
if (params.length === 1) {
matrix.skewY(params[0]);
}
return;
}
});
return matrix;
};
},{"./matrix":4}],8:[function(require,module,exports){
/**
* A class to parse color values
* @author Stoyan Stefanov <sstoo@gmail.com>
* @link http://www.phpied.com/rgb-color-parser-in-javascript/
* @license Use it if you like it
*/
(function (global) {
function RGBColor(color_string)
{
this.ok = false;
// strip any leading #
if (color_string.charAt(0) == '#') { // remove # if any
color_string = color_string.substr(1,6);
}
color_string = color_string.replace(/ /g,'');
color_string = color_string.toLowerCase();
// before getting into regexps, try simple matches
// and overwrite the input
var simple_colors = {
aliceblue: 'f0f8ff',
antiquewhite: 'faebd7',
aqua: '00ffff',
aquamarine: '7fffd4',
azure: 'f0ffff',
beige: 'f5f5dc',
bisque: 'ffe4c4',
black: '000000',
blanchedalmond: 'ffebcd',
blue: '0000ff',
blueviolet: '8a2be2',
brown: 'a52a2a',
burlywood: 'deb887',
cadetblue: '5f9ea0',
chartreuse: '7fff00',
chocolate: 'd2691e',
coral: 'ff7f50',
cornflowerblue: '6495ed',
cornsilk: 'fff8dc',
crimson: 'dc143c',
cyan: '00ffff',
darkblue: '00008b',
darkcyan: '008b8b',
darkgoldenrod: 'b8860b',
darkgray: 'a9a9a9',
darkgreen: '006400',
darkkhaki: 'bdb76b',
darkmagenta: '8b008b',
darkolivegreen: '556b2f',
darkorange: 'ff8c00',
darkorchid: '9932cc',
darkred: '8b0000',
darksalmon: 'e9967a',
darkseagreen: '8fbc8f',
darkslateblue: '483d8b',
darkslategray: '2f4f4f',
darkturquoise: '00ced1',
darkviolet: '9400d3',
deeppink: 'ff1493',
deepskyblue: '00bfff',
dimgray: '696969',
dodgerblue: '1e90ff',
feldspar: 'd19275',
firebrick: 'b22222',
floralwhite: 'fffaf0',
forestgreen: '228b22',
fuchsia: 'ff00ff',
gainsboro: 'dcdcdc',
ghostwhite: 'f8f8ff',
gold: 'ffd700',
goldenrod: 'daa520',
gray: '808080',
green: '008000',
greenyellow: 'adff2f',
honeydew: 'f0fff0',
hotpink: 'ff69b4',
indianred : 'cd5c5c',
indigo : '4b0082',
ivory: 'fffff0',
khaki: 'f0e68c',
lavender: 'e6e6fa',
lavenderblush: 'fff0f5',
lawngreen: '7cfc00',
lemonchiffon: 'fffacd',
lightblue: 'add8e6',
lightcoral: 'f08080',
lightcyan: 'e0ffff',
lightgoldenrodyellow: 'fafad2',
lightgrey: 'd3d3d3',
lightgreen: '90ee90',
lightpink: 'ffb6c1',
lightsalmon: 'ffa07a',
lightseagreen: '20b2aa',
lightskyblue: '87cefa',
lightslateblue: '8470ff',
lightslategray: '778899',
lightsteelblue: 'b0c4de',
lightyellow: 'ffffe0',
lime: '00ff00',
limegreen: '32cd32',
linen: 'faf0e6',
magenta: 'ff00ff',
maroon: '800000',
mediumaquamarine: '66cdaa',
mediumblue: '0000cd',
mediumorchid: 'ba55d3',
mediumpurple: '9370d8',
mediumseagreen: '3cb371',
mediumslateblue: '7b68ee',
mediumspringgreen: '00fa9a',
mediumturquoise: '48d1cc',
mediumvioletred: 'c71585',
midnightblue: '191970',
mintcream: 'f5fffa',
mistyrose: 'ffe4e1',
moccasin: 'ffe4b5',
navajowhite: 'ffdead',
navy: '000080',
oldlace: 'fdf5e6',
olive: '808000',
olivedrab: '6b8e23',
orange: 'ffa500',
orangered: 'ff4500',
orchid: 'da70d6',
palegoldenrod: 'eee8aa',
palegreen: '98fb98',
paleturquoise: 'afeeee',
palevioletred: 'd87093',
papayawhip: 'ffefd5',
peachpuff: 'ffdab9',
peru: 'cd853f',
pink: 'ffc0cb',
plum: 'dda0dd',
powderblue: 'b0e0e6',
purple: '800080',
red: 'ff0000',
rosybrown: 'bc8f8f',
royalblue: '4169e1',
saddlebrown: '8b4513',
salmon: 'fa8072',
sandybrown: 'f4a460',
seagreen: '2e8b57',
seashell: 'fff5ee',
sienna: 'a0522d',
silver: 'c0c0c0',
skyblue: '87ceeb',
slateblue: '6a5acd',
slategray: '708090',
snow: 'fffafa',
springgreen: '00ff7f',
steelblue: '4682b4',
tan: 'd2b48c',
teal: '008080',
thistle: 'd8bfd8',
tomato: 'ff6347',
turquoise: '40e0d0',
violet: 'ee82ee',
violetred: 'd02090',
wheat: 'f5deb3',
white: 'ffffff',
whitesmoke: 'f5f5f5',
yellow: 'ffff00',
yellowgreen: '9acd32'
};
for (var key in simple_colors) {
if (color_string == key) {
color_string = simple_colors[key];
}
}
// emd of simple type-in colors
// array of color definition objects
var color_defs = [
{
re: /^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/,
example: ['rgb(123, 234, 45)', 'rgb(255,234,245)'],
process: function (bits){
return [
parseInt(bits[1]),
parseInt(bits[2]),
parseInt(bits[3])
];
}
},
{
re: /^(\w{2})(\w{2})(\w{2})$/,
example: ['#00ff00', '336699'],
process: function (bits){
return [
parseInt(bits[1], 16),
parseInt(bits[2], 16),
parseInt(bits[3], 16)
];
}
},
{
re: /^(\w{1})(\w{1})(\w{1})$/,
example: ['#fb0', 'f0f'],
process: function (bits){
return [
parseInt(bits[1] + bits[1], 16),
parseInt(bits[2] + bits[2], 16),
parseInt(bits[3] + bits[3], 16)
];
}
}
];
// search through the definitions to find a match
for (var i = 0; i < color_defs.length; i++) {
var re = color_defs[i].re;
var processor = color_defs[i].process;
var bits = re.exec(color_string);
if (bits) {
var channels = processor(bits);
this.r = channels[0];
this.g = channels[1];
this.b = channels[2];
this.ok = true;
}
}
// validate/cleanup values
this.r = (this.r < 0 || isNaN(this.r)) ? 0 : ((this.r > 255) ? 255 : this.r);
this.g = (this.g < 0 || isNaN(this.g)) ? 0 : ((this.g > 255) ? 255 : this.g);
this.b = (this.b < 0 || isNaN(this.b)) ? 0 : ((this.b > 255) ? 255 : this.b);
// some getters
this.toRGB = function () {
return 'rgb(' + this.r + ', ' + this.g + ', ' + this.b + ')';
}
this.toHex = function () {
var r = this.r.toString(16);
var g = this.g.toString(16);
var b = this.b.toString(16);
if (r.length == 1) r = '0' + r;
if (g.length == 1) g = '0' + g;
if (b.length == 1) b = '0' + b;
return '#' + r + g + b;
}
// help
this.getHelpXML = function () {
var examples = new Array();
// add regexps
for (var i = 0; i < color_defs.length; i++) {
var example = color_defs[i].example;
for (var j = 0; j < example.length; j++) {
examples[examples.length] = example[j];
}
}
// add type-in colors
for (var sc in simple_colors) {
examples[examples.length] = sc;
}
var xml = document.createElement('ul');
xml.setAttribute('id', 'rgbcolor-examples');
for (var i = 0; i < examples.length; i++) {
try {
var list_item = document.createElement('li');
var list_color = new RGBColor(examples[i]);
var example_div = document.createElement('div');
example_div.style.cssText =
'margin: 3px; '
+ 'border: 1px solid black; '
+ 'background:' + list_color.toHex() + '; '
+ 'color:' + list_color.toHex()
;
example_div.appendChild(document.createTextNode('test'));
var list_item_value = document.createTextNode(
' ' + examples[i] + ' -> ' + list_color.toRGB() + ' -> ' + list_color.toHex()
);
list_item.appendChild(example_div);
list_item.appendChild(list_item_value);
xml.appendChild(list_item);
} catch(e){}
}
return xml;
}
}
if (typeof define === "function" && define.amd) {
define(function () {
return RGBColor;
});
} else if (typeof module !== "undefined" && module.exports) {
module.exports = RGBColor;
} else {
global.RGBColor = RGBColor;
}
return RGBColor;
})(typeof self !== "undefined" && self || typeof window !== "undefined" && window || this);
},{}],9:[function(require,module,exports){
/*
The MIT License (MIT)
Copyright (c) 2015-2017 yWorks GmbH
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
/**
* Renders an svg element to a jsPDF document.
* For accurate results a DOM document is required (mainly used for text size measurement and image format conversion)
* @param element {HTMLElement} The svg element, which will be cloned, so the original stays unchanged.
* @param pdf {jsPDF} The jsPDF object.
* @param options {object} An object that may contain render options. Currently supported are:
* scale: The global factor by which everything is scaled.
* xOffset, yOffset: Offsets that are added to every coordinate AFTER scaling (They are not
* influenced by the scale attribute).
*/
(function (global) {
var RGBColor;
var SvgPath;
var _pdf; // jsPDF pdf-document
var cToQ = 2 / 3; // ratio to convert quadratic bezier curves to cubic ones
var iriReference = /url\(["']?#([^"']+)["']?\)/;
var svgNamespaceURI = "http://www.w3.org/2000/svg";
// pathSegList is marked deprecated in chrome, so parse the d attribute manually if necessary
var getPathSegList = function (node) {
var d = node.getAttribute("d");
// Replace arcs before path segment list is handled
if (SvgPath) {
d = SvgPath(d).unshort().unarc().abs().toString();
node.setAttribute('d', d);
}
var pathSegList = node.pathSegList;
if (pathSegList) {
return pathSegList;
}
pathSegList = [];
var regex = /([a-df-zA-DF-Z])([^a-df-zA-DF-Z]*)/g,
match;
while (match = regex.exec(d)) {
var coords = parseFloats(match[2]);
var type = match[1];
var length = "zZ".indexOf(type) >= 0 ? 0 :
"hHvV".indexOf(type) >= 0 ? 1 :
"mMlLtT".indexOf(type) >= 0 ? 2 :
"sSqQ".indexOf(type) >= 0 ? 4 :
"aA".indexOf(type) >= 0 ? 7 :
"cC".indexOf(type) >= 0 ? 6 : -1;
var i = 0;
do {
var pathSeg = {pathSegTypeAsLetter: type};
switch (type) {
case "h":
case "H":
pathSeg.x = coords[i];
break;
case "v":
case "V":
pathSeg.y = coords[i];
break;
case "c":
case "C":
pathSeg.x1 = coords[i + length - 6];
pathSeg.y1 = coords[i + length - 5];
case "s":
case "S":
pathSeg.x2 = coords[i + length - 4];
pathSeg.y2 = coords[i + length - 3];
case "t":
case "T":
case "l":
case "L":
case "m":
case "M":
pathSeg.x = coords[i + length - 2];
pathSeg.y = coords[i + length - 1];
break;
case "q":
case "Q":
pathSeg.x1 = coords[i];
pathSeg.y1 = coords[i + 1];
pathSeg.x = coords[i + 2];
pathSeg.y = coords[i + 3];
break;
case "a":
case "A":
throw new Error("Cannot convert Arcs without SvgPath package");
}
pathSegList.push(pathSeg);
// "If a moveto is followed by multiple pairs of coordinates, the subsequent pairs are treated as implicit
// lineto commands"
if (type === "m") {
type = "l";
} else if (type === "M") {
type = "L";
}
i += length;
} while(i < coords.length);
}
pathSegList.getItem = function (i) {
return this[i]
};
pathSegList.numberOfItems = pathSegList.length;
return pathSegList;
};
// returns an attribute of a node, either from the node directly or from css
var getAttribute = function (node, propertyNode, propertyCss) {
propertyCss = propertyCss || propertyNode;
return node.getAttribute(propertyNode) || node.style[propertyCss];
};
var nodeIs = function (node, tagsString) {
return tagsString.split(",").indexOf(node.tagName.toLowerCase()) >= 0;
};
var forEachChild = function (node, fn) {
// copy list of children, as the original might be modified
var children = [];
for (var i = 0; i < node.childNodes.length; i++) {
var childNode = node.childNodes[i];
if (childNode.nodeName.charAt(0) !== "#")
children.push(childNode);
}
for (i = 0; i < children.length; i++) {
fn(i, children[i]);
}
};
var getAngle = function (from, to) {
return Math.atan2(to[1] - from[1], to[0] - from[0]);
};
function normalize(v) {
var length = Math.sqrt(v[0] * v[0] + v[1] * v[1]);
return [v[0] / length, v[1] / length];
}
function getDirectionVector(from, to) {
var v = [to[0] - from[0], to[1] - from[1]];
return normalize(v);
}
function addVectors(v1, v2) {
return [v1[0] + v2[0], v1[1] + v2[1]];
}
// mirrors p1 at p2
var mirrorPoint = function (p1, p2) {
var dx = p2[0] - p1[0];
var dy = p2[1] - p1[1];
return [p1[0] + 2 * dx, p1[1] + 2 * dy];
};
// transforms a cubic bezier control point to a quadratic one: returns from + (2/3) * (to - from)
var toCubic = function (from, to) {
return [cToQ * (to[0] - from[0]) + from[0], cToQ * (to[1] - from[1]) + from[1]];
};
// extracts a control point from a previous path segment (for t,T,s,S segments)
var getControlPointFromPrevious = function (i, from, list, prevX, prevY) {
var prev = list.getItem(i - 1);
var p2;
if (i > 0 && (prev.pathSegTypeAsLetter === "C" || prev.pathSegTypeAsLetter === "S")) {
p2 = mirrorPoint([prev.x2, prev.y2], from);
} else if (i > 0 && (prev.pathSegTypeAsLetter === "c" || prev.pathSegTypeAsLetter === "s")) {
p2 = mirrorPoint([prev.x2 + prevX, prev.y2 + prevY], from);
} else {
p2 = [from[0], from[1]];
}
return p2;
};
// an id prefix to handle duplicate ids
var SvgPrefix = function (prefix) {
this.prefix = prefix;
this.id = 0;
this.nextChild = function () {
return new SvgPrefix("_" + this.id++ + "_" + this.get());
};
this.get = function () {
return this.prefix;
}
};
var AttributeState = function () {
this.fillMode = null;
this.strokeMode = null;
this.color = null;
this.fill = null;
this.fillOpacity = 1.0;
// this.fillRule = null;
this.fontFamily = null;
this.fontSize = 16;
this.fontStyle = null;
// this.fontVariant = null;
this.fontWeight = null;
this.opacity = 1.0;
this.stroke = null;
this.strokeDasharray = null;
this.strokeDashoffset = null;
this.strokeLinecap = null;
this.strokeLinejoin = null;
this.strokeMiterlimit = 4.0;
this.strokeOpacity = 1.0;
this.strokeWidth = 1.0;
// this.textAlign = null;
this.textAnchor = null;
this.visibility = null;
};
AttributeState.default = function () {
var attributeState = new AttributeState();
attributeState.fillMode = "F";
attributeState.strokeMode = "";
attributeState.color = new RGBColor("rgb(0, 0, 0)");
attributeState.fill = new RGBColor("rgb(0, 0, 0)");
attributeState.fillOpacity = 1.0;
// attributeState.fillRule = "nonzero";
attributeState.fontFamily = "times";
attributeState.fontSize = 16;
attributeState.fontStyle = "normal";
// attributeState.fontVariant = "normal";
attributeState.fontWeight = "normal";
attributeState.opacity = 1.0;
attributeState.stroke = null;
attributeState.strokeDasharray = null;
attributeState.strokeDashoffset = null;
attributeState.strokeLinecap = "butt";
attributeState.strokeLinejoin = "miter";
attributeState.strokeMiterlimit = 4.0;
attributeState.strokeOpacity = 1.0;
attributeState.strokeWidth = 1.0;
// attributeState.textAlign = "start";
attributeState.textAnchor = "start";
attributeState.visibility = "visible";
return attributeState;
};
AttributeState.prototype.clone = function () {
var clone = new AttributeState();
clone.fillMode = this.fillMode;
clone.strokeMode = this.strokeMode;
clone.color = this.color;
clone.fill = this.fill;
clone.fillOpacity = this.fillOpacity;
// clone.fillRule = this.fillRule;
clone.fontFamily = this.fontFamily;
clone.fontSize = this.fontSize;
clone.fontStyle = this.fontStyle;
// clone.fontVariant = this.fontVariant;
clone.fontWeight = this.fontWeight;
clone.opacity = this.opacity;
clone.stroke = this.stroke;
clone.strokeDasharray = this.strokeDasharray;
clone.strokeDashoffset = this.strokeDashoffset;
clone.strokeLinecap = this.strokeLinecap;
clone.strokeLinejoin = this.strokeLinejoin;
clone.strokeMiterlimit = this.strokeMiterlimit;
clone.strokeOpacity = this.strokeOpacity;
clone.strokeWidth = this.strokeWidth;
// clone.textAlign = this.textAlign;
clone.textAnchor = this.textAnchor;
clone.visibility = this.visibility;
return clone;
};
/**
* @constructor
* @property {Marker[]} markers
*/
function MarkerList() {
this.markers = [];
}
/**
* @param {Marker} marker
*/
MarkerList.prototype.addMarker = function addMarker(marker) {
this.markers.push(marker);
};
MarkerList.prototype.draw = function (tfMatrix, attributeState) {
for (var i = 0; i < this.markers.length; i++) {
var marker = this.markers[i];
var tf;
var angle = marker.angle, anchor = marker.anchor;
var cos = Math.cos(angle);
var sin = Math.sin(angle);
// position at and rotate around anchor
tf = new _pdf.Matrix(cos, sin, -sin, cos, anchor[0], anchor[1]);
// scale with stroke-width
tf = _pdf.matrixMult(new _pdf.Matrix(attributeState.strokeWidth, 0, 0, attributeState.strokeWidth, 0, 0), tf);
tf = _pdf.matrixMult(tf, tfMatrix);
// as the marker is already scaled by the current line width we must not apply the line width twice!
_pdf.saveGraphicsState();
_pdf.setLineWidth(1.0);
_pdf.doFormObject(marker.id, tf);
_pdf.restoreGraphicsState();
}
};
/**
* @param {string} id
* @param {[number,number]} anchor
* @param {number} angle
*/
function Marker(id, anchor, angle) {
this.id = id;
this.anchor = anchor;
this.angle = angle;
}
// returns the node for the specified id or incrementally removes prefixes to search "higher" levels
var getFromDefs = function (id, defs) {
var regExp = /_\d+_/;
while (!defs[id] && regExp.exec(id)) {
id = id.replace(regExp, "");
}
return defs[id];
};
// replace any newline characters by space and trim
var removeNewlinesAndTrim = function (str) {
return str.replace(/[\n\s\r]+/, " ").trim();
};
// clones the defs object (or basically any object)
var cloneDefs = function (defs) {
var clone = {};
for (var key in defs) {
if (defs.hasOwnProperty(key)) {
clone[key] = defs[key];
}
}
return clone;
};
function computeViewBoxTransform(node, bounds, eX, eY, eWidth, eHeight) {
var vbX = bounds[0];
var vbY = bounds[1];
var vbWidth = bounds[2];
var vbHeight = bounds[3];
var scaleX = eWidth / vbWidth;
var scaleY = eHeight / vbHeight;
var align, meetOrSlice;
var preserveAspectRatio = node.getAttribute("preserveAspectRatio");
if (preserveAspectRatio) {
var alignAndMeetOrSlice = preserveAspectRatio.split(" ");
align = alignAndMeetOrSlice[0];
meetOrSlice = alignAndMeetOrSlice[1] || "meet";
} else {
align = "xMidYMid";
meetOrSlice = "meet"
}
if (align !== "none") {
if (meetOrSlice === "meet") {
// uniform scaling with min scale
scaleX = scaleY = Math.min(scaleX, scaleY);
} else if (meetOrSlice === "slice") {
// uniform scaling with max scale
scaleX = scaleY = Math.max(scaleX, scaleY);
}
}
var translateX = eX - (vbX * scaleX);
var translateY = eY - (vbY * scaleY);
if (align.indexOf("xMid") >= 0) {
translateX += (eWidth - vbWidth * scaleX) / 2;
} else if (align.indexOf("xMax") >= 0) {
translateX += eWidth - vbWidth * scaleX;
}
if (align.indexOf("yMid") >= 0) {
translateY += (eHeight - vbHeight * scaleY) / 2;
} else if (align.indexOf("yMax") >= 0) {
translateY += (eHeight - vbHeight * scaleY);
}
var translate = new _pdf.Matrix(1, 0, 0, 1, translateX, translateY);
var scale = new _pdf.Matrix(scaleX, 0, 0, scaleY, 0, 0);
return _pdf.matrixMult(scale, translate);
}
// computes the transform directly applied at the node (such as viewbox scaling and the "transform" atrribute)
// x,y,cx,cy,r,... are omitted
var computeNodeTransform = function (node) {
var viewBox, x, y;
var nodeTransform = _pdf.unitMatrix;
if (nodeIs(node, "svg,g")) {
x = parseFloat(node.getAttribute("x")) || 0;
y = parseFloat(node.getAttribute("y")) || 0;
viewBox = node.getAttribute("viewBox");
if (viewBox) {
var width = parseFloat(node.getAttribute("width"));
var height = parseFloat(node.getAttribute("height"));
nodeTransform = computeViewBoxTransform(node, parseFloats(viewBox), x, y, width, height)
} else {
nodeTransform = new _pdf.Matrix(1, 0, 0, 1, x, y);
}
} else if (nodeIs(node, "marker")) {
x = parseFloat(node.getAttribute("refX")) || 0;
y = parseFloat(node.getAttribute("refY")) || 0;
viewBox = node.getAttribute("viewBox");
if (viewBox) {
var bounds = parseFloats(viewBox);
bounds[0] = bounds[1] = 0; // for some reason vbX anc vbY seem to be ignored for markers
nodeTransform = computeViewBoxTransform(node, bounds, 0, 0, node.getAttribute("markerWidth"), node.getAttribute("markerHeight"));
nodeTransform = _pdf.matrixMult(new _pdf.Matrix(1, 0, 0, 1, -x, -y), nodeTransform);
} else {
nodeTransform = new _pdf.Matrix(1, 0, 0, 1, -x, -y);
}
}
var transformString = node.getAttribute("transform");
if (!transformString)
return nodeTransform;
else
return _pdf.matrixMult(nodeTransform, parseTransform(transformString));
};
// parses the "points" string used by polygons and returns an array of points
var parsePointsString = function (string) {
var floats = parseFloats(string);
var result = [];
for (var i = 0; i < floats.length - 1; i += 2) {
var x = floats[i];
var y = floats[i + 1];
result.push([x, y]);
}
return result;
};
// parses the "transform" string
var parseTransform = function (transformString) {
if (!transformString)
return _pdf.unitMatrix;
var mRegex = /^\s*matrix\(([^\)]+)\)\s*/,
tRegex = /^\s*translate\(([^\)]+)\)\s*/,
rRegex = /^\s*rotate\(([^\)]+)\)\s*/,
sRegex = /^\s*scale\(([^\)]+)\)\s*/,
sXRegex = /^\s*skewX\(([^\)]+)\)\s*/,
sYRegex = /^\s*skewY\(([^\)]+)\)\s*/;
var resultMatrix = _pdf.unitMatrix, m;
while (transformString.length > 0) {
var match = mRegex.exec(transformString);
if (match) {
m = parseFloats(match[1]);
resultMatrix = _pdf.matrixMult(new _pdf.Matrix(m[0], m[1], m[2], m[3], m[4], m[5]), resultMatrix);
transformString = transformString.substr(match[0].length);
}
match = rRegex.exec(transformString);
if (match) {
m = parseFloats(match[1]);
var a = Math.PI * m[0] / 180;
resultMatrix = _pdf.matrixMult(new _pdf.Matrix(Math.cos(a), Math.sin(a), -Math.sin(a), Math.cos(a), 0, 0), resultMatrix);
if (m[1] && m[2]) {
var t1 = new _pdf.Matrix(1, 0, 0, 1, m[1], m[2]);
var t2 = new _pdf.Matrix(1, 0, 0, 1, -m[1], -m[2]);
resultMatrix = _pdf.matrixMult(t2, _pdf.matrixMult(resultMatrix, t1));
}
transformString = transformString.substr(match[0].length);
}
match = tRegex.exec(transformString);
if (match) {
m = parseFloats(match[1]);
resultMatrix = _pdf.matrixMult(new _pdf.Matrix(1, 0, 0, 1, m[0], m[1] || 0), resultMatrix);
transformString = transformString.substr(match[0].length);
}
match = sRegex.exec(transformString);
if (match) {
m = parseFloats(match[1]);
if (!m[1])
m[1] = m[0];
resultMatrix = _pdf.matrixMult(new _pdf.Matrix(m[0], 0, 0, m[1], 0, 0), resultMatrix);
transformString = transformString.substr(match[0].length);
}
match = sXRegex.exec(transformString);
if (match) {
m = parseFloat(match[1]);
resultMatrix = _pdf.matrixMult(new _pdf.Matrix(1, 0, Math.tan(m), 1, 0, 0), resultMatrix);
transformString = transformString.substr(match[0].length);
}
match = sYRegex.exec(transformString);
if (match) {
m = parseFloat(match[1]);
resultMatrix = _pdf.matrixMult(new _pdf.Matrix(1, Math.tan(m), 0, 1, 0, 0), resultMatrix);
transformString = transformString.substr(match[0].length);
}
}
return resultMatrix;
};
// parses a comma, sign and/or whitespace separated string of floats and returns the single floats in an array
var parseFloats = function (str) {
var floats = [], match,
regex = /[+-]?(?:(?:\d+\.?\d*)|(?:\d*\.?\d+))(?:[eE][+-]?\d+)?/g;
while(match = regex.exec(str)) {
floats.push(parseFloat(match[0]));
}
return floats;
};
// extends RGBColor by rgba colors as RGBColor is not capable of it
var parseColor = function (colorString) {
var match = /\s*rgba\(((?:[^,\)]*,){3}[^,\)]*)\)\s*/.exec(colorString);
if (match) {
var floats = parseFloats(match[1]);
var color = new RGBColor("rgb(" + floats.slice(0,3).join(",") + ")");
color.a = floats[3];
return color;
} else {
return new RGBColor(colorString);
}
};
// multiplies a vector with a matrix: vec' = vec * matrix
var multVecMatrix = function (vec, matrix) {
var x = vec[0];
var y = vec[1];
return [
matrix.a * x + matrix.c * y + matrix.e,
matrix.b * x + matrix.d * y + matrix.f
];
};
// returns the untransformed bounding box [x, y, width, height] of an svg element (quite expensive for path and polygon objects, as
// the whole points/d-string has to be processed)
var getUntransformedBBox = function (node) {
if (getAttribute(node, "display") === "none") {
return [0, 0, 0, 0];
}
var i, minX, minY, maxX, maxY, viewBox, vb, boundingBox;
var pf = parseFloat;
if (nodeIs(node, "polygon")) {
var points = parsePointsString(node.getAttribute("points"));
minX = Number.POSITIVE_INFINITY;
minY = Number.POSITIVE_INFINITY;
maxX = Number.NEGATIVE_INFINITY;
maxY = Number.NEGATIVE_INFINITY;
for (i = 0; i < points.length; i++) {
var point = points[i];
minX = Math.min(minX, point[0]);
maxX = Math.max(maxX, point[0]);
minY = Math.min(minY, point[1]);
maxY = Math.max(maxY, point[1]);
}
boundingBox = [
minX,
minY,
maxX - minX,
maxY - minY
];
} else if (nodeIs(node, "path")) {
var list = getPathSegList(node);
minX = Number.POSITIVE_INFINITY;
minY = Number.POSITIVE_INFINITY;
maxX = Number.NEGATIVE_INFINITY;
maxY = Number.NEGATIVE_INFINITY;
var x = 0, y = 0;
var prevX, prevY, newX, newY;
var p2, p3, to;
for (i = 0; i < list.numberOfItems; i++) {
var seg = list.getItem(i);
var cmd = seg.pathSegTypeAsLetter;
switch (cmd) {
case "H":
newX = seg.x;
newY = y;
break;
case "h":
newX = seg.x + x;
newY = y;
break;
case "V":
newX = x;
newY = seg.y;
break;
case "v":
newX = x;
newY = seg.y + y;
break;
case "C":
p2 = [seg.x1, seg.y1];
p3 = [seg.x2, seg.y2];
to = [seg.x, seg.y];
break;
case "c":
p2 = [seg.x1 + x, seg.y1 + y];
p3 = [seg.x2 + x, seg.y2 + y];
to = [seg.x + x, seg.y + y];
break;
case "S":
p2 = getControlPointFromPrevious(i, [x, y], list, prevX, prevY);
p3 = [seg.x2, seg.y2];
to = [seg.x, seg.y];
break;
case "s":
p2 = getControlPointFromPrevious(i, [x, y], list, prevX, prevY);
p3 = [seg.x2 + x, seg.y2 + y];
to = [seg.x + x, seg.y + y];
break;
case "Q":
pf = [seg.x1, seg.y1];
p2 = toCubic([x, y], pf);
p3 = toCubic([seg.x, seg.y], pf);
to = [seg.x, seg.y];
break;
case "q":
pf = [seg.x1 + x, seg.y1 + y];
p2 = toCubic([x, y], pf);
p3 = toCubic([x + seg.x, y + seg.y], pf);
to = [seg.x + x, seg.y + y];
break;
case "T":
p2 = getControlPointFromPrevious(i, [x, y], list, prevX, prevY);
p2 = toCubic([x, y], pf);
p3 = toCubic([seg.x, seg.y], pf);
to = [seg.x, seg.y];
break;
case "t":
pf = getControlPointFromPrevious(i, [x, y], list, prevX, prevY);
p2 = toCubic([x, y], pf);
p3 = toCubic([x + seg.x, y + seg.y], pf);
to = [seg.x + x, seg.y + y];
break;
// TODO: A,a
}
if ("sScCqQtT".indexOf(cmd) >= 0) {
prevX = x;
prevY = y;
}
if ("MLCSQT".indexOf(cmd) >= 0) {
x = seg.x;
y = seg.y;
} else if ("mlcsqt".indexOf(cmd) >= 0) {
x = seg.x + x;
y = seg.y + y;
} else if ("zZ".indexOf(cmd) < 0) {
x = newX;
y = newY;
}
if ("CSQTcsqt".indexOf(cmd) >= 0) {
minX = Math.min(minX, x, p2[0], p3[0], to[0]);
maxX = Math.max(maxX, x, p2[0], p3[0], to[0]);
minY = Math.min(minY, y, p2[1], p3[1], to[1]);
maxY = Math.max(maxY, y, p2[1], p3[1], to[1]);
} else {
minX = Math.min(minX, x);
maxX = Math.max(maxX, x);
minY = Math.min(minY, y);
maxY = Math.max(maxY, y);
}
}
boundingBox = [
minX,
minY,
maxX - minX,
maxY - minY
];
} else if (nodeIs(node, "svg")) {
viewBox = node.getAttribute("viewBox");
if (viewBox) {
vb = parseFloats(viewBox);
}
return [
pf(node.getAttribute("x")) || (vb && vb[0]) || 0,
pf(node.getAttribute("y")) || (vb && vb[1]) || 0,
pf(node.getAttribute("width")) || (vb && vb[2]) || 0,
pf(node.getAttribute("height")) || (vb && vb[3]) || 0
];
} else if (nodeIs(node, "g")) {
boundingBox = [0, 0, 0, 0];
forEachChild(node, function (i, node) {
var nodeBox = getUntransformedBBox(node);
boundingBox = [
Math.min(boundingBox[0], nodeBox[0]),
Math.min(boundingBox[1], nodeBox[1]),
Math.max(boundingBox[0] + boundingBox[2], nodeBox[0] + nodeBox[2]) - Math.min(boundingBox[0], nodeBox[0]),
Math.max(boundingBox[1] + boundingBox[3], nodeBox[1] + nodeBox[3]) - Math.min(boundingBox[1], nodeBox[1])
];
});
} else if (nodeIs(node, "marker")) {
viewBox = node.getAttribute("viewBox");
if (viewBox) {
vb = parseFloats(viewBox);
}
return [
(vb && vb[0]) || 0,
(vb && vb[1]) || 0,
(vb && vb[2]) || pf(node.getAttribute("marker-width")) || 0,
(vb && vb[3]) || pf(node.getAttribute("marker-height")) || 0
];
} else if (nodeIs(node, "pattern")) {
return [
pf(node.getAttribute("x")) || 0,
pf(node.getAttribute("y")) || 0,
pf(node.getAttribute("width")) || 0,
pf(node.getAttribute("height")) || 0
]
} else {
// TODO: check if there are other possible coordinate attributes
var x1 = pf(node.getAttribute("x1")) || pf(node.getAttribute("x")) || pf((node.getAttribute("cx")) - pf(node.getAttribute("r"))) || 0;
var x2 = pf(node.getAttribute("x2")) || (x1 + pf(node.getAttribute("width"))) || (pf(node.getAttribute("cx")) + pf(node.getAttribute("r"))) || 0;
var y1 = pf(node.getAttribute("y1")) || pf(node.getAttribute("y")) || (pf(node.getAttribute("cy")) - pf(node.getAttribute("r"))) || 0;
var y2 = pf(node.getAttribute("y2")) || (y1 + pf(node.getAttribute("height"))) || (pf(node.getAttribute("cy")) + pf(node.getAttribute("r"))) || 0;
boundingBox = [
Math.min(x1, x2),
Math.min(y1, y2),
Math.max(x1, x2) - Math.min(x1, x2),
Math.max(y1, y2) - Math.min(y1, y2)
];
}
if (!nodeIs(node, "marker,svg,g")) {
// add line-width
var lineWidth = getAttribute(node, "stroke-width") || 1;
var miterLimit = getAttribute(node, "stroke-miterlimit");
// miterLength / lineWidth = 1 / sin(phi / 2)
miterLimit && (lineWidth *= 0.5 / (Math.sin(Math.PI / 12)));
return [
boundingBox[0] - lineWidth,
boundingBox[1] - lineWidth,
boundingBox[2] + 2 * lineWidth,
boundingBox[3] + 2 * lineWidth
];
}
return boundingBox;
};
// transforms a bounding box and returns a new rect that contains it
var transformBBox = function (box, matrix) {
var bl = multVecMatrix([box[0], box[1]], matrix);
var br = multVecMatrix([box[0] + box[2], box[1]], matrix);
var tl = multVecMatrix([box[0], box[1] + box[3]], matrix);
var tr = multVecMatrix([box[0] + box[2], box[1] + box[3]], matrix);
var bottom = Math.min(bl[1], br[1], tl[1], tr[1]);
var left = Math.min(bl[0], br[0], tl[0], tr[0]);
var top = Math.max(bl[1], br[1], tl[1], tr[1]);
var right = Math.max(bl[0], br[0], tl[0], tr[0]);
return [
left,
bottom,
right - left,
top - bottom
]
};
// draws a polygon
var polygon = function (node, tfMatrix, colorMode, gradient, gradientMatrix, svgIdPrefix, attributeState) {
var points = parsePointsString(node.getAttribute("points"));
var lines = [{op: "m", c: multVecMatrix(points[0], tfMatrix)}];
var i, angle;
for (i = 1; i < points.length; i++) {
var p = points[i];
var to = multVecMatrix(p, tfMatrix);
lines.push({op: "l", c: to});
}
lines.push({op: "h"});
_pdf.path(lines, colorMode, gradient, gradientMatrix);
var markerEnd = node.getAttribute("marker-end"),
markerStart = node.getAttribute("marker-start"),
markerMid = node.getAttribute("marker-mid");
if (markerStart || markerMid || markerEnd) {
var length = lines.length;
var markers = new MarkerList();
if (markerStart) {
markerStart = svgIdPrefix.get() + iriReference.exec(markerStart)[1];
angle = addVectors(getDirectionVector(lines[0].c, lines[1].c), getDirectionVector(lines[length - 2].c, lines[0].c));
markers.addMarker(new Marker(markerStart, lines[0].c, Math.atan2(angle[1], angle[0])));
}
if (markerMid) {
markerMid = svgIdPrefix.get() + iriReference.exec(markerMid)[1];
var prevAngle = getDirectionVector(lines[0].c, lines[1].c), curAngle;
for (i = 1; i < lines.length - 2; i++) {
curAngle = getDirectionVector(lines[i].c, lines[i + 1].c);
angle = addVectors(prevAngle, curAngle);
markers.addMarker(new Marker(markerMid, lines[i].c, Math.atan2(angle[1], angle[0])));
prevAngle = curAngle;
}
curAngle = getDirectionVector(lines[length - 2].c, lines[0].c);
angle = addVectors(prevAngle, curAngle);
markers.addMarker(new Marker(markerMid, lines[length - 2].c, Math.atan2(angle[1], angle[0])));
}
if (markerEnd) {
markerEnd = svgIdPrefix.get() + iriReference.exec(markerEnd)[1];
angle = addVectors(getDirectionVector(lines[0].c, lines[1].c), getDirectionVector(lines[length - 2].c, lines[0].c));
markers.addMarker(new Marker(markerEnd, lines[0].c, Math.atan2(angle[1], angle[0])));
}
markers.draw(_pdf.unitMatrix, attributeState);
}
};
// draws an image
var image = function (node, svgIdPrefix) {
var imageUrl = node.getAttribute("xlink:href") || node.getAttribute("href");
var svgDataUrlHeader = "data:image/svg+xml;base64,";
if (imageUrl.indexOf(svgDataUrlHeader) === 0) {
var svgText = atob(imageUrl.substr(svgDataUrlHeader.length));
var parser = new DOMParser();
var svgElement = parser.parseFromString(svgText, "image/svg+xml").firstElementChild;
renderNode(svgElement, _pdf.unitMatrix, {}, svgIdPrefix, false, AttributeState.default());
return;
}
var width = parseFloat(node.getAttribute("width")),
height = parseFloat(node.getAttribute("height")),
x = parseFloat(node.getAttribute("x") || 0),
y = parseFloat(node.getAttribute("y") || 0);
try {
_pdf.addImage(imageUrl,
"jpeg",
x,
y,
width,
height
);
} catch (e) {
(typeof console === "object"
&& console.warn
&& console.warn('svg2pdfjs: Images with external resource link are not supported! ("' + imageUrl + '")'));
}
};
// draws a path
var path = function (node, tfMatrix, svgIdPrefix, colorMode, gradient, gradientMatrix, attributeState) {
var list = getPathSegList(node);
var markerEnd = node.getAttribute("marker-end"),
markerStart = node.getAttribute("marker-start"),
markerMid = node.getAttribute("marker-mid");
markerEnd && (markerEnd = svgIdPrefix.get() + iriReference.exec(markerEnd)[1]);
markerStart && (markerStart = svgIdPrefix.get() + iriReference.exec(markerStart)[1]);
markerMid && (markerMid = svgIdPrefix.get() + iriReference.exec(markerMid)[1]);
var getLinesFromPath = function (pathSegList, tfMatrix) {
var x = 0, y = 0;
var x0 = x, y0 = y;
var prevX, prevY, newX, newY;
var to, p, p2, p3;
var lines = [];
var markers = new MarkerList();
var op;
var prevAngle = [0, 0], curAngle;
for (var i = 0; i < list.numberOfItems; i++) {
var seg = list.getItem(i);
var cmd = seg.pathSegTypeAsLetter;
switch (cmd) {
case "M":
x0 = x;
y0 = y;
to = [seg.x, seg.y];
op = "m";
break;
case "m":
x0 = x;
y0 = y;
to = [seg.x + x, seg.y + y];
op = "m";
break;
case "L":
to = [seg.x, seg.y];
op = "l";
break;
case "l":
to = [seg.x + x, seg.y + y];
op = "l";
break;
case "H":
to = [seg.x, y];
op = "l";
newX = seg.x;
newY = y;
break;
case "h":
to = [seg.x + x, y];
op = "l";
newX = seg.x + x;
newY = y;
break;
case "V":
to = [x, seg.y];
op = "l";
newX = x;
newY = seg.y;
break;
case "v":
to = [x, seg.y + y];
op = "l";
newX = x;
newY = seg.y + y;
break;
case "C":
p2 = [seg.x1, seg.y1];
p3 = [seg.x2, seg.y2];
to = [seg.x, seg.y];
break;
case "c":
p2 = [seg.x1 + x, seg.y1 + y];
p3 = [seg.x2 + x, seg.y2 + y];
to = [seg.x + x, seg.y + y];
break;
case "S":
p2 = getControlPointFromPrevious(i, [x, y], list, prevX, prevY);
p3 = [seg.x2, seg.y2];
to = [seg.x, seg.y];
break;
case "s":
p2 = getControlPointFromPrevious(i, [x, y], list, prevX, prevY);
p3 = [seg.x2 + x, seg.y2 + y];
to = [seg.x + x, seg.y + y];
break;
case "Q":
p = [seg.x1, seg.y1];
p2 = toCubic([x, y], p);
p3 = toCubic([seg.x, seg.y], p);
to = [seg.x, seg.y];
break;
case "q":
p = [seg.x1 + x, seg.y1 + y];
p2 = toCubic([x, y], p);
p3 = toCubic([x + seg.x, y + seg.y], p);
to = [seg.x + x, seg.y + y];
break;
case "T":
p2 = getControlPointFromPrevious(i, [x, y], list, prevX, prevY);
p2 = toCubic([x, y], p);
p3 = toCubic([seg.x, seg.y], p);
to = [seg.x, seg.y];
break;
case "t":
p = getControlPointFromPrevious(i, [x, y], list, prevX, prevY);
p2 = toCubic([x, y], p);
p3 = toCubic([x + seg.x, y + seg.y], p);
to = [seg.x + x, seg.y + y];
break;
// TODO: A,a
case "Z":
case "z":
x = x0;
y = y0;
lines.push({op: "h"});
break;
}
var hasStartMarker = markerStart
&& (i === 1
|| ("mM".indexOf(cmd) < 0 && "mM".indexOf(list.getItem(i - 1).pathSegTypeAsLetter) >= 0));
var hasEndMarker = markerEnd
&& (i === list.numberOfItems - 1
|| ("mM".indexOf(cmd) < 0 && "mM".indexOf(list.getItem(i + 1).pathSegTypeAsLetter) >= 0));
var hasMidMarker = markerMid
&& i > 0
&& !(i === 1 && "mM".indexOf(list.getItem(i - 1).pathSegTypeAsLetter) >= 0);
if ("sScCqQtT".indexOf(cmd) >= 0) {
hasStartMarker && markers.addMarker(new Marker(markerStart, [x, y], getAngle([x, y], p2)));
hasEndMarker && markers.addMarker(new Marker(markerEnd, to, getAngle(p3, to)));
if (hasMidMarker) {
curAngle = getDirectionVector([x, y], p2);
curAngle = "mM".indexOf(list.getItem(i - 1).pathSegTypeAsLetter) >= 0 ?
curAngle : normalize(addVectors(prevAngle, curAngle));
markers.addMarker(new Marker(markerMid, [x, y], Math.atan2(curAngle[1], curAngle[0])));
}
prevAngle = getDirectionVector(p3, to);
prevX = x;
prevY = y;
p2 = multVecMatrix(p2, tfMatrix);
p3 = multVecMatrix(p3, tfMatrix);
p = multVecMatrix(to, tfMatrix);
lines.push({
op: "c", c: [
p2[0], p2[1],
p3[0], p3[1],
p[0], p[1]
]
});
} else if ("lLhHvVmM".indexOf(cmd) >= 0) {
curAngle = getDirectionVector([x, y], to);
hasStartMarker && markers.addMarker(new Marker(markerStart, [x, y], Math.atan2(curAngle[1], curAngle[0])));
hasEndMarker && markers.addMarker(new Marker(markerEnd, to, Math.atan2(curAngle[1], curAngle[0])));
if (hasMidMarker) {
var angle = "mM".indexOf(cmd) >= 0 ?
prevAngle : "mM".indexOf(list.getItem(i - 1).pathSegTypeAsLetter) >= 0 ?
curAngle : normalize(addVectors(prevAngle, curAngle));
markers.addMarker(new Marker(markerMid, [x, y], Math.atan2(angle[1], angle[0])));
}
prevAngle = curAngle;
p = multVecMatrix(to, tfMatrix);
lines.push({op: op, c: p});
}
if ("MLCSQT".indexOf(cmd) >= 0) {
x = seg.x;
y = seg.y;
} else if ("mlcsqt".indexOf(cmd) >= 0) {
x = seg.x + x;
y = seg.y + y;
} else if ("zZ".indexOf(cmd) < 0) {
x = newX;
y = newY;
}
}
return {lines: lines, markers: markers};
};
var lines = getLinesFromPath(list, tfMatrix);
if (lines.lines.length > 0) {
_pdf.path(lines.lines, colorMode, gradient, gradientMatrix);
}
if (markerEnd || markerStart || markerMid) {
lines.markers.draw(tfMatrix, attributeState);
}
};
// draws the element referenced by a use node, makes use of pdf's XObjects/FormObjects so nodes are only written once
// to the pdf document. This highly reduces the file size and computation time.
var use = function (node, tfMatrix, svgIdPrefix) {
var url = (node.getAttribute("href") || node.getAttribute("xlink:href"));
// just in case someone has the idea to use empty use-tags, wtf???
if (!url)
return;
// get the size of the referenced form object (to apply the correct scaling)
var formObject = _pdf.getFormObject(svgIdPrefix.get() + url.substring(1));
// scale and position it right
var x = node.getAttribute("x") || 0;
var y = node.getAttribute("y") || 0;
var width = node.getAttribute("width") || formObject.width;
var height = node.getAttribute("height") || formObject.height;
var t = new _pdf.Matrix(width / formObject.width || 0, 0, 0, height / formObject.height || 0, x, y);
t = _pdf.matrixMult(t, tfMatrix);
_pdf.doFormObject(svgIdPrefix.get() + url.substring(1), t);
};
// draws a line
var line = function (node, tfMatrix, svgIdPrefix, attributeState) {
var p1 = multVecMatrix([parseFloat(node.getAttribute('x1') || 0), parseFloat(node.getAttribute('y1') || 0)], tfMatrix);
var p2 = multVecMatrix([parseFloat(node.getAttribute('x2') || 0), parseFloat(node.getAttribute('y2') || 0)], tfMatrix);
if (attributeState.strokeMode === "D"){
_pdf.line(p1[0], p1[1], p2[0], p2[1]);
}
var markerStart = node.getAttribute("marker-start"),
markerEnd = node.getAttribute("marker-end");
if (markerStart || markerEnd) {
var markers = new MarkerList();
var angle = getAngle(p1, p2);
if (markerStart) {
markers.addMarker(new Marker(svgIdPrefix.get() + iriReference.exec(markerStart)[1], p1, angle));
}
if (markerEnd) {
markers.addMarker(new Marker(svgIdPrefix.get() + iriReference.exec(markerEnd)[1], p2, angle));
}
markers.draw(_pdf.unitMatrix, attributeState);
}
};
// draws a rect
var rect = function (node, colorMode, gradient, gradientMatrix) {
_pdf.roundedRect(
parseFloat(node.getAttribute('x')) || 0,
parseFloat(node.getAttribute('y')) || 0,
parseFloat(node.getAttribute('width')),
parseFloat(node.getAttribute('height')),
parseFloat(node.getAttribute('rx')) || 0,
parseFloat(node.getAttribute('ry')) || 0,
colorMode,
gradient,
gradientMatrix
);
};
// draws an ellipse
var ellipse = function (node, colorMode, gradient, gradientMatrix) {
_pdf.ellipse(
parseFloat(node.getAttribute('cx')) || 0,
parseFloat(node.getAttribute('cy')) || 0,
parseFloat(node.getAttribute('rx')),
parseFloat(node.getAttribute('ry')),
colorMode,
gradient,
gradientMatrix
);
};
// draws a circle
var circle = function (node, colorMode, gradient, gradientMatrix) {
var radius = parseFloat(node.getAttribute('r')) || 0;
_pdf.ellipse(
parseFloat(node.getAttribute('cx')) || 0,
parseFloat(node.getAttribute('cy')) || 0,
radius,
radius,
colorMode,
gradient,
gradientMatrix
);
};
// applies text transformations to a text node
var transformText = function (node, text) {
var textTransform = getAttribute(node, "text-transform");
switch (textTransform) {
case "uppercase": return text.toUpperCase();
case "lowercase": return text.toLowerCase();
default: return text;
// TODO: capitalize, full-width
}
};
/**
* Canvas text measuring is a lot faster than svg measuring. However, it is inaccurate for some fonts. So test each
* font once and decide if canvas is accurate enough.
* @param {string} text
* @param {string} fontFamily
* @returns {function(string, string, string, string, string)}
*/
var getMeasureFunction = (function getMeasureFunction() {
/**
* @param {string} text
* @param {string} fontFamily
* @param {string} fontSize
* @param {string} fontStyle
* @param {string} fontWeight
*/
function canvasTextMeasure(text, fontFamily, fontSize, fontStyle, fontWeight) {
var canvas = document.createElement("canvas");
var context = canvas.getContext("2d");
context.font = [fontStyle, fontWeight, fontSize, fontFamily].join(" ");
return context.measureText(text).width;
}
/**
* @param {string} text
* @param {string} fontFamily
* @param {string} fontSize
* @param {string} fontStyle
* @param {string} fontWeight
*/
function svgTextMeasure(text, fontFamily, fontSize, fontStyle, fontWeight) {
var textNode = document.createElementNS(svgNamespaceURI, "text");
textNode.setAttribute("font-family", fontFamily);
textNode.setAttribute("font-size", fontSize);
textNode.setAttribute("font-style", fontStyle);
textNode.setAttribute("font-weight", fontWeight);
textNode.appendChild(document.createTextNode(text));
var svg = document.createElementNS(svgNamespaceURI, "svg");
svg.appendChild(textNode);
svg.setAttribute("visibility", "hidden");
document.body.appendChild(svg);
var width = textNode.getBBox().width;
document.body.removeChild(svg);
return width;
}
var testString = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ 0123456789!\"$%&/()=?'\\+*-_.:,;^}][{#~|<>";
var epsilon = 0.1;
var measureMethods = {};
return function getMeasureFunction(fontFamily) {
var method = measureMethods[fontFamily];
if (!method) {
var fontSize = "16px";
var fontStyle = "normal";
var fontWeight = "normal";
var canvasWidth = canvasTextMeasure(testString, fontFamily, fontSize, fontStyle, fontWeight);
var svgWidth = svgTextMeasure(testString, fontFamily, fontSize, fontStyle, fontWeight);
method = Math.abs(canvasWidth - svgWidth) < epsilon ? canvasTextMeasure : svgTextMeasure;
measureMethods[fontFamily] = method;
}
return method;
}
})();
/**
* @param {string} text
* @param {AttributeState} attributeState
* @returns {number}
*/
function measureTextWidth(text, attributeState) {
if (text.length === 0) {
return 0;
}
var fontFamily = attributeState.fontFamily;
var measure = getMeasureFunction(fontFamily);
return measure(text, attributeState.fontFamily, attributeState.fontSize + "px", attributeState.fontStyle, attributeState.fontWeight);
}
/**
* @param {string} text
* @param {AttributeState} attributeState
* @returns {number}
*/
function getTextOffset(text, attributeState) {
var textAnchor = attributeState.textAnchor;
if (textAnchor === "start") {
return 0;
}
var width = measureTextWidth(text, attributeState);
var xOffset = 0;
switch (textAnchor) {
case "end":
xOffset = width;
break;
case "middle":
xOffset = width / 2;
break;
}
return xOffset;
}
/**
* @param {string} textAnchor
* @param {number} originX
* @param {number} originY
* @constructor
*/
function TextChunk(textAnchor, originX, originY) {
this.texts = [];
this.tSpans = [];
this.textAnchor = textAnchor;
this.originX = originX;
this.originY = originY;
}
/**
* @param {SVGElement} tSpan
* @param {string} text
*/
TextChunk.prototype.add = function(tSpan, text) {
this.texts.push(text);
this.tSpans.push(tSpan);
};
/**
* Outputs the chunk to pdf.
* @param {jsPDF.Matrix} transform
* @param {AttributeState} attributeState
* @returns {[number, number]} The last current text position.
*/
TextChunk.prototype.put = function (transform, attributeState) {
var i, tSpan;
var xs = [], ys = [], attributeStates = [];
var currentTextX = this.originX, currentTextY = this.originY;
var minX = currentTextX, maxX = currentTextX;
for (i = 0; i < this.tSpans.length; i++) {
tSpan = this.tSpans[i];
var tSpanAttributeState = attributeStates[i] = attributeState.clone();
var tSpanColor = getAttribute(tSpan, "fill");
setTextProperties(tSpan, tSpanColor && new RGBColor(tSpanColor), tSpanAttributeState);
var x = currentTextX;
var y = currentTextY;
var tSpanDx = tSpan.getAttribute("dx");
if (tSpanDx !== null) {
x += toPixels(tSpanDx, tSpanAttributeState.fontSize);
}
var tSpanDy = tSpan.getAttribute("dy");
if (tSpanDy !== null) {
y += toPixels(tSpanDy, tSpanAttributeState.fontSize);
}
xs[i] = x;
ys[i] = y;
// add an additional "." (which has approximately the same size as a space character) in order to put
// some space between the tSpans (I can't find this in the spec but all browsers do it)
currentTextX = x + measureTextWidth(this.texts[i], tSpanAttributeState) + measureTextWidth(".", tSpanAttributeState);
currentTextY = y;
minX = Math.min(minX, x);
maxX = Math.max(maxX, currentTextX);
}
var textOffset;
switch (this.textAnchor) {
case "start": textOffset = 0; break;
case "middle": textOffset = (maxX - minX) / 2; break;
case "end": textOffset = maxX - minX; break;
}
for (i = 0; i < this.tSpans.length; i++) {
tSpan = this.tSpans[i];
var tSpanVisibility = getAttribute(tSpan, "visibility") || attributeState.visibility;
if (tSpanVisibility === "hidden") {
continue;
}
_pdf.saveGraphicsState();
putTextProperties(attributeStates[i], attributeState);
_pdf.text(xs[i] - textOffset, ys[i], this.texts[i], void 0, transform);
_pdf.restoreGraphicsState();
}
return [currentTextX, currentTextY];
};
/**
* Convert em, px and bare number attributes to pixel values
* @param {string} value
* @param {number} pdfFontSize
*/
function toPixels(value, pdfFontSize) {
var match;
// em
match = value && value.toString().match(/^([\-0-9.]+)em$/);
if (match) {
return parseFloat(match[1]) * pdfFontSize;
}
// pixels
match = value && value.toString().match(/^([\-0-9.]+)(px|)$/);
if (match) {
return parseFloat(match[1]);
}
return 0;
}
/**
* Draws a text element and its tspan children.
* @param {SVGElement} node
* @param {jsPDF.Matrix} tfMatrix
* @param {boolean} hasFillColor
* @param {RGBColor} fillRGB
* @param {AttributeState} attributeState
*/
var text = function (node, tfMatrix, hasFillColor, fillRGB, attributeState) {
_pdf.saveGraphicsState();
var dx, dy, xOffset = 0;
var pdfFontSize = _pdf.getFontSize();
var textX = toPixels(node.getAttribute('x'), pdfFontSize);
var textY = toPixels(node.getAttribute('y'), pdfFontSize);
dx = toPixels(node.getAttribute("dx"), pdfFontSize);
dy = toPixels(node.getAttribute("dy"), pdfFontSize);
var visibility = attributeState.visibility;
// when there are no tspans draw the text directly
if (node.childElementCount === 0) {
var transformedText = transformText(node, removeNewlinesAndTrim(node.textContent));
xOffset = getTextOffset(transformedText, attributeState);
if (visibility === "visible") {
_pdf.text(
textX + dx - xOffset,
textY + dy,
transformedText,
void 0,
tfMatrix
);
}
} else {
// otherwise loop over tspans and position each relative to the previous one
var currentTextSegment = new TextChunk(attributeState.textAnchor, textX + dx, textY + dy);
forEachChild(node, function (i, tSpan) {
if (!tSpan.textContent || nodeIs(tSpan, 'title,desc,metadata')) {
return;
}
// TODO: space between tspans
var lastPositions;
var tSpanAbsX = tSpan.getAttribute("x");
if (tSpanAbsX !== null) {
var x = toPixels(tSpanAbsX, pdfFontSize);
lastPositions = currentTextSegment.put(tfMatrix, attributeState);
currentTextSegment = new TextChunk(tSpan.getAttribute("text-anchor") || attributeState.textAnchor, x, lastPositions[1]);
}
var tSpanAbsY = tSpan.getAttribute("y");
if (tSpanAbsY !== null) {
var y = toPixels(tSpanAbsY, pdfFontSize);
lastPositions = currentTextSegment.put(tfMatrix, attributeState);
currentTextSegment = new TextChunk(tSpan.getAttribute("text-anchor") || attributeState.textAnchor, lastPositions[0], y);
}
transformedText = transformText(node, removeNewlinesAndTrim(tSpan.textContent));
currentTextSegment.add(tSpan, transformedText);
});
currentTextSegment.put(tfMatrix, attributeState);
}
_pdf.restoreGraphicsState();
};
// As defs elements are allowed to appear after they are referenced, we search for them first
var findAndRenderDefs = function (node, tfMatrix, defs, svgIdPrefix, withinDefs, attributeState) {
forEachChild(node, function (i, child) {
if (child.tagName.toLowerCase() === "defs") {
renderNode(child, tfMatrix, defs, svgIdPrefix, withinDefs, attributeState);
// prevent defs from being evaluated twice // TODO: make this better
child.parentNode.removeChild(child);
}
});
};
// processes a svg node
var svg = function (node, tfMatrix, defs, svgIdPrefix, withinDefs, attributeState) {
// create a new prefix and clone the defs, as defs within the svg should not be visible outside
var newSvgIdPrefix = svgIdPrefix.nextChild();
var newDefs = cloneDefs(defs);
findAndRenderDefs(node, tfMatrix, newDefs, newSvgIdPrefix, withinDefs, attributeState);
renderChildren(node, tfMatrix, newDefs, newSvgIdPrefix, withinDefs, attributeState);
};
// renders all children of a node
var renderChildren = function (node, tfMatrix, defs, svgIdPrefix, withinDefs, attributeState) {
forEachChild(node, function (i, node) {
renderNode(node, tfMatrix, defs, svgIdPrefix, withinDefs, attributeState);
});
};
// adds a gradient to defs and the pdf document for later use, type is either "axial" or "radial"
// opacity is only supported rudimentary by averaging over all stops
// transforms are applied on use
var putGradient = function (node, type, coords, defs, svgIdPrefix) {
var colors = [];
var opacitySum = 0;
var hasOpacity = false;
var gState;
forEachChild(node, function (i, element) {
// since opacity gradients are hard to realize, average the opacity over the control points
if (element.tagName.toLowerCase() === "stop") {
var color = new RGBColor(getAttribute(element, "stop-color"));
colors.push({
offset: parseFloat(element.getAttribute("offset")),
color: [color.r, color.g, color.b]
});
var opacity = getAttribute(element, "stop-opacity");
if (opacity && opacity != 1) {
opacitySum += parseFloat(opacity);
hasOpacity = true;
}
}
});
if (hasOpacity) {
gState = new _pdf.GState({opacity: opacitySum / colors.length});
}
var pattern = new _pdf.ShadingPattern(type, coords, colors, gState);
var id = svgIdPrefix.get() + node.getAttribute("id");
_pdf.addShadingPattern(id, pattern);
defs[id] = node;
};
var pattern = function (node, defs, svgIdPrefix, attributeState) {
var id = svgIdPrefix.get() + node.getAttribute("id");
defs[id] = node;
// the transformations directly at the node are written to the pattern transformation matrix
var bBox = getUntransformedBBox(node);
var pattern = new _pdf.TilingPattern([bBox[0], bBox[1], bBox[0] + bBox[2], bBox[1] + bBox[3]], bBox[2], bBox[3],
null, computeNodeTransform(node));
_pdf.beginTilingPattern(pattern);
// continue without transformation
renderChildren(node, _pdf.unitMatrix, defs, svgIdPrefix, false, attributeState);
_pdf.endTilingPattern(id, pattern);
};
function setTextProperties(node, fillRGB, attributeState) {
var fontFamily = getAttribute(node, "font-family");
if (fontFamily) {
attributeState.fontFamily = fontFamily;
}
if (fillRGB && fillRGB.ok) {
attributeState.fill = fillRGB;
}
var fontWeight = getAttribute(node, "font-weight");
if (fontWeight) {
attributeState.fontWeight = fontWeight;
}
var fontStyle = getAttribute(node, "font-style");
if (fontStyle) {
attributeState.fontStyle = fontStyle;
}
var fontSize = getAttribute(node, "font-size");
if (fontSize) {
attributeState.fontSize = parseFloat(fontSize);
}
var textAnchor = getAttribute(node, "text-anchor");
if (textAnchor) {
attributeState.textAnchor = textAnchor;
}
}
/**
* @param {AttributeState} attributeState
* @param {AttributeState} parentAttributeState
*/
function putTextProperties(attributeState, parentAttributeState) {
if (attributeState.fontFamily !== parentAttributeState.fontFamily) {
_pdf.setFont(attributeState.fontFamily);
}
if (attributeState.fill !== parentAttributeState.fill && attributeState.fill.ok) {
var fillRGB = attributeState.fill;
_pdf.setTextColor(fillRGB.r, fillRGB.g, fillRGB.b);
}
var fontType = "";
if (attributeState.fontWeight !== parentAttributeState.fontWeight && attributeState.fontWeight === "bold") {
fontType = "bold";
}
if (attributeState.fontStyle !== parentAttributeState.fontStyle && attributeState.fontStyle === "italic") {
fontType += "italic";
}
if (fontType !== "") {
_pdf.setFontType(fontType);
}
if (attributeState.fontSize !== parentAttributeState.fontSize) {
_pdf.setFontSize(attributeState.fontSize);
}
}
/**
* Renders a svg node.
* @param node The svg element
* @param contextTransform The current transformation matrix
* @param defs The defs map holding all svg nodes that can be referenced
* @param svgIdPrefix The current id prefix
* @param withinDefs True iff we are top-level within a defs node, so the target can be switched to an pdf form object
* @param {AttributeState} attributeState Keeps track of parent attributes that are inherited automatically
*/
var renderNode = function (node, contextTransform, defs, svgIdPrefix, withinDefs, attributeState) {
var parentAttributeState = attributeState;
attributeState = attributeState.clone();
if (getAttribute(node, "display") === "none") {
return;
}
var visibility = attributeState.visibility = getAttribute(node, "visibility") || attributeState.visibility;
if (visibility === "hidden" && !nodeIs(node, "svg,g,marker,a,pattern,defs,text")) {
return;
}
var tfMatrix,
hasFillColor = false,
fillRGB = null,
fillMode = "inherit",
strokeMode = "inherit",
fillUrl = null,
fillData = null,
bBox;
//
// Decide about the render target and set the correct transformation
//
// if we are within a defs node, start a new pdf form object and draw this node and all children on that instead
// of the top-level page
var targetIsFormObject = withinDefs && !nodeIs(node, "lineargradient,radialgradient,pattern");
if (targetIsFormObject) {
// the transformations directly at the node are written to the pdf form object transformation matrix
tfMatrix = computeNodeTransform(node);
bBox = getUntransformedBBox(node);
_pdf.beginFormObject(bBox[0], bBox[1], bBox[2], bBox[3], tfMatrix);
// continue without transformation and set withinDefs to false to prevent child nodes from starting new form objects
tfMatrix = _pdf.unitMatrix;
withinDefs = false;
} else {
tfMatrix = _pdf.matrixMult(computeNodeTransform(node), contextTransform);
_pdf.saveGraphicsState();
}
//
// extract fill and stroke mode
//
// fill mode
if (nodeIs(node, "g,path,rect,text,ellipse,line,circle,polygon")) {
function setDefaultColor() {
fillRGB = new RGBColor("rgb(0, 0, 0)");
hasFillColor = true;
fillMode = "F";
}
var fillColor = getAttribute(node, "fill");
if (fillColor) {
var url = iriReference.exec(fillColor);
if (url) {
// probably a gradient (or something unsupported)
fillUrl = svgIdPrefix.get() + url[1];
var fill = getFromDefs(fillUrl, defs);
if (fill && nodeIs(fill, "lineargradient,radialgradient")) {
// matrix to convert between gradient space and user space
// for "userSpaceOnUse" this is the current transformation: tfMatrix
// for "objectBoundingBox" or default, the gradient gets scaled and transformed to the bounding box
var gradientUnitsMatrix = tfMatrix;
if (!fill.hasAttribute("gradientUnits")
|| fill.getAttribute("gradientUnits").toLowerCase() === "objectboundingbox") {
bBox || (bBox = getUntransformedBBox(node));
gradientUnitsMatrix = new _pdf.Matrix(bBox[2], 0, 0, bBox[3], bBox[0], bBox[1]);
var nodeTransform = computeNodeTransform(node);
gradientUnitsMatrix = _pdf.matrixMult(gradientUnitsMatrix, nodeTransform);
}
// matrix that is applied to the gradient before any other transformations
var gradientTransform = parseTransform(fill.getAttribute("gradientTransform"));
fillData = _pdf.matrixMult(gradientTransform, gradientUnitsMatrix);
fillMode = "";
} else if (fill && nodeIs(fill, "pattern")) {
var fillBBox, y, width, height, x;
fillData = {};
var patternUnitsMatrix = _pdf.unitMatrix;
if (!fill.hasAttribute("patternUnits")
|| fill.getAttribute("patternUnits").toLowerCase() === "objectboundingbox") {
bBox || (bBox = getUntransformedBBox(node));
patternUnitsMatrix = new _pdf.Matrix(1, 0, 0, 1, bBox[0], bBox[1]);
// TODO: slightly inaccurate (rounding errors? line width bBoxes?)
fillBBox = getUntransformedBBox(fill);
x = fillBBox[0] * bBox[0];
y = fillBBox[1] * bBox[1];
width = fillBBox[2] * bBox[2];
height = fillBBox[3] * bBox[3];
fillData.boundingBox = [x, y, x + width, y + height];
fillData.xStep = width;
fillData.yStep = height;
}
var patternContentUnitsMatrix = _pdf.unitMatrix;
if (fill.hasAttribute("patternContentUnits")
&& fill.getAttribute("patternContentUnits").toLowerCase() === "objectboundingbox") {
bBox || (bBox = getUntransformedBBox(node));
patternContentUnitsMatrix = new _pdf.Matrix(bBox[2], 0, 0, bBox[3], 0, 0);
fillBBox = fillData.boundingBox || getUntransformedBBox(fill);
x = fillBBox[0] / bBox[0];
y = fillBBox[1] / bBox[1];
width = fillBBox[2] / bBox[2];
height = fillBBox[3] / bBox[3];
fillData.boundingBox = [x, y, x + width, y + height];
fillData.xStep = width;
fillData.yStep = height;
}
fillData.matrix = _pdf.matrixMult(
_pdf.matrixMult(patternContentUnitsMatrix, patternUnitsMatrix), tfMatrix);
fillMode = "F";
} else {
// unsupported fill argument -> fill black
fillUrl = fill = null;
setDefaultColor();
}
} else {
// plain color
fillRGB = parseColor(fillColor);
if (fillRGB.ok) {
hasFillColor = true;
fillMode = "F";
} else {
fillMode = "";
}
}
}
// opacity is realized via a pdf graphics state
var fillOpacity = 1.0, strokeOpacity = 1.0;
var nodeFillOpacity = getAttribute(node, "fill-opacity");
if (nodeFillOpacity) {
fillOpacity *= parseFloat(nodeFillOpacity);
}
if (fillRGB && typeof fillRGB.a === "number") {
fillOpacity *= fillRGB.a;
}
var nodeStrokeOpacity = getAttribute(node, "stroke-opacity");
if (nodeStrokeOpacity) {
strokeOpacity *= parseFloat(nodeStrokeOpacity);
}
if (strokeRGB && typeof strokeRGB.a === "number") {
strokeOpacity *= strokeRGB.a;
}
var nodeOpacity = getAttribute(node, "opacity");
if (nodeOpacity) {
var opacity = parseFloat(nodeOpacity);
strokeOpacity *= opacity;
fillOpacity *= opacity;
}
var hasFillOpacity = fillOpacity < 1.0;
var hasStrokeOpacity = strokeOpacity < 1.0;
if (hasFillOpacity || hasStrokeOpacity) {
var gState = {};
hasFillOpacity && (gState["opacity"] = fillOpacity);
hasStrokeOpacity && (gState["stroke-opacity"] = strokeOpacity);
_pdf.setGState(new _pdf.GState(gState));
}
}
if (nodeIs(node, "g,path,rect,ellipse,line,circle,polygon")) {
// text has no fill color, so don't apply it until here
if (hasFillColor) {
attributeState.fill = fillRGB;
_pdf.setFillColor(fillRGB.r, fillRGB.g, fillRGB.b);
}
// stroke mode
var strokeColor = getAttribute(node, "stroke");
if (strokeColor) {
var strokeWidth = getAttribute(node, "stroke-width");
if (strokeWidth !== void 0 && strokeWidth !== "") {
strokeWidth = Math.abs(parseFloat(strokeWidth));
attributeState.strokeWidth = strokeWidth;
_pdf.setLineWidth(strokeWidth);
}
var strokeRGB = new RGBColor(strokeColor);
if (strokeRGB.ok) {
attributeState.color = strokeRGB;
_pdf.setDrawColor(strokeRGB.r, strokeRGB.g, strokeRGB.b);
if (strokeWidth !== 0) {
// pdf spec states: "A line width of 0 denotes the thinnest line that can be rendered at device resolution:
// 1 device pixel wide". SVG, however, does not draw zero width lines.
strokeMode = "D";
} else {
strokeMode = "";
}
}
var lineCap = getAttribute(node, "stroke-linecap");
if (lineCap) {
_pdf.setLineCap(attributeState.strokeLinecap = lineCap);
}
var lineJoin = getAttribute(node, "stroke-linejoin");
if (lineJoin) {
_pdf.setLineJoin(attributeState.strokeLinejoin = lineJoin);
}
var dashArray = getAttribute(node, "stroke-dasharray");
if (dashArray) {
dashArray = parseFloats(dashArray);
var dashOffset = parseInt(getAttribute(node, "stroke-dashoffset")) || 0;
attributeState.strokeDasharray = dashArray;
attributeState.strokeDashoffset = dashOffset;
_pdf.setLineDashPattern(dashArray, dashOffset);
}
var miterLimit = getAttribute(node, "stroke-miterlimit");
if (miterLimit !== void 0 && miterLimit !== "") {
_pdf.setLineMiterLimit(attributeState.strokeMiterlimit = parseFloat(miterLimit));
}
}
}
// inherit fill and stroke mode if not specified at this node
fillMode = attributeState.fillMode = fillMode === "inherit" ? attributeState.fillMode : fillMode;
strokeMode = attributeState.strokeMode = strokeMode === "inherit" ? attributeState.strokeMode : strokeMode;
var colorMode = fillMode + strokeMode;
setTextProperties(node, fillRGB, attributeState);
putTextProperties(attributeState, parentAttributeState);
// do the actual drawing
switch (node.tagName.toLowerCase()) {
case 'svg':
svg(node, tfMatrix, defs, svgIdPrefix, withinDefs, attributeState);
break;
case 'g':
findAndRenderDefs(node, tfMatrix, defs, svgIdPrefix, withinDefs, attributeState);
case 'a':
case "marker":
renderChildren(node, tfMatrix, defs, svgIdPrefix, withinDefs, attributeState);
break;
case 'defs':
renderChildren(node, tfMatrix, defs, svgIdPrefix, true, attributeState);
break;
case 'use':
use(node, tfMatrix, svgIdPrefix);
break;
case 'line':
line(node, tfMatrix, svgIdPrefix, attributeState);
break;
case 'rect':
_pdf.setCurrentTransformationMatrix(tfMatrix);
rect(node, colorMode, fillUrl, fillData);
break;
case 'ellipse':
_pdf.setCurrentTransformationMatrix(tfMatrix);
ellipse(node, colorMode, fillUrl, fillData);
break;
case 'circle':
_pdf.setCurrentTransformationMatrix(tfMatrix);
circle(node, colorMode, fillUrl, fillData);
break;
case 'text':
text(node, tfMatrix, hasFillColor, fillRGB, attributeState);
break;
case 'path':
path(node, tfMatrix, svgIdPrefix, colorMode, fillUrl, fillData, attributeState);
break;
case 'polygon':
polygon(node, tfMatrix, colorMode, fillUrl, fillData, svgIdPrefix, attributeState);
break;
case 'image':
_pdf.setCurrentTransformationMatrix(tfMatrix);
image(node, svgIdPrefix);
break;
case "lineargradient":
putGradient(node, "axial", [
node.getAttribute("x1") || 0,
node.getAttribute("y1") || 0,
node.getAttribute("x2") || 1,
node.getAttribute("y2") || 0
], defs, svgIdPrefix);
break;
case "radialgradient":
putGradient(node, "radial", [
node.getAttribute("fx") || node.getAttribute("cx") || 0.5,
node.getAttribute("fy") || node.getAttribute("cy") || 0.5,
0,
node.getAttribute("cx") || 0.5,
node.getAttribute("cy") || 0.5,
node.getAttribute("r") || 0.5
], defs, svgIdPrefix);
break;
case "pattern":
pattern(node, defs, svgIdPrefix, attributeState);
break;
}
// close either the formObject or the graphics context
if (targetIsFormObject) {
_pdf.endFormObject(svgIdPrefix.get() + node.getAttribute("id"));
} else {
_pdf.restoreGraphicsState();
}
};
// the actual svgToPdf function (see above)
var svg2pdf = function (element, pdf, options) {
_pdf = pdf;
var k = options.scale || 1.0,
xOffset = options.xOffset || 0.0,
yOffset = options.yOffset || 0.0;
// set offsets and scale everything by k
_pdf.saveGraphicsState();
_pdf.setCurrentTransformationMatrix(new _pdf.Matrix(k, 0, 0, k, xOffset, yOffset));
// set default values that differ from pdf defaults
var attributeState = AttributeState.default();
_pdf.setLineWidth(attributeState.strokeWidth);
var fill = attributeState.fill;
_pdf.setFillColor(fill.r, fill.g, fill.b);
_pdf.setFont(attributeState.fontFamily);
_pdf.setFontSize(attributeState.fontSize);
// start rendering
renderNode(element.cloneNode(true), _pdf.unitMatrix, {}, new SvgPrefix(""), false, attributeState);
_pdf.restoreGraphicsState();
return _pdf;
};
if (typeof define === "function" && define.amd) {
define(["./rgbcolor", "SvgPath"], function (rgbcolor, svgpath) {
RGBColor = rgbcolor;
SvgPath = svgpath;
return svg2pdf;
});
} else if (typeof module !== "undefined" && module.exports) {
RGBColor = require("./rgbcolor.js");
SvgPath = require("SvgPath");
module.exports = svg2pdf;
} else {
SvgPath = global.SvgPath;
RGBColor = global.RGBColor;
global.svg2pdf = svg2pdf;
// for compatibility reasons
global.svgElementToPdf = svg2pdf;
}
return svg2pdf;
}(typeof self !== "undefined" && self || typeof window !== "undefined" && window || this));
},{"./rgbcolor.js":8,"SvgPath":1}]},{},[9])(9)
});
//# sourceMappingURL=svg2pdf.js.map