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
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
|
#Topic Paint
#Alias Paint_Reference
#Subtopic Overview
#Subtopic Subtopic
#Populate
##
##
#Class SkPaint
Paint controls options applied when drawing and measuring. Paint collects all
options outside of the Canvas_Clip and Canvas_Matrix.
Various options apply to text, strokes and fills, and images.
Some options may not be implemented on all platforms; in these cases, setting
the option has no effect. Some options are conveniences that duplicate Canvas
functionality; for instance, text size is identical to matrix scale.
Paint options are rarely exclusive; each option modifies a stage of the drawing
pipeline and multiple pipeline stages may be affected by a single Paint.
Paint collects effects and filters that describe single-pass and multiple-pass
algorithms that alter the drawing geometry, color, and transparency. For instance,
Paint does not directly implement dashing or blur, but contains the objects that do so.
The objects contained by Paint are opaque, and cannot be edited outside of the Paint
to affect it. The implementation is free to defer computations associated with the
Paint, or ignore them altogether. For instance, some GPU implementations draw all
Path geometries with Anti-aliasing, regardless of how SkPaint::kAntiAlias_Flag
is set in Paint.
Paint describes a single color, a single font, a single image quality, and so on.
Multiple colors are drawn either by using multiple paints or with objects like
Shader attached to Paint.
#Subtopic Related_Function
#Populate
##
#Subtopic Constant
#Populate
##
#Subtopic Class_or_Struct
#Populate
##
#Subtopic Constructor
#Populate
##
#Subtopic Operator
#Populate
##
#Subtopic Member_Function
#Populate
##
# ------------------------------------------------------------------------------
#Subtopic Initializers
#Line # constructors and initialization ##
#Method SkPaint()
#In Initializers
#Line # constructs with default values ##
Constructs Paint with default values.
#Table
#Legend
# attribute # default value ##
#Legend ##
# Anti-alias # false ##
# Blend_Mode # SkBlendMode::kSrcOver ##
# Color # SK_ColorBLACK ##
# Color_Alpha # 255 ##
# Color_Filter # nullptr ##
# Dither # false ##
# Draw_Looper # nullptr ##
# Fake_Bold # false ##
# Filter_Quality # kNone_SkFilterQuality ##
# Font_Embedded_Bitmaps # false ##
# Automatic_Hinting # false ##
# Full_Hinting_Spacing # false ##
# Hinting # kNormal_Hinting ##
# Image_Filter # nullptr ##
# LCD_Text # false ##
# Linear_Text # false ##
# Miter_Limit # 4 ##
# Mask_Filter # nullptr ##
# Path_Effect # nullptr ##
# Shader # nullptr ##
# Style # kFill_Style ##
# Text_Align # kLeft_Align ##
# Text_Encoding # kUTF8_TextEncoding ##
# Text_Scale_X # 1 ##
# Text_Size # 12 ##
# Text_Skew_X # 0 ##
# Typeface # nullptr ##
# Stroke_Cap # kButt_Cap ##
# Stroke_Join # kMiter_Join ##
# Stroke_Width # 0 ##
# Subpixel_Text # false ##
# Vertical_Text # false ##
#Table ##
The flags, text size, hinting, and miter limit may be overridden at compile time by defining
paint default values. The overrides may be included in "SkUserConfig.h" or predefined by the
build system.
#Return default initialized Paint ##
#Example
#ToDo mark this as no output ##
#Height 1
###$ $ redefine markup character so preprocessor commands appear normally
#ifndef SkUserConfig_DEFINED
#define SkUserConfig_DEFINED
#define SkPaintDefaults_Flags 0x01 // always enable antialiasing
#define SkPaintDefaults_TextSize 24.f // double default font size
#define SkPaintDefaults_Hinting 3 // use full hinting
#define SkPaintDefaults_MiterLimit 10.f // use HTML Canvas miter limit setting
#endif
$$$# # restore original markup character
##
##
#Method SkPaint(const SkPaint& paint)
#In Initializers
#Line # makes a shallow copy ##
Makes a shallow copy of Paint. Typeface, Path_Effect, Shader,
Mask_Filter, Color_Filter, Draw_Looper, and Image_Filter are shared
between the original paint and the copy. Objects containing Reference_Count increment
their references by one.
The referenced objects Path_Effect, Shader, Mask_Filter, Color_Filter,
Draw_Looper, and Image_Filter cannot be modified after they are created.
This prevents objects with Reference_Count from being modified once Paint refers to them.
#Param paint original to copy ##
#Return shallow copy of paint ##
#Example
#ToDo why is this double-spaced on Fiddle? ##
SkPaint paint1;
paint1.setColor(SK_ColorRED);
SkPaint paint2(paint1);
paint2.setColor(SK_ColorBLUE);
SkDebugf("SK_ColorRED %c= paint1.getColor()\n", SK_ColorRED == paint1.getColor() ? '=' : '!');
SkDebugf("SK_ColorBLUE %c= paint2.getColor()\n", SK_ColorBLUE == paint2.getColor() ? '=' : '!');
#StdOut
SK_ColorRED == paint1.getColor()
SK_ColorBLUE == paint2.getColor()
##
##
##
#Method SkPaint(SkPaint&& paint)
#In Initializers
#Line # moves paint without copying it ##
Implements a move constructor to avoid increasing the reference counts
of objects referenced by the paint.
After the call, paint is undefined, and can be safely destructed.
#Param paint original to move ##
#Return content of paint ##
#Example
SkPaint paint;
float intervals[] = { 5, 5 };
paint.setPathEffect(SkDashPathEffect::Make(intervals, SK_ARRAY_COUNT(intervals), 2.5f));
SkPaint dashed(std::move(paint));
SkDebugf("path effect unique: %s\n", dashed.getPathEffect()->unique() ? "true" : "false");
#StdOut
path effect unique: true
##
##
##
# ------------------------------------------------------------------------------
#Method void reset()
#In Initializers
#Line # sets to default values ##
Sets all Paint contents to their initial values. This is equivalent to replacing
Paint with the result of SkPaint().
#Example
SkPaint paint1, paint2;
paint1.setColor(SK_ColorRED);
paint1.reset();
SkDebugf("paint1 %c= paint2", paint1 == paint2 ? '=' : '!');
#StdOut
paint1 == paint2
##
##
##
#Subtopic Initializers ##
# ------------------------------------------------------------------------------
#Method ~SkPaint()
#Line # decreases Reference_Count of owned objects ##
Decreases Paint Reference_Count of owned objects: Typeface, Path_Effect, Shader,
Mask_Filter, Color_Filter, Draw_Looper, and Image_Filter. If the
objects containing Reference_Count go to zero, they are deleted.
#NoExample
##
##
# ------------------------------------------------------------------------------
#Subtopic Management
#Line # paint copying, moving, comparing ##
#Method SkPaint& operator=(const SkPaint& paint)
#In Management
#Line # makes a shallow copy ##
Makes a shallow copy of Paint. Typeface, Path_Effect, Shader,
Mask_Filter, Color_Filter, Draw_Looper, and Image_Filter are shared
between the original paint and the copy. Objects containing Reference_Count in the
prior destination are decreased by one, and the referenced objects are deleted if the
resulting count is zero. Objects containing Reference_Count in the parameter paint
are increased by one. paint is unmodified.
#Param paint original to copy ##
#Return content of paint ##
#Example
SkPaint paint1, paint2;
paint1.setColor(SK_ColorRED);
paint2 = paint1;
SkDebugf("SK_ColorRED %c= paint1.getColor()\n", SK_ColorRED == paint1.getColor() ? '=' : '!');
SkDebugf("SK_ColorRED %c= paint2.getColor()\n", SK_ColorRED == paint2.getColor() ? '=' : '!');
#StdOut
SK_ColorRED == paint1.getColor()
SK_ColorRED == paint2.getColor()
##
##
##
# ------------------------------------------------------------------------------
#Method SkPaint& operator=(SkPaint&& paint)
#In Management
#Line # moves paint without copying it ##
Moves the paint to avoid increasing the reference counts
of objects referenced by the paint parameter. Objects containing Reference_Count in the
prior destination are decreased by one; those objects are deleted if the resulting count
is zero.
After the call, paint is undefined, and can be safely destructed.
#Param paint original to move ##
#Return content of paint ##
#Example
SkPaint paint1, paint2;
paint1.setColor(SK_ColorRED);
paint2 = std::move(paint1);
SkDebugf("SK_ColorRED == paint2.getColor()\n", SK_ColorRED == paint2.getColor() ? '=' : '!');
#StdOut
SK_ColorRED == paint2.getColor()
##
##
##
# ------------------------------------------------------------------------------
#Method bool operator==(const SkPaint& a, const SkPaint& b)
#In Management
#Line # compares paints for equality ##
Compares a and b, and returns true if a and b are equivalent. May return false
if Typeface, Path_Effect, Shader, Mask_Filter, Color_Filter,
Draw_Looper, or Image_Filter have identical contents but different pointers.
#Param a Paint to compare ##
#Param b Paint to compare ##
#Return true if Paint pair are equivalent ##
#Example
SkPaint paint1, paint2;
paint1.setColor(SK_ColorRED);
paint2.setColor(0xFFFF0000);
SkDebugf("paint1 %c= paint2\n", paint1 == paint2 ? '=' : '!');
float intervals[] = { 5, 5 };
paint1.setPathEffect(SkDashPathEffect::Make(intervals, 2, 2.5f));
paint2.setPathEffect(SkDashPathEffect::Make(intervals, 2, 2.5f));
SkDebugf("paint1 %c= paint2\n", paint1 == paint2 ? '=' : '!');
#StdOut
paint1 == paint2
paint1 != paint2
##
##
##
# ------------------------------------------------------------------------------
#Method bool operator!=(const SkPaint& a, const SkPaint& b)
#In Management
#Line # compares paints for inequality ##
Compares a and b, and returns true if a and b are not equivalent. May return true
if Typeface, Path_Effect, Shader, Mask_Filter, Color_Filter,
Draw_Looper, or Image_Filter have identical contents but different pointers.
#Param a Paint to compare ##
#Param b Paint to compare ##
#Return true if Paint pair are not equivalent ##
#Example
SkPaint paint1, paint2;
paint1.setColor(SK_ColorRED);
paint2.setColor(0xFFFF0000);
SkDebugf("paint1 %c= paint2\n", paint1 == paint2 ? '=' : '!');
SkDebugf("paint1 %c= paint2\n", paint1 != paint2 ? '!' : '=');
#StdOut
paint1 == paint2
paint1 == paint2
##
##
##
# ------------------------------------------------------------------------------
#Method uint32_t getHash() const
#In Management
#Line # returns a shallow hash for equality checks ##
Returns a hash generated from Paint values and pointers.
Identical hashes guarantee that the paints are
equivalent, but differing hashes do not guarantee that the paints have differing
contents.
If operator==(const SkPaint& a, const SkPaint& b) returns true for two paints,
their hashes are also equal.
The hash returned is platform and implementation specific.
#Return a shallow hash ##
#Example
SkPaint paint1, paint2;
paint1.setColor(SK_ColorRED);
paint2.setColor(0xFFFF0000);
SkDebugf("paint1 %c= paint2\n", paint1 == paint2 ? '=' : '!');
SkDebugf("paint1.getHash() %c= paint2.getHash()\n",
paint1.getHash() == paint2.getHash() ? '=' : '!');
#StdOut
paint1 == paint2
paint1.getHash() == paint2.getHash()
##
##
##
# ------------------------------------------------------------------------------
#Method void flatten(SkWriteBuffer& buffer) const
#In Management
#Line # serializes into a buffer ##
Serializes Paint into a buffer. A companion unflatten() call
can reconstitute the paint at a later time.
#Param buffer Write_Buffer receiving the flattened Paint data ##
# why is flatten() public?
#Bug 6172
#NoExample
##
##
# ------------------------------------------------------------------------------
#Method bool unflatten(SkReadBuffer& buffer)
#In Management
#Line # populates from a serialized stream ##
Populates Paint, typically from a serialized stream, created by calling
flatten() at an earlier time.
SkReadBuffer class is not public, so unflatten() cannot be meaningfully called
by the client.
#Param buffer serialized data describing Paint content ##
#Return false if the buffer contains invalid data ##
# why is unflatten() public?
#Bug 6172
#NoExample
##
#SeeAlso SkReadBuffer
##
#Subtopic Management ##
# ------------------------------------------------------------------------------
#Subtopic Hinting
#Line # glyph outline adjustment ##
#Enum Hinting
#Line # level of glyph outline adjustment ##
#Code
enum Hinting {
kNo_Hinting = 0,
kSlight_Hinting = 1,
kNormal_Hinting = 2,
kFull_Hinting = 3,
};
##
Hinting adjusts the glyph outlines so that the shape provides a uniform
look at a given point size on font engines that support it. Hinting may have a
muted effect or no effect at all depending on the platform.
The four levels roughly control corresponding features on platforms that use FreeType
as the Font_Engine.
#Const kNo_Hinting 0
Leaves glyph outlines unchanged from their native representation.
With FreeType, this is equivalent to the FT_LOAD_NO_HINTING
bit-field constant supplied to FT_Load_Glyph, which indicates that the vector
outline being loaded should not be fitted to the pixel grid but simply scaled
to 26.6 fractional pixels.
##
#Const kSlight_Hinting 1
Modifies glyph outlines minimally to improve constrast.
With FreeType, this is equivalent in spirit to the
FT_LOAD_TARGET_LIGHT value supplied to FT_Load_Glyph. It chooses a
lighter hinting algorithm for non-monochrome modes.
Generated Glyphs may be fuzzy but better resemble their original shape.
##
#Const kNormal_Hinting 2
Modifies glyph outlines to improve constrast. This is the default.
With FreeType, this supplies FT_LOAD_TARGET_NORMAL to FT_Load_Glyph,
choosing the default hinting algorithm, which is optimized for standard
gray-level rendering.
##
#Const kFull_Hinting 3
Modifies glyph outlines for maxiumum constrast. With FreeType, this selects
FT_LOAD_TARGET_LCD or FT_LOAD_TARGET_LCD_V if kLCDRenderText_Flag is set.
FT_LOAD_TARGET_LCD is a variant of FT_LOAD_TARGET_NORMAL optimized for
horizontally decimated LCD displays; FT_LOAD_TARGET_LCD_V is a
variant of FT_LOAD_TARGET_NORMAL optimized for vertically decimated LCD displays.
##
#Track
#File SkFontHost_mac.cpp:1777,1806
#Time 2013-03-03 07:16:29 +0000
#Bug 915
On OS_X and iOS, hinting controls whether Core_Graphics dilates the font outlines
to account for LCD text. No hinting uses Core_Text gray scale output.
Normal hinting uses Core_Text LCD output. If kLCDRenderText_Flag is clear,
the LCD output is reduced to a single grayscale channel.
#Track ##
On Windows with DirectWrite, Hinting has no effect.
Hinting defaults to kNormal_Hinting.
Set SkPaintDefaults_Hinting at compile time to change the default setting.
#ToDo add an illustration? linux running GM:typefacerendering is best for this
the hinting variations are every other character horizontally
#ToDo ##
#Enum ##
#Method Hinting getHinting() const
#In Hinting
#Line # returns Hinting, glyph outline adjustment level ##
Returns level of glyph outline adjustment.
#Return one of: kNo_Hinting, kSlight_Hinting, kNormal_Hinting, kFull_Hinting ##
#Example
SkPaint paint;
SkDebugf("SkPaint::kNormal_Hinting %c= paint.getHinting()\n",
SkPaint::kNormal_Hinting == paint.getHinting() ? '=' : ':');
#StdOut
SkPaint::kNormal_Hinting == paint.getHinting()
##
##
##
#Method void setHinting(Hinting hintingLevel)
#In Hinting
#Line # sets Hinting, glyph outline adjustment level ##
Sets level of glyph outline adjustment.
Does not check for valid values of hintingLevel.
#Table
#Legend
# Hinting # value # effect on generated glyph outlines ##
##
# kNo_Hinting # 0 # leaves glyph outlines unchanged from their native representation ##
# kSlight_Hinting # 1 # modifies glyph outlines minimally to improve contrast ##
# kNormal_Hinting # 2 # modifies glyph outlines to improve contrast ##
# kFull_Hinting # 3 # modifies glyph outlines for maximum contrast ##
##
#Param hintingLevel one of: kNo_Hinting, kSlight_Hinting, kNormal_Hinting, kFull_Hinting ##
#Example
SkPaint paint1, paint2;
paint2.setHinting(SkPaint::kNormal_Hinting);
SkDebugf("paint1 %c= paint2\n", paint1 == paint2 ? '=' : ':');
#StdOut
paint1 == paint2
##
##
##
#Subtopic Hinting ##
# ------------------------------------------------------------------------------
#Subtopic Flags
#Line # attributes represented by single bits ##
#Enum Flags
#Line # values described by bits and masks ##
#Code
enum Flags {
kAntiAlias_Flag = 0x01,
kDither_Flag = 0x04,
kFakeBoldText_Flag = 0x20,
kLinearText_Flag = 0x40,
kSubpixelText_Flag = 0x80,
kDevKernText_Flag = 0x100,
kLCDRenderText_Flag = 0x200,
kEmbeddedBitmapText_Flag = 0x400,
kAutoHinting_Flag = 0x800,
kVerticalText_Flag = 0x1000,
kGenA8FromLCD_Flag = 0x2000,
kAllFlags = 0xFFFF,
};
##
The bit values stored in Flags.
The default value for Flags, normally zero, can be changed at compile time
with a custom definition of SkPaintDefaults_Flags.
All flags can be read and written explicitly; Flags allows manipulating
multiple settings at once.
#Const kAntiAlias_Flag 0x0001
mask for setting Anti-alias
##
#Const kDither_Flag 0x0004
mask for setting Dither
##
#Const kFakeBoldText_Flag 0x0020
mask for setting Fake_Bold
##
#Const kLinearText_Flag 0x0040
mask for setting Linear_Text
##
#Const kSubpixelText_Flag 0x0080
mask for setting Subpixel_Text
##
#Const kDevKernText_Flag 0x0100
mask for setting Full_Hinting_Spacing
##
#Const kLCDRenderText_Flag 0x0200
mask for setting LCD_Text
##
#Const kEmbeddedBitmapText_Flag 0x0400
mask for setting Font_Embedded_Bitmaps
##
#Const kAutoHinting_Flag 0x0800
mask for setting Automatic_Hinting
##
#Const kVerticalText_Flag 0x1000
mask for setting Vertical_Text
##
#Const kGenA8FromLCD_Flag 0x2000
#Private
Hack for GDI -- do not use if you can help it
##
not intended for public use
##
#Const kAllFlags 0xFFFF
mask of all Flags, including private flags and flags reserved for future use
##
Flags default to all flags clear, disabling the associated feature.
#Enum ##
#Enum ReserveFlags
#Deprecated soon
Only valid for Android framework.
#Code
enum ReserveFlags {
kUnderlineText_ReserveFlag = 0x08,
kStrikeThruText_ReserveFlag = 0x10,
};
##
#Const kUnderlineText_ReserveFlag 0x0008
#Deprecated soon
##
#Const kStrikeThruText_ReserveFlag 0x0010
#Deprecated soon
##
##
#Method uint32_t getFlags() const
#In Flags
#Line # returns Flags stored in a bit field ##
Returns paint settings described by Flags. Each setting uses one
bit, and can be tested with Flags members.
#Return zero, one, or more bits described by Flags ##
#Example
SkPaint paint;
paint.setAntiAlias(true);
SkDebugf("(SkPaint::kAntiAlias_Flag & paint.getFlags()) %c= 0\n",
SkPaint::kAntiAlias_Flag & paint.getFlags() ? '!' : '=');
#StdOut
(SkPaint::kAntiAlias_Flag & paint.getFlags()) != 0
##
##
##
#Method void setFlags(uint32_t flags)
#In Flags
#Line # sets multiple Flags in a bit field ##
Replaces Flags with flags, the union of the Flags members.
All Flags members may be cleared, or one or more may be set.
#Param flags union of Flags for Paint ##
#Example
SkPaint paint;
paint.setFlags((uint32_t) (SkPaint::kAntiAlias_Flag | SkPaint::kDither_Flag));
SkDebugf("paint.isAntiAlias()\n", paint.isAntiAlias() ? '!' : '=');
SkDebugf("paint.isDither()\n", paint.isDither() ? '!' : '=');
#StdOut
paint.isAntiAlias()
paint.isDither()
##
##
##
#Subtopic Flags ##
# ------------------------------------------------------------------------------
#Subtopic Anti-alias
#Alias Anti-alias # permit hyphen in topic name, should probably not substitute hyphen with _
#In Related_Function
#Line # approximating coverage with transparency ##
Anti-alias drawing approximates partial pixel coverage with transparency.
If kAntiAlias_Flag is clear, pixel centers contained by the shape edge are drawn opaque.
If kAntiAlias_Flag is set, pixels are drawn with Color_Alpha equal to their coverage.
The rule for Aliased pixels is inconsistent across platforms. A shape edge
passing through the pixel center may, but is not required to, draw the pixel.
Raster_Engine draws Aliased pixels whose centers are on or to the right of the start of an
active Path edge, and whose center is to the left of the end of the active Path edge.
#ToDo add illustration of raster pixels ##
A platform may only support Anti-aliased drawing. Some GPU-backed platforms use
Supersampling to Anti-alias all drawing, and have no mechanism to selectively
Alias.
The amount of coverage computed for Anti-aliased pixels also varies across platforms.
Anti-alias is disabled by default.
Anti-alias can be enabled by default by setting SkPaintDefaults_Flags to kAntiAlias_Flag
at compile time.
#Example
#Width 512
#Description
A red line is drawn with transparency on the edges to make it look smoother.
A blue line draws only where the pixel centers are contained.
The lines are drawn into Bitmap, then drawn magnified to make the
Aliasing easier to see.
##
void draw(SkCanvas* canvas) {
SkBitmap bitmap;
bitmap.allocN32Pixels(50, 50);
SkCanvas offscreen(bitmap);
SkPaint paint;
paint.setStyle(SkPaint::kStroke_Style);
paint.setStrokeWidth(10);
for (bool antialias : { false, true }) {
paint.setColor(antialias ? SK_ColorRED : SK_ColorBLUE);
paint.setAntiAlias(antialias);
bitmap.eraseColor(0);
offscreen.drawLine(5, 5, 15, 30, paint);
canvas->drawLine(5, 5, 15, 30, paint);
canvas->save();
canvas->scale(10, 10);
canvas->drawBitmap(bitmap, antialias ? 12 : 0, 0);
canvas->restore();
canvas->translate(15, 0);
}
}
##
#Method bool isAntiAlias() const
#In Anti_alias
#Line # returns true if Anti-alias is set ##
If true, pixels on the active edges of Path may be drawn with partial transparency.
Equivalent to getFlags masked with kAntiAlias_Flag.
#Return kAntiAlias_Flag state ##
#Example
SkPaint paint;
SkDebugf("paint.isAntiAlias() %c= !!(paint.getFlags() & SkPaint::kAntiAlias_Flag)\n",
paint.isAntiAlias() == !!(paint.getFlags() & SkPaint::kAntiAlias_Flag) ? '=' : '!');
paint.setAntiAlias(true);
SkDebugf("paint.isAntiAlias() %c= !!(paint.getFlags() & SkPaint::kAntiAlias_Flag)\n",
paint.isAntiAlias() == !!(paint.getFlags() & SkPaint::kAntiAlias_Flag) ? '=' : '!');
#StdOut
paint.isAntiAlias() == !!(paint.getFlags() & SkPaint::kAntiAlias_Flag)
paint.isAntiAlias() == !!(paint.getFlags() & SkPaint::kAntiAlias_Flag)
##
##
##
#Method void setAntiAlias(bool aa)
#In Anti_alias
#Line # sets or clears Anti-alias ##
Requests, but does not require, that Path edge pixels draw opaque or with
partial transparency.
Sets kAntiAlias_Flag if aa is true.
Clears kAntiAlias_Flag if aa is false.
#Param aa setting for kAntiAlias_Flag ##
#Example
SkPaint paint1, paint2;
paint1.setAntiAlias(true);
paint2.setFlags(paint2.getFlags() | SkPaint::kAntiAlias_Flag);
SkDebugf("paint1 %c= paint2\n", paint1 == paint2 ? '=' : '!');
#StdOut
paint1 == paint2
##
##
##
#Subtopic Anti-alias ##
# ------------------------------------------------------------------------------
#Subtopic Dither
#Line # distributing color error ##
Dither increases fidelity by adjusting the color of adjacent pixels.
This can help to smooth color transitions and reducing banding in gradients.
Dithering lessens visible banding from kRGB_565_SkColorType
and kRGBA_8888_SkColorType gradients,
and improves rendering into a kRGB_565_SkColorType Surface.
Dithering is always enabled for linear gradients drawing into
kRGB_565_SkColorType Surface and kRGBA_8888_SkColorType Surface.
Dither cannot be enabled for kAlpha_8_SkColorType Surface and
kRGBA_F16_SkColorType Surface.
Dither is disabled by default.
Dither can be enabled by default by setting SkPaintDefaults_Flags to kDither_Flag
at compile time.
Some platform implementations may ignore dithering. Set
#Define SK_IGNORE_GPU_DITHER
to ignore Dither on GPU_Surface.
#Example
#Description
Dithering in the bottom half more closely approximates the requested color by
alternating nearby colors from pixel to pixel.
##
void draw(SkCanvas* canvas) {
SkBitmap bm16;
bm16.allocPixels(SkImageInfo::Make(32, 32, kRGB_565_SkColorType, kOpaque_SkAlphaType));
SkCanvas c16(bm16);
SkPaint colorPaint;
for (auto dither : { false, true } ) {
colorPaint.setDither(dither);
for (auto colors : { 0xFF333333, 0xFF666666, 0xFF999999, 0xFFCCCCCC } ) {
for (auto mask : { 0xFFFF0000, 0xFF00FF00, 0xFF0000FF, 0xFFFFFFFF } ) {
colorPaint.setColor(colors & mask);
c16.drawRect({0, 0, 8, 4}, colorPaint);
c16.translate(8, 0);
}
c16.translate(-32, 4);
}
}
canvas->scale(8, 8);
canvas->drawBitmap(bm16, 0, 0);
}
##
#Example
#Description
Dithering introduces subtle adjustments to color to smooth gradients.
Drawing the gradient repeatedly with SkBlendMode::kPlus exaggerates the
dither, making it easier to see.
##
void draw(SkCanvas* canvas) {
canvas->clear(0);
SkBitmap bm32;
bm32.allocPixels(SkImageInfo::Make(20, 10, kN32_SkColorType, kPremul_SkAlphaType));
SkCanvas c32(bm32);
SkPoint points[] = {{0, 0}, {20, 0}};
SkColor colors[] = {0xFF334455, 0xFF662211 };
SkPaint paint;
paint.setShader(SkGradientShader::MakeLinear(
points, colors, nullptr, SK_ARRAY_COUNT(colors),
SkShader::kClamp_TileMode, 0, nullptr));
paint.setDither(true);
c32.drawPaint(paint);
canvas->scale(12, 12);
canvas->drawBitmap(bm32, 0, 0);
paint.setBlendMode(SkBlendMode::kPlus);
canvas->drawBitmap(bm32, 0, 11, &paint);
canvas->drawBitmap(bm32, 0, 11, &paint);
canvas->drawBitmap(bm32, 0, 11, &paint);
}
##
#Method bool isDither() const
#In Dither
#Line # returns true if Dither is set ##
If true, color error may be distributed to smooth color transition.
Equivalent to getFlags masked with kDither_Flag.
#Return kDither_Flag state ##
#Example
SkPaint paint;
SkDebugf("paint.isDither() %c= !!(paint.getFlags() & SkPaint::kDither_Flag)\n",
paint.isDither() == !!(paint.getFlags() & SkPaint::kDither_Flag) ? '=' : '!');
paint.setDither(true);
SkDebugf("paint.isDither() %c= !!(paint.getFlags() & SkPaint::kDither_Flag)\n",
paint.isDither() == !!(paint.getFlags() & SkPaint::kDither_Flag) ? '=' : '!');
#StdOut
paint.isDither() == !!(paint.getFlags() & SkPaint::kDither_Flag)
paint.isDither() == !!(paint.getFlags() & SkPaint::kDither_Flag)
##
##
##
#Method void setDither(bool dither)
#In Dither
#Line # sets or clears Dither ##
Requests, but does not require, to distribute color error.
Sets kDither_Flag if dither is true.
Clears kDither_Flag if dither is false.
#Param dither setting for kDither_Flag ##
#Example
SkPaint paint1, paint2;
paint1.setDither(true);
paint2.setFlags(paint2.getFlags() | SkPaint::kDither_Flag);
SkDebugf("paint1 %c= paint2\n", paint1 == paint2 ? '=' : '!');
#StdOut
paint1 == paint2
##
##
#SeeAlso kRGB_565_SkColorType
##
#SeeAlso Gradient Color_RGB-565
#Subtopic Dither ##
# ------------------------------------------------------------------------------
#Subtopic Device_Text
#Line # increase precision of glyph position ##
LCD_Text and Subpixel_Text increase the precision of glyph position.
When set, Flags kLCDRenderText_Flag takes advantage of the organization of Color_RGB stripes that
create a color, and relies
on the small size of the stripe and visual perception to make the color fringing imperceptible.
LCD_Text can be enabled on devices that orient stripes horizontally or vertically, and that order
the color components as Color_RGB or Color_RBG.
Flags kSubpixelText_Flag uses the pixel transparency to represent a fractional offset.
As the opaqueness
of the color increases, the edge of the glyph appears to move towards the outside of the pixel.
Either or both techniques can be enabled.
kLCDRenderText_Flag and kSubpixelText_Flag are clear by default.
LCD_Text or Subpixel_Text can be enabled by default by setting SkPaintDefaults_Flags to
kLCDRenderText_Flag or kSubpixelText_Flag (or both) at compile time.
#Example
#Description
Four commas are drawn normally and with combinations of LCD_Text and Subpixel_Text.
When Subpixel_Text is disabled, the comma Glyphs are identical, but not evenly spaced.
When Subpixel_Text is enabled, the comma Glyphs are unique, but appear evenly spaced.
##
SkBitmap bitmap;
bitmap.allocN32Pixels(24, 33);
SkCanvas offscreen(bitmap);
offscreen.clear(SK_ColorWHITE);
SkPaint paint;
paint.setAntiAlias(true);
paint.setTextSize(20);
for (bool lcd : { false, true }) {
paint.setLCDRenderText(lcd);
for (bool subpixel : { false, true }) {
paint.setSubpixelText(subpixel);
offscreen.drawString(",,,,", 0, 4, paint);
offscreen.translate(0, 7);
}
}
canvas->drawBitmap(bitmap, 4, 12);
canvas->scale(9, 9);
canvas->drawBitmap(bitmap, 4, -1);
##
#Subtopic Device_Text ##
#Subtopic Linear_Text
#Alias Linear_Text
#Line # selects text rendering as Glyph or Path ##
Linear_Text selects whether text is rendered as a Glyph or as a Path.
If kLinearText_Flag is set, it has the same effect as setting Hinting to kNormal_Hinting.
If kLinearText_Flag is clear, it is the same as setting Hinting to kNo_Hinting.
#Method bool isLinearText() const
#Line # returns true if text is converted to Path ##
#In Linear_Text
If true, text is converted to Path before drawing and measuring.
Equivalent to getFlags masked with kLinearText_Flag.
#Return kLinearText_Flag state ##
#Example
#Height 128
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setAntiAlias(true);
const char testStr[] = "xxxx xxxx";
for (auto linearText : { false, true } ) {
paint.setLinearText(linearText);
paint.setTextSize(24);
canvas->drawString(paint.isLinearText() ? "linear" : "hinted", 128, 30, paint);
for (SkScalar textSize = 8; textSize < 30; textSize *= 1.22f) {
paint.setTextSize(textSize);
canvas->translate(0, textSize);
canvas->drawString(testStr, 10, 0, paint);
}
}
}
##
#SeeAlso setLinearText Hinting
##
#Method void setLinearText(bool linearText)
#Line # converts to Path before draw or measure ##
#In Linear_Text
If true, text is converted to Path before drawing and measuring.
By default, kLinearText_Flag is clear.
Sets kLinearText_Flag if linearText is true.
Clears kLinearText_Flag if linearText is false.
#Param linearText setting for kLinearText_Flag ##
#Example
#Height 128
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setAntiAlias(true);
const char testStr[] = "abcd efgh";
for (int textSize : { 12, 24 } ) {
paint.setTextSize(textSize);
for (auto linearText : { false, true } ) {
paint.setLinearText(linearText);
SkString width;
width.appendScalar(paint.measureText(testStr, SK_ARRAY_COUNT(testStr), nullptr));
canvas->translate(0, textSize + 4);
canvas->drawString(testStr, 10, 0, paint);
canvas->drawString(width, 128, 0, paint);
}
}
}
##
#SeeAlso isLinearText Hinting
##
#Subtopic Linear_Text ##
#Subtopic Subpixel_Text
#Alias Subpixel_Text
#Line # uses pixel transparency to represent fractional offset ##
Flags kSubpixelText_Flag uses the pixel transparency to represent a fractional offset.
As the opaqueness
of the color increases, the edge of the glyph appears to move towards the outside of the pixel.
#Method bool isSubpixelText() const
#In Subpixel_Text
#Line # returns true if Subpixel_Text is set ##
If true, Glyphs at different sub-pixel positions may differ on pixel edge coverage.
Equivalent to getFlags masked with kSubpixelText_Flag.
#Return kSubpixelText_Flag state ##
#Example
SkPaint paint;
SkDebugf("paint.isSubpixelText() %c= !!(paint.getFlags() & SkPaint::kSubpixelText_Flag)\n",
paint.isSubpixelText() == !!(paint.getFlags() & SkPaint::kSubpixelText_Flag) ? '=' : '!');
paint.setSubpixelText(true);
SkDebugf("paint.isSubpixelText() %c= !!(paint.getFlags() & SkPaint::kSubpixelText_Flag)\n",
paint.isSubpixelText() == !!(paint.getFlags() & SkPaint::kSubpixelText_Flag) ? '=' : '!');
#StdOut
paint.isSubpixelText() == !!(paint.getFlags() & SkPaint::kSubpixelText_Flag)
paint.isSubpixelText() == !!(paint.getFlags() & SkPaint::kSubpixelText_Flag)
##
##
##
#Method void setSubpixelText(bool subpixelText)
#In Subpixel_Text
#Line # sets or clears Subpixel_Text ##
Requests, but does not require, that Glyphs respect sub-pixel positioning.
Sets kSubpixelText_Flag if subpixelText is true.
Clears kSubpixelText_Flag if subpixelText is false.
#Param subpixelText setting for kSubpixelText_Flag ##
#Example
SkPaint paint1, paint2;
paint1.setSubpixelText(true);
paint2.setFlags(paint2.getFlags() | SkPaint::kSubpixelText_Flag);
SkDebugf("paint1 %c= paint2\n", paint1 == paint2 ? '=' : '!');
#StdOut
paint1 == paint2
##
##
##
#Subtopic Subpixel_Text ##
#Subtopic LCD_Text
#Substitute LCD text
#Line # text relying on the order of Color_RGB stripes ##
#Alias LCD_Text # makes this a top level name, since it is under subtopic Device_Text
When set, Flags kLCDRenderText_Flag takes advantage of the organization of Color_RGB stripes that
create a color, and relies
on the small size of the stripe and visual perception to make the color fringing imperceptible.
LCD_Text can be enabled on devices that orient stripes horizontally or vertically, and that order
the color components as Color_RGB or Color_RBG.
#Method bool isLCDRenderText() const
#In LCD_Text
#Line # returns true if LCD_Text is set ##
If true, Glyphs may use LCD striping to improve glyph edges.
Returns true if Flags kLCDRenderText_Flag is set.
#Return kLCDRenderText_Flag state ##
#Example
SkPaint paint;
SkDebugf("paint.isLCDRenderText() %c= !!(paint.getFlags() & SkPaint::kLCDRenderText_Flag)\n",
paint.isLCDRenderText() == !!(paint.getFlags() & SkPaint::kLCDRenderText_Flag) ? '=' : '!');
paint.setLCDRenderText(true);
SkDebugf("paint.isLCDRenderText() %c= !!(paint.getFlags() & SkPaint::kLCDRenderText_Flag)\n",
paint.isLCDRenderText() == !!(paint.getFlags() & SkPaint::kLCDRenderText_Flag) ? '=' : '!');
#StdOut
paint.isLCDRenderText() == !!(paint.getFlags() & SkPaint::kLCDRenderText_Flag)
paint.isLCDRenderText() == !!(paint.getFlags() & SkPaint::kLCDRenderText_Flag)
##
##
##
#Method void setLCDRenderText(bool lcdText)
#In LCD_Text
#Line # sets or clears LCD_Text ##
Requests, but does not require, that Glyphs use LCD striping for glyph edges.
Sets kLCDRenderText_Flag if lcdText is true.
Clears kLCDRenderText_Flag if lcdText is false.
#Param lcdText setting for kLCDRenderText_Flag ##
#Example
SkPaint paint1, paint2;
paint1.setLCDRenderText(true);
paint2.setFlags(paint2.getFlags() | SkPaint::kLCDRenderText_Flag);
SkDebugf("paint1 %c= paint2\n", paint1 == paint2 ? '=' : '!');
#StdOut
paint1 == paint2
##
##
##
#Subtopic LCD_Text ##
# ------------------------------------------------------------------------------
#Subtopic Font_Embedded_Bitmaps
#Line # custom sized bitmap Glyphs ##
#Alias Font_Embedded_Bitmaps # long-winded enough, alias so I don't type Paint_Font_...
Font_Embedded_Bitmaps allows selecting custom sized bitmap Glyphs.
Flags kEmbeddedBitmapText_Flag when set chooses an embedded bitmap glyph over an outline contained
in a font if the platform supports this option.
FreeType selects the bitmap glyph if available when kEmbeddedBitmapText_Flag is set, and selects
the outline glyph if kEmbeddedBitmapText_Flag is clear.
Windows may select the bitmap glyph but is not required to do so.
OS_X and iOS do not support this option.
Font_Embedded_Bitmaps is disabled by default.
Font_Embedded_Bitmaps can be enabled by default by setting SkPaintDefaults_Flags to
kEmbeddedBitmapText_Flag at compile time.
#Example
#ToDo image will only output on Ubuntu ... how to handle that in fiddle? ##
#Platform !fiddle
#Description
The "hintgasp" TrueType font in the Skia resources/fonts directory
includes an embedded bitmap Glyph at odd font sizes. This example works
on platforms that use FreeType as their Font_Engine.
Windows may, but is not required to, return a bitmap glyph if
kEmbeddedBitmapText_Flag is set.
##
#Image embeddedbitmap.png
SkBitmap bitmap;
bitmap.allocN32Pixels(30, 15);
bitmap.eraseColor(0);
SkCanvas offscreen(bitmap);
SkPaint paint;
paint.setAntiAlias(true);
paint.setTextSize(13);
paint.setTypeface(MakeResourceAsTypeface("fonts/hintgasp.ttf"));
for (bool embedded : { false, true}) {
paint.setEmbeddedBitmapText(embedded);
offscreen.drawString("A", embedded ? 5 : 15, 15, paint);
}
canvas->drawBitmap(bitmap, 0, 0);
canvas->scale(10, 10);
canvas->drawBitmap(bitmap, -2, 1);
##
#Method bool isEmbeddedBitmapText() const
#In Font_Embedded_Bitmaps
#Line # returns true if Font_Embedded_Bitmaps is set ##
If true, Font_Engine may return Glyphs from font bitmaps instead of from outlines.
Equivalent to getFlags masked with kEmbeddedBitmapText_Flag.
#Return kEmbeddedBitmapText_Flag state ##
#Example
SkPaint paint;
SkDebugf("paint.isEmbeddedBitmapText() %c="
" !!(paint.getFlags() & SkPaint::kEmbeddedBitmapText_Flag)\n",
paint.isEmbeddedBitmapText() ==
!!(paint.getFlags() & SkPaint::kEmbeddedBitmapText_Flag) ? '=' : '!');
paint.setEmbeddedBitmapText(true);
SkDebugf("paint.isEmbeddedBitmapText() %c="
" !!(paint.getFlags() & SkPaint::kEmbeddedBitmapText_Flag)\n",
paint.isEmbeddedBitmapText() ==
!!(paint.getFlags() & SkPaint::kEmbeddedBitmapText_Flag) ? '=' : '!');
#StdOut
paint.isEmbeddedBitmapText() == !!(paint.getFlags() & SkPaint::kEmbeddedBitmapText_Flag)
paint.isEmbeddedBitmapText() == !!(paint.getFlags() & SkPaint::kEmbeddedBitmapText_Flag)
##
##
##
#Method void setEmbeddedBitmapText(bool useEmbeddedBitmapText)
#In Font_Embedded_Bitmaps
#Line # sets or clears Font_Embedded_Bitmaps ##
Requests, but does not require, to use bitmaps in fonts instead of outlines.
Sets kEmbeddedBitmapText_Flag if useEmbeddedBitmapText is true.
Clears kEmbeddedBitmapText_Flag if useEmbeddedBitmapText is false.
#Param useEmbeddedBitmapText setting for kEmbeddedBitmapText_Flag ##
#Example
SkPaint paint1, paint2;
paint1.setEmbeddedBitmapText(true);
paint2.setFlags(paint2.getFlags() | SkPaint::kEmbeddedBitmapText_Flag);
SkDebugf("paint1 %c= paint2\n", paint1 == paint2 ? '=' : '!');
#StdOut
paint1 == paint2
##
##
##
#Subtopic Font_Embedded_Bitmaps ##
# ------------------------------------------------------------------------------
#Subtopic Automatic_Hinting
#Line # always adjust glyph paths ##
#Substitute auto-hinting
If Hinting is set to kNormal_Hinting or kFull_Hinting, Automatic_Hinting
instructs the Font_Manager to always hint Glyphs.
Automatic_Hinting has no effect if Hinting is set to kNo_Hinting or
kSlight_Hinting.
Automatic_Hinting only affects platforms that use FreeType as the Font_Manager.
#Method bool isAutohinted() const
#In Automatic_Hinting
#Line # returns true if Glyphs are always hinted ##
If true, and if Hinting is set to kNormal_Hinting or kFull_Hinting, and if
platform uses FreeType as the Font_Manager, instruct the Font_Manager to always hint
Glyphs.
Equivalent to getFlags masked with kAutoHinting_Flag.
#Return kAutoHinting_Flag state ##
#Example
SkPaint paint;
for (auto forceAutoHinting : { false, true} ) {
paint.setAutohinted(forceAutoHinting);
SkDebugf("paint.isAutohinted() %c="
" !!(paint.getFlags() & SkPaint::kAutoHinting_Flag)\n",
paint.isAutohinted() ==
!!(paint.getFlags() & SkPaint::kAutoHinting_Flag) ? '=' : '!');
}
#StdOut
paint.isAutohinted() == !!(paint.getFlags() & SkPaint::kAutoHinting_Flag)
paint.isAutohinted() == !!(paint.getFlags() & SkPaint::kAutoHinting_Flag)
##
##
#SeeAlso setAutohinted Hinting
##
#Method void setAutohinted(bool useAutohinter)
#In Automatic_Hinting
#Line # sets Glyphs to always be hinted ##
If Hinting is set to kNormal_Hinting or kFull_Hinting and useAutohinter is set,
instruct the Font_Manager to always hint Glyphs.
Automatic_Hinting has no effect if Hinting is set to kNo_Hinting or
kSlight_Hinting.
Only affects platforms that use FreeType as the Font_Manager.
Sets kAutoHinting_Flag if useAutohinter is true.
Clears kAutoHinting_Flag if useAutohinter is false.
#Param useAutohinter setting for kAutoHinting_Flag ##
#Example
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setAntiAlias(true);
const char testStr[] = "xxxx xxxx";
for (auto forceAutoHinting : { false, true} ) {
paint.setAutohinted(forceAutoHinting);
paint.setTextSize(24);
canvas->drawString(paint.isAutohinted() ? "auto-hinted" : "default", 108, 30, paint);
for (SkScalar textSize = 8; textSize < 30; textSize *= 1.22f) {
paint.setTextSize(textSize);
canvas->translate(0, textSize);
canvas->drawString(testStr, 10, 0, paint);
}
}
}
##
#SeeAlso isAutohinted Hinting
##
#Subtopic Automatic_Hinting ##
# ------------------------------------------------------------------------------
#Subtopic Vertical_Text
#Line # orient text from top to bottom ##
Text may be drawn by positioning each glyph, or by positioning the first glyph and
using Font_Advance to position subsequent Glyphs. By default, each successive glyph
is positioned to the right of the preceding glyph. Vertical_Text sets successive
Glyphs to position below the preceding glyph.
Skia can translate text character codes as a series of Glyphs, but does not implement
font substitution,
textual substitution, line layout, or contextual spacing like Kerning pairs. Use
a text shaping engine like
#A HarfBuzz # http://harfbuzz.org/ ##
to translate text runs
into glyph series.
Vertical_Text is clear if text is drawn left to right or set if drawn from top to bottom.
Flags kVerticalText_Flag if clear draws text left to right.
Flags kVerticalText_Flag if set draws text top to bottom.
Vertical_Text is clear by default.
Vertical_Text can be set by default by setting SkPaintDefaults_Flags to
kVerticalText_Flag at compile time.
#Example
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setAntiAlias(true);
paint.setTextSize(50);
for (bool vertical : { false, true } ) {
paint.setVerticalText(vertical);
canvas->drawString("aAlL", 25, 50, paint);
}
}
##
#Method bool isVerticalText() const
#In Vertical_Text
#Line # returns true if Vertical_Text is set ##
If true, Glyphs are drawn top to bottom instead of left to right.
Equivalent to getFlags masked with kVerticalText_Flag.
#Return kVerticalText_Flag state ##
#Example
SkPaint paint;
SkDebugf("paint.isVerticalText() %c= !!(paint.getFlags() & SkPaint::kVerticalText_Flag)\n",
paint.isVerticalText() == !!(paint.getFlags() & SkPaint::kVerticalText_Flag) ? '=' : '!');
paint.setVerticalText(true);
SkDebugf("paint.isVerticalText() %c= !!(paint.getFlags() & SkPaint::kVerticalText_Flag)\n",
paint.isVerticalText() == !!(paint.getFlags() & SkPaint::kVerticalText_Flag) ? '=' : '!');
#StdOut
paint.isVerticalText() == !!(paint.getFlags() & SkPaint::kVerticalText_Flag)
paint.isVerticalText() == !!(paint.getFlags() & SkPaint::kVerticalText_Flag)
##
##
##
#Method void setVerticalText(bool verticalText)
#In Vertical_Text
#Line # sets or clears Vertical_Text ##
If true, text advance positions the next glyph below the previous glyph instead of to the
right of previous glyph.
Sets kVerticalText_Flag if vertical is true.
Clears kVerticalText_Flag if vertical is false.
#Param verticalText setting for kVerticalText_Flag ##
#Example
SkPaint paint1, paint2;
paint1.setVerticalText(true);
paint2.setFlags(paint2.getFlags() | SkPaint::kVerticalText_Flag);
SkDebugf("paint1 %c= paint2\n", paint1 == paint2 ? '=' : '!');
#StdOut
paint1 == paint2
##
##
##
#Subtopic Vertical_Text ##
# ------------------------------------------------------------------------------
#Subtopic Fake_Bold
#Line # approximate font styles ##
Fake_Bold approximates the bold font style accompanying a normal font when a bold font face
is not available. Skia does not provide font substitution; it is up to the client to find the
bold font face using the platform Font_Manager.
Use Text_Skew_X to approximate an italic font style when the italic font face
is not available.
A FreeType based port may define SK_USE_FREETYPE_EMBOLDEN at compile time to direct
the font engine to create the bold Glyphs. Otherwise, the extra bold is computed
by increasing the stroke width and setting the Style to kStrokeAndFill_Style as needed.
Fake_Bold is disabled by default.
#Example
#Height 128
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setAntiAlias(true);
paint.setTextSize(40);
canvas->drawString("OjYy_-", 10, 35, paint);
paint.setFakeBoldText(true);
canvas->drawString("OjYy_-", 10, 75, paint);
// create a custom fake bold by varying the stroke width
paint.setFakeBoldText(false);
paint.setStyle(SkPaint::kStrokeAndFill_Style);
paint.setStrokeWidth(40.f / 48);
canvas->drawString("OjYy_-", 10, 115, paint);
}
##
#Method bool isFakeBoldText() const
#In Fake_Bold
#Line # returns true if Fake_Bold is set ##
If true, approximate bold by increasing the stroke width when creating glyph bitmaps
from outlines.
Equivalent to getFlags masked with kFakeBoldText_Flag.
#Return kFakeBoldText_Flag state ##
#Example
SkPaint paint;
SkDebugf("paint.isFakeBoldText() %c= !!(paint.getFlags() & SkPaint::kFakeBoldText_Flag)\n",
paint.isFakeBoldText() == !!(paint.getFlags() & SkPaint::kFakeBoldText_Flag) ? '=' : '!');
paint.setFakeBoldText(true);
SkDebugf("paint.isFakeBoldText() %c= !!(paint.getFlags() & SkPaint::kFakeBoldText_Flag)\n",
paint.isFakeBoldText() == !!(paint.getFlags() & SkPaint::kFakeBoldText_Flag) ? '=' : '!');
#StdOut
paint.isFakeBoldText() == !!(paint.getFlags() & SkPaint::kFakeBoldText_Flag)
paint.isFakeBoldText() == !!(paint.getFlags() & SkPaint::kFakeBoldText_Flag)
##
##
##
#Method void setFakeBoldText(bool fakeBoldText)
#In Fake_Bold
#Line # sets or clears Fake_Bold ##
Use increased stroke width when creating glyph bitmaps to approximate a bold typeface.
Sets kFakeBoldText_Flag if fakeBoldText is true.
Clears kFakeBoldText_Flag if fakeBoldText is false.
#Param fakeBoldText setting for kFakeBoldText_Flag ##
#Example
SkPaint paint1, paint2;
paint1.setFakeBoldText(true);
paint2.setFlags(paint2.getFlags() | SkPaint::kFakeBoldText_Flag);
SkDebugf("paint1 %c= paint2\n", paint1 == paint2 ? '=' : '!');
#StdOut
paint1 == paint2
##
##
##
#Subtopic Fake_Bold ##
# ------------------------------------------------------------------------------
#Subtopic Full_Hinting_Spacing
#Line # glyph spacing affected by hinting ##
#Alias Full_Hinting_Spacing # long winded enough -- maybe things with two underscores auto-aliased?
if Hinting is set to kFull_Hinting, Full_Hinting_Spacing adjusts the character
spacing by the difference of the hinted and Unhinted Left_Side_Bearing and
Right_Side_Bearing. Full_Hinting_Spacing only applies to platforms that use
FreeType as their Font_Engine.
Full_Hinting_Spacing is not related to text Kerning, where the space between
a specific pair of characters is adjusted using data in the font Kerning tables.
#Method bool isDevKernText() const
#In Full_Hinting_Spacing
#Line # returns true if Full_Hinting_Spacing is set ##
Returns if character spacing may be adjusted by the hinting difference.
Equivalent to getFlags masked with kDevKernText_Flag.
#Return kDevKernText_Flag state ##
#Example
SkPaint paint;
SkDebugf("paint.isDevKernText() %c= !!(paint.getFlags() & SkPaint::kDevKernText_Flag)\n",
paint.isDevKernText() == !!(paint.getFlags() & SkPaint::kDevKernText_Flag) ? '=' : '!');
paint.setDevKernText(true);
SkDebugf("paint.isDevKernText() %c= !!(paint.getFlags() & SkPaint::kDevKernText_Flag)\n",
paint.isDevKernText() == !!(paint.getFlags() & SkPaint::kDevKernText_Flag) ? '=' : '!');
##
##
#Method void setDevKernText(bool devKernText)
#In Full_Hinting_Spacing
#Line # sets or clears Full_Hinting_Spacing ##
Requests, but does not require, to use hinting to adjust glyph spacing.
Sets kDevKernText_Flag if devKernText is true.
Clears kDevKernText_Flag if devKernText is false.
#Param devKernText setting for devKernText ##
#Example
SkPaint paint1, paint2;
paint1.setDevKernText(true);
paint2.setFlags(paint2.getFlags() | SkPaint::kDevKernText_Flag);
SkDebugf("paint1 %c= paint2\n", paint1 == paint2 ? '=' : '!');
#StdOut
paint1 == paint2
##
##
##
#Subtopic Full_Hinting_Spacing ##
# ------------------------------------------------------------------------------
#Subtopic Filter_Quality_Methods
#Line # get and set Filter_Quality ##
Filter_Quality trades speed for image filtering when the image is scaled.
A lower Filter_Quality draws faster, but has less fidelity.
A higher Filter_Quality draws slower, but looks better.
If the image is drawn without scaling, the Filter_Quality choice will not result
in a noticeable difference.
Filter_Quality is used in Paint passed as a parameter to
#List
# SkCanvas::drawBitmap ##
# SkCanvas::drawBitmapRect ##
# SkCanvas::drawImage ##
# SkCanvas::drawImageRect ##
#ToDo probably more... ##
#List ##
and when Paint has a Shader specialization that uses Image or Bitmap.
Filter_Quality is kNone_SkFilterQuality by default.
#Example
#Image 3
void draw(SkCanvas* canvas) {
SkPaint paint;
canvas->scale(.2f, .2f);
for (SkFilterQuality q : { kNone_SkFilterQuality, kLow_SkFilterQuality,
kMedium_SkFilterQuality, kHigh_SkFilterQuality } ) {
paint.setFilterQuality(q);
canvas->drawImage(image.get(), 0, 0, &paint);
canvas->translate(550, 0);
if (kLow_SkFilterQuality == q) canvas->translate(-1100, 550);
}
}
##
#Method SkFilterQuality getFilterQuality() const
#In Filter_Quality_Methods
#Line # returns Filter_Quality, image filtering level ##
Returns Filter_Quality, the image filtering level. A lower setting
draws faster; a higher setting looks better when the image is scaled.
#Return one of: kNone_SkFilterQuality, kLow_SkFilterQuality,
kMedium_SkFilterQuality, kHigh_SkFilterQuality
#Return ##
#Example
SkPaint paint;
SkDebugf("kNone_SkFilterQuality %c= paint.getFilterQuality()\n",
kNone_SkFilterQuality == paint.getFilterQuality() ? '=' : '!');
#StdOut
kNone_SkFilterQuality == paint.getFilterQuality()
##
##
##
#Method void setFilterQuality(SkFilterQuality quality)
#In Filter_Quality_Methods
#Line # sets Filter_Quality, the image filtering level ##
Sets Filter_Quality, the image filtering level. A lower setting
draws faster; a higher setting looks better when the image is scaled.
Does not check to see if quality is valid.
#Param quality one of: kNone_SkFilterQuality, kLow_SkFilterQuality,
kMedium_SkFilterQuality, kHigh_SkFilterQuality
##
#Example
SkPaint paint;
paint.setFilterQuality(kHigh_SkFilterQuality);
SkDebugf("kHigh_SkFilterQuality %c= paint.getFilterQuality()\n",
kHigh_SkFilterQuality == paint.getFilterQuality() ? '=' : '!');
#StdOut
kHigh_SkFilterQuality == paint.getFilterQuality()
##
##
#SeeAlso SkFilterQuality Image_Scaling
##
#Subtopic Filter_Quality_Methods ##
# ------------------------------------------------------------------------------
#Subtopic Color_Methods
#Line # get and set Color ##
#Table
#Legend
# name # description ##
#Legend ##
# getColor # returns Color_Alpha and Color_RGB, one drawing color ##
# setColor # sets Color_Alpha and Color_RGB, one drawing color ##
#Table ##
Color specifies the Color_RGB_Red, Color_RGB_Blue, Color_RGB_Green, and Color_Alpha
values used to draw a filled or stroked shape in a 32-bit value. Each component
occupies 8-bits, ranging from zero: no contribution; to 255: full intensity.
All values in any combination are valid.
Color is not Premultiplied; Color_Alpha sets the transparency independent of
Color_RGB: Color_RGB_Red, Color_RGB_Blue, and Color_RGB_Green.
The bit positions of Color_Alpha and Color_RGB are independent of the bit
positions on the output device, which may have more or fewer bits, and may have
a different arrangement.
#Table
#Legend
# bit positions # Color_Alpha # Color_RGB_Red # Color_RGB_Blue # Color_RGB_Green ##
#Legend ##
# # 31 - 24 # 23 - 16 # 15 - 8 # 7 - 0 ##
#Table ##
#Example
#Height 128
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setColor(0x8000FF00); // transparent green
canvas->drawCircle(50, 50, 40, paint);
paint.setARGB(128, 255, 0, 0); // transparent red
canvas->drawCircle(80, 50, 40, paint);
paint.setColor(SK_ColorBLUE);
paint.setAlpha(0x80);
canvas->drawCircle(65, 65, 40, paint);
}
##
#Method SkColor getColor() const
#In Color_Methods
#Line # returns Color_Alpha and Color_RGB, one drawing color ##
Retrieves Alpha and Color_RGB, Unpremultiplied, packed into 32 bits.
Use helpers SkColorGetA, SkColorGetR, SkColorGetG, and SkColorGetB to extract
a color component.
#Return Unpremultiplied Color_ARGB ##
#Example
SkPaint paint;
paint.setColor(SK_ColorYELLOW);
SkColor y = paint.getColor();
SkDebugf("Yellow is %d%% red, %d%% green, and %d%% blue.\n", (int) (SkColorGetR(y) / 2.55f),
(int) (SkColorGetG(y) / 2.55f), (int) (SkColorGetB(y) / 2.55f));
#StdOut
Yellow is 100% red, 100% green, and 0% blue.
##
##
#SeeAlso SkColor
##
#Method void setColor(SkColor color)
#In Color_Methods
#Line # sets Color_Alpha and Color_RGB, one drawing color ##
Sets Alpha and Color_RGB used when stroking and filling. The color is a 32-bit value,
Unpremultiplied, packing 8-bit components for Alpha, Red, Blue, and Green.
#Param color Unpremultiplied Color_ARGB ##
#Example
SkPaint green1, green2;
unsigned a = 255;
unsigned r = 0;
unsigned g = 255;
unsigned b = 0;
green1.setColor((a << 24) + (r << 16) + (g << 8) + (b << 0));
green2.setColor(0xFF00FF00);
SkDebugf("green1 %c= green2\n", green1 == green2 ? '=' : '!');
#StdOut
green1 == green2
##
##
#SeeAlso SkColor setARGB SkColorSetARGB
##
#Subtopic Color_Methods ##
#Subtopic Alpha_Methods
#Line # get and set Alpha ##
Color_Alpha sets the transparency independent of Color_RGB: Color_RGB_Red, Color_RGB_Blue, and Color_RGB_Green.
#Method uint8_t getAlpha() const
#In Alpha_Methods
#Line # returns Color_Alpha, color opacity ##
Retrieves Alpha from the Color used when stroking and filling.
#Return Alpha ranging from zero, fully transparent, to 255, fully opaque ##
#Example
SkPaint paint;
SkDebugf("255 %c= paint.getAlpha()\n", 255 == paint.getAlpha() ? '=' : '!');
#StdOut
255 == paint.getAlpha()
##
##
##
#Method void setAlpha(U8CPU a)
#In Alpha_Methods
#Line # sets Color_Alpha, color opacity ##
Replaces Alpha, leaving Color_RGB
unchanged. An out of range value triggers an assert in the debug
build. a is a value from zero to 255.
a set to zero makes Color fully transparent; a set to 255 makes Color
fully opaque.
#Param a Alpha component of Color ##
#Example
SkPaint paint;
paint.setColor(0x00112233);
paint.setAlpha(0x44);
SkDebugf("0x44112233 %c= paint.getColor()\n", 0x44112233 == paint.getColor() ? '=' : '!');
#StdOut
0x44112233 == paint.getColor()
##
##
##
#Subtopic Alpha_Methods ##
#Method void setARGB(U8CPU a, U8CPU r, U8CPU g, U8CPU b)
#In Color_Methods
#Line # sets color by component ##
Sets Color used when drawing solid fills. The color components range from 0 to 255.
The color is Unpremultiplied; Alpha sets the transparency independent of Color_RGB.
#Param a amount of Color_Alpha, from fully transparent (0) to fully opaque (255) ##
#Param r amount of Color_RGB_Red, from no red (0) to full red (255) ##
#Param g amount of Color_RGB_Green, from no green (0) to full green (255) ##
#Param b amount of Color_RGB_Blue, from no blue (0) to full blue (255) ##
#Example
SkPaint transRed1, transRed2;
transRed1.setARGB(255 / 2, 255, 0, 0);
transRed2.setColor(SkColorSetARGB(255 / 2, 255, 0, 0));
SkDebugf("transRed1 %c= transRed2", transRed1 == transRed2 ? '=' : '!');
#StdOut
transRed1 == transRed2
##
##
#SeeAlso setColor SkColorSetARGB
##
# ------------------------------------------------------------------------------
#Subtopic Style
#Line # geometry filling, stroking ##
Style specifies if the geometry is filled, stroked, or both filled and stroked.
Some shapes ignore Style and are always drawn filled or stroked.
Set Style to kFill_Style to fill the shape.
The fill covers the area inside the geometry for most shapes.
Set Style to kStroke_Style to stroke the shape.
# ------------------------------------------------------------------------------
#Subtopic Fill
#Line # fill and stroke ##
#ToDo write up whatever generalities make sense to describe filling ##
#SeeAlso Path_Fill_Type
#Subtopic Fill ##
#Subtopic Stroke
#Line # lines and curves with width ##
The stroke covers the area described by following the shape edge with a pen or brush of
Stroke_Width. The area covered where the shape starts and stops is described by Stroke_Cap.
The area covered where the shape turns a corner is described by Stroke_Join.
The stroke is centered on the shape; it extends equally on either side of the shape edge.
As Stroke_Width gets smaller, the drawn path frame is thinner. Stroke_Width less than one
may have gaps, and if kAntiAlias_Flag is set, Color_Alpha will increase to visually decrease coverage.
#Subtopic Stroke ##
#Subtopic Hairline
#Line # lines and curves with minimal width ##
#Alias Hairline # maybe should be Stroke_Hairline ?
Stroke_Width of zero has a special meaning and switches drawing to use Hairline.
Hairline draws the thinnest continuous frame. If kAntiAlias_Flag is clear, adjacent pixels
flow horizontally, vertically,or diagonally.
#ToDo what is the description of Anti-aliased hairlines? ##
Path drawing with Hairline may hit the same pixel more than once. For instance, Path containing
two lines in one Path_Contour will draw the corner point once, but may both lines may draw the adjacent
pixel. If kAntiAlias_Flag is set, transparency is applied twice, resulting in a darker pixel. Some
GPU-backed implementations apply transparency at a later drawing stage, avoiding double hit pixels
while stroking.
#Subtopic Hairline ##
#Enum Style
#Line # stroke, fill, or both ##
#Code
enum Style {
kFill_Style,
kStroke_Style,
kStrokeAndFill_Style,
};
##
Set Style to fill, stroke, or both fill and stroke geometry.
The stroke and fill
share all paint attributes; for instance, they are drawn with the same color.
Use kStrokeAndFill_Style to avoid hitting the same pixels twice with a stroke draw and
a fill draw.
#Const kFill_Style 0
Set to fill geometry.
Applies to Rect, Region, Round_Rect, Circles, Ovals, Path, and Text.
Bitmap, Image, Patches, Region, Sprites, and Vertices are painted as if
kFill_Style is set, and ignore the set Style.
The Path_Fill_Type specifies additional rules to fill the area outside the path edge,
and to create an unfilled hole inside the shape.
Style is set to kFill_Style by default.
##
#Const kStroke_Style 1
Set to stroke geometry.
Applies to Rect, Region, Round_Rect, Arcs, Circles, Ovals, Path, and Text.
Arcs, Lines, and points, are always drawn as if kStroke_Style is set,
and ignore the set Style.
The stroke construction is unaffected by the Path_Fill_Type.
##
#Const kStrokeAndFill_Style 2
Set to stroke and fill geometry.
Applies to Rect, Region, Round_Rect, Circles, Ovals, Path, and Text.
Path is treated as if it is set to SkPath::kWinding_FillType,
and the set Path_Fill_Type is ignored.
##
#Enum Style ##
#Enum
#Line # number of Style defines ##
#Code
enum {
kStyleCount = kStrokeAndFill_Style + 1,
};
##
#Const kStyleCount 3
The number of different Style values defined.
May be used to verify that Style is a legal value.
##
#Enum ##
#Method Style getStyle() const
#In Style
#Line # returns Style: stroke, fill, or both ##
Whether the geometry is filled, stroked, or filled and stroked.
#Return one of:kFill_Style, kStroke_Style, kStrokeAndFill_Style ##
#Example
SkPaint paint;
SkDebugf("SkPaint::kFill_Style %c= paint.getStyle()\n",
SkPaint::kFill_Style == paint.getStyle() ? '=' : '!');
#StdOut
SkPaint::kFill_Style == paint.getStyle()
##
##
#SeeAlso Style setStyle
##
#Method void setStyle(Style style)
#In Style
#Line # sets Style: stroke, fill, or both ##
Sets whether the geometry is filled, stroked, or filled and stroked.
Has no effect if style is not a legal Style value.
#Param style one of: kFill_Style, kStroke_Style, kStrokeAndFill_Style
##
#Example
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setStrokeWidth(5);
SkRegion region;
region.op(140, 10, 160, 30, SkRegion::kUnion_Op);
region.op(170, 40, 190, 60, SkRegion::kUnion_Op);
SkBitmap bitmap;
bitmap.setInfo(SkImageInfo::MakeA8(50, 50), 50);
uint8_t pixels[50][50];
for (int x = 0; x < 50; ++x) {
for (int y = 0; y < 50; ++y) {
pixels[y][x] = (x + y) % 5 ? 0xFF : 0x00;
}
}
bitmap.setPixels(pixels);
for (auto style : { SkPaint::kFill_Style,
SkPaint::kStroke_Style,
SkPaint::kStrokeAndFill_Style }) {
paint.setStyle(style);
canvas->drawLine(10, 10, 60, 60, paint);
canvas->drawRect({80, 10, 130, 60}, paint);
canvas->drawRegion(region, paint);
canvas->drawBitmap(bitmap, 200, 10, &paint);
canvas->translate(0, 80);
}
}
##
#SeeAlso Style getStyle
##
#SeeAlso Path_Fill_Type Path_Effect Style_Fill Style_Stroke
#Subtopic Style ##
# ------------------------------------------------------------------------------
#Subtopic Stroke_Width
#Line # thickness perpendicular to geometry ##
Stroke_Width sets the width for stroking. The width is the thickness
of the stroke perpendicular to the path direction when the paint style is
set to kStroke_Style or kStrokeAndFill_Style.
When width is greater than zero, the stroke encompasses as many pixels partially
or fully as needed. When the width equals zero, the paint enables hairlines;
the stroke is always one pixel wide.
The stroke dimensions are scaled by the canvas matrix, but Hairline stroke
remains one pixel wide regardless of scaling.
The default width for the paint is zero.
#Example
#Height 170
#Platform raster gpu
#Description
The pixels hit to represent thin lines vary with the angle of the
line and the platform implementation.
##
void draw(SkCanvas* canvas) {
SkPaint paint;
for (bool antialias : { false, true }) {
paint.setAntiAlias(antialias);
for (int width = 0; width <= 4; ++width) {
SkScalar offset = antialias * 100 + width * 20;
paint.setStrokeWidth(width * 0.25f);
canvas->drawLine(10 + offset, 10, 20 + offset, 60, paint);
canvas->drawLine(10 + offset, 110, 60 + offset, 160, paint);
}
}
}
##
#Method SkScalar getStrokeWidth() const
#In Stroke_Width
#Line # returns thickness of the stroke ##
Returns the thickness of the pen used by Paint to
outline the shape.
#Return zero for Hairline, greater than zero for pen thickness ##
#Example
SkPaint paint;
SkDebugf("0 %c= paint.getStrokeWidth()\n", 0 == paint.getStrokeWidth() ? '=' : '!');
#StdOut
0 == paint.getStrokeWidth()
##
##
##
#Method void setStrokeWidth(SkScalar width)
#In Stroke_Width
#Line # sets thickness of the stroke ##
Sets the thickness of the pen used by the paint to
outline the shape.
Has no effect if width is less than zero.
#Param width zero thickness for Hairline; greater than zero for pen thickness
##
#Example
SkPaint paint;
paint.setStrokeWidth(5);
paint.setStrokeWidth(-1);
SkDebugf("5 %c= paint.getStrokeWidth()\n", 5 == paint.getStrokeWidth() ? '=' : '!');
#StdOut
5 == paint.getStrokeWidth()
##
##
##
#Subtopic Stroke_Width ##
# ------------------------------------------------------------------------------
#Subtopic Miter_Limit
#Line # maximum length of stroked corners ##
Miter_Limit specifies the maximum miter length,
relative to the stroke width.
Miter_Limit is used when the Stroke_Join
is set to kMiter_Join, and the Style is either kStroke_Style
or kStrokeAndFill_Style.
If the miter at a corner exceeds this limit, kMiter_Join
is replaced with kBevel_Join.
Miter_Limit can be computed from the corner angle:
#Formula
miter limit = 1 / sin ( angle / 2 )
#Formula ##
Miter_Limit default value is 4.
The default may be changed at compile time by setting SkPaintDefaults_MiterLimit
in "SkUserConfig.h" or as a define supplied by the build environment.
Here are some miter limits and the angles that triggers them.
#Table
#Legend
# miter limit # angle in degrees ##
#Legend ##
# 10 # 11.48 ##
# 9 # 12.76 ##
# 8 # 14.36 ##
# 7 # 16.43 ##
# 6 # 19.19 ##
# 5 # 23.07 ##
# 4 # 28.96 ##
# 3 # 38.94 ##
# 2 # 60 ##
# 1 # 180 ##
#Table ##
#Example
#Height 170
#Width 384
#Description
This example draws a stroked corner and the miter length beneath.
When the miter limit is decreased slightly, the miter join is replaced
by a bevel join.
##
void draw(SkCanvas* canvas) {
SkPoint pts[] = {{ 10, 50 }, { 110, 80 }, { 10, 110 }};
SkVector v[] = { pts[0] - pts[1], pts[2] - pts[1] };
SkScalar angle1 = SkScalarATan2(v[0].fY, v[0].fX);
SkScalar angle2 = SkScalarATan2(v[1].fY, v[1].fX);
const SkScalar strokeWidth = 20;
SkScalar miterLimit = 1 / SkScalarSin((angle2 - angle1) / 2);
SkScalar miterLength = strokeWidth * miterLimit;
SkPath path;
path.moveTo(pts[0]);
path.lineTo(pts[1]);
path.lineTo(pts[2]);
SkPaint paint; // set to default kMiter_Join
paint.setAntiAlias(true);
paint.setStyle(SkPaint::kStroke_Style);
paint.setStrokeMiter(miterLimit);
paint.setStrokeWidth(strokeWidth);
canvas->drawPath(path, paint);
paint.setStrokeWidth(1);
canvas->drawLine(pts[1].fX - miterLength / 2, pts[1].fY + 50,
pts[1].fX + miterLength / 2, pts[1].fY + 50, paint);
canvas->translate(200, 0);
miterLimit *= 0.99f;
paint.setStrokeMiter(miterLimit);
paint.setStrokeWidth(strokeWidth);
canvas->drawPath(path, paint);
paint.setStrokeWidth(1);
canvas->drawLine(pts[1].fX - miterLength / 2, pts[1].fY + 50,
pts[1].fX + miterLength / 2, pts[1].fY + 50, paint);
}
##
#Method SkScalar getStrokeMiter() const
#In Miter_Limit
#Line # returns Miter_Limit, angles with sharp corners ##
The limit at which a sharp corner is drawn beveled.
#Return zero and greater Miter_Limit ##
#Example
SkPaint paint;
SkDebugf("default miter limit == %g\n", paint.getStrokeMiter());
#StdOut
default miter limit == 4
##
##
#SeeAlso Miter_Limit setStrokeMiter Join
##
#Method void setStrokeMiter(SkScalar miter)
#In Miter_Limit
#Line # sets Miter_Limit, angles with sharp corners ##
The limit at which a sharp corner is drawn beveled.
Valid values are zero and greater.
Has no effect if miter is less than zero.
#Param miter zero and greater Miter_Limit
##
#Example
SkPaint paint;
paint.setStrokeMiter(8);
paint.setStrokeMiter(-1);
SkDebugf("default miter limit == %g\n", paint.getStrokeMiter());
#StdOut
default miter limit == 8
##
##
#SeeAlso Miter_Limit getStrokeMiter Join
##
#Subtopic Miter_Limit ##
# ------------------------------------------------------------------------------
#Subtopic Stroke_Cap
#Line # decorations at ends of open strokes ##
#Enum Cap
#Line # start and end geometry on stroked shapes ##
#Code
enum Cap {
kButt_Cap,
kRound_Cap,
kSquare_Cap,
kLast_Cap = kSquare_Cap,
kDefault_Cap = kButt_Cap,
};
static constexpr int kCapCount = kLast_Cap + 1;
##
Stroke_Cap draws at the beginning and end of an open Path_Contour.
#Const kButt_Cap 0
Does not extend the stroke past the beginning or the end.
##
#Const kRound_Cap 1
Adds a circle with a diameter equal to Stroke_Width at the beginning
and end.
##
#Const kSquare_Cap 2
Adds a square with sides equal to Stroke_Width at the beginning
and end. The square sides are parallel to the initial and final direction
of the stroke.
##
#Const kLast_Cap 2
Equivalent to the largest value for Stroke_Cap.
##
#Const kDefault_Cap 0
Equivalent to kButt_Cap.
Stroke_Cap is set to kButt_Cap by default.
##
#Const kCapCount 3
The number of different Stroke_Cap values defined.
May be used to verify that Stroke_Cap is a legal value.
##
#Enum ##
Stroke describes the area covered by a pen of Stroke_Width as it
follows the Path_Contour, moving parallel to the contour direction.
If the Path_Contour is not terminated by SkPath::kClose_Verb, the contour has a
visible beginning and end.
Path_Contour may start and end at the same point; defining Zero_Length_Contour.
kButt_Cap and Zero_Length_Contour is not drawn.
kRound_Cap and Zero_Length_Contour draws a circle of diameter Stroke_Width
at the contour point.
kSquare_Cap and Zero_Length_Contour draws an upright square with a side of
Stroke_Width at the contour point.
Stroke_Cap is kButt_Cap by default.
#Example
#Height 200
SkPaint paint;
paint.setStyle(SkPaint::kStroke_Style);
paint.setStrokeWidth(20);
SkPath path;
path.moveTo(30, 30);
path.lineTo(30, 30);
path.moveTo(70, 30);
path.lineTo(90, 40);
for (SkPaint::Cap c : { SkPaint::kButt_Cap, SkPaint::kRound_Cap, SkPaint::kSquare_Cap } ) {
paint.setStrokeCap(c);
canvas->drawPath(path, paint);
canvas->translate(0, 70);
}
##
#Method Cap getStrokeCap() const
#In Stroke_Cap
#Line # returns Cap, the area drawn at path ends ##
The geometry drawn at the beginning and end of strokes.
#Return one of: kButt_Cap, kRound_Cap, kSquare_Cap ##
#Example
SkPaint paint;
SkDebugf("kButt_Cap %c= default stroke cap\n",
SkPaint::kButt_Cap == paint.getStrokeCap() ? '=' : '!');
#StdOut
kButt_Cap == default stroke cap
##
##
#SeeAlso Stroke_Cap setStrokeCap
##
#Method void setStrokeCap(Cap cap)
#In Stroke_Cap
#Line # sets Cap, the area drawn at path ends ##
The geometry drawn at the beginning and end of strokes.
#Param cap one of: kButt_Cap, kRound_Cap, kSquare_Cap;
has no effect if cap is not valid
##
#Example
SkPaint paint;
paint.setStrokeCap(SkPaint::kRound_Cap);
paint.setStrokeCap((SkPaint::Cap) SkPaint::kCapCount);
SkDebugf("kRound_Cap %c= paint.getStrokeCap()\n",
SkPaint::kRound_Cap == paint.getStrokeCap() ? '=' : '!');
#StdOut
kRound_Cap == paint.getStrokeCap()
##
##
#SeeAlso Stroke_Cap getStrokeCap
##
#Subtopic Stroke_Cap ##
# ------------------------------------------------------------------------------
#Subtopic Stroke_Join
#Line # decoration at corners of strokes ##
Stroke_Join draws at the sharp corners of an open or closed Path_Contour.
Stroke describes the area covered by a pen of Stroke_Width as it
follows the Path_Contour, moving parallel to the contour direction.
If the contour direction changes abruptly, because the tangent direction leading
to the end of a curve within the contour does not match the tangent direction of
the following curve, the pair of curves meet at Stroke_Join.
#Example
#Height 200
SkPaint paint;
paint.setStyle(SkPaint::kStroke_Style);
paint.setStrokeWidth(20);
SkPath path;
path.moveTo(30, 20);
path.lineTo(40, 40);
path.conicTo(70, 20, 100, 20, .707f);
for (SkPaint::Join j : { SkPaint::kMiter_Join, SkPaint::kRound_Join, SkPaint::kBevel_Join } ) {
paint.setStrokeJoin(j);
canvas->drawPath(path, paint);
canvas->translate(0, 70);
}
##
#Enum Join
#Line # corner geometry on stroked shapes ##
#Code
enum Join {
kMiter_Join,
kRound_Join,
kBevel_Join,
kLast_Join = kBevel_Join,
kDefault_Join = kMiter_Join,
};
static constexpr int kJoinCount = kLast_Join + 1;
##
Join specifies how corners are drawn when a shape is stroked. Join
affects the four corners of a stroked rectangle, and the connected segments in a
stroked path.
Choose miter join to draw sharp corners. Choose round join to draw a circle with a
radius equal to the stroke width on top of the corner. Choose bevel join to minimally
connect the thick strokes.
The fill path constructed to describe the stroked path respects the join setting but may
not contain the actual join. For instance, a fill path constructed with round joins does
not necessarily include circles at each connected segment.
#Const kMiter_Join 0
Extends the outside corner to the extent allowed by Miter_Limit.
If the extension exceeds Miter_Limit, kBevel_Join is used instead.
##
#Const kRound_Join 1
Adds a circle with a diameter of Stroke_Width at the sharp corner.
##
#Const kBevel_Join 2
Connects the outside edges of the sharp corner.
##
#Const kLast_Join 2
Equivalent to the largest value for Stroke_Join.
##
#Const kDefault_Join 1
Equivalent to kMiter_Join.
Stroke_Join is set to kMiter_Join by default.
##
#Const kJoinCount 3
The number of different Stroke_Join values defined.
May be used to verify that Stroke_Join is a legal value.
##
#Example
#Width 462
void draw(SkCanvas* canvas) {
SkPath path;
path.moveTo(10, 50);
path.quadTo(35, 110, 60, 210);
path.quadTo(105, 110, 130, 10);
SkPaint paint; // set to default kMiter_Join
paint.setAntiAlias(true);
paint.setStyle(SkPaint::kStroke_Style);
paint.setStrokeWidth(20);
canvas->drawPath(path, paint);
canvas->translate(150, 0);
paint.setStrokeJoin(SkPaint::kBevel_Join);
canvas->drawPath(path, paint);
canvas->translate(150, 0);
paint.setStrokeJoin(SkPaint::kRound_Join);
canvas->drawPath(path, paint);
}
##
#SeeAlso setStrokeJoin getStrokeJoin setStrokeMiter getStrokeMiter
#Enum ##
#Method Join getStrokeJoin() const
#In Stroke_Join
#Line # returns Join, geometry on path corners ##
The geometry drawn at the corners of strokes.
#Return one of: kMiter_Join, kRound_Join, kBevel_Join ##
#Example
SkPaint paint;
SkDebugf("kMiter_Join %c= default stroke join\n",
SkPaint::kMiter_Join == paint.getStrokeJoin() ? '=' : '!');
#StdOut
kMiter_Join == default stroke join
##
##
#SeeAlso Stroke_Join setStrokeJoin
##
#Method void setStrokeJoin(Join join)
#In Stroke_Join
#Line # sets Join, geometry on path corners ##
The geometry drawn at the corners of strokes.
#Param join one of: kMiter_Join, kRound_Join, kBevel_Join;
otherwise, has no effect
##
#Example
SkPaint paint;
paint.setStrokeJoin(SkPaint::kMiter_Join);
paint.setStrokeJoin((SkPaint::Join) SkPaint::kJoinCount);
SkDebugf("kMiter_Join %c= paint.getStrokeJoin()\n",
SkPaint::kMiter_Join == paint.getStrokeJoin() ? '=' : '!');
#StdOut
kMiter_Join == paint.getStrokeJoin()
##
##
#SeeAlso Stroke_Join getStrokeJoin
##
#SeeAlso Miter_Limit
#Subtopic Stroke_Join ##
# ------------------------------------------------------------------------------
#Subtopic Fill_Path
#Line # make Path from Path_Effect, stroking ##
Fill_Path creates a Path by applying the Path_Effect, followed by the Style_Stroke.
If Paint contains Path_Effect, Path_Effect operates on the source Path; the result
replaces the destination Path. Otherwise, the source Path is replaces the
destination Path.
Fill Path can request the Path_Effect to restrict to a culling rectangle, but
the Path_Effect is not required to do so.
If Style is kStroke_Style or kStrokeAndFill_Style,
and Stroke_Width is greater than zero, the Stroke_Width, Stroke_Cap, Stroke_Join,
and Miter_Limit operate on the destination Path, replacing it.
Fill Path can specify the precision used by Stroke_Width to approximate the stroke geometry.
If the Style is kStroke_Style and the Stroke_Width is zero, getFillPath
returns false since Hairline has no filled equivalent.
#Method bool getFillPath(const SkPath& src, SkPath* dst, const SkRect* cullRect,
SkScalar resScale = 1) const
#In Fill_Path
#Line # returns fill path equivalent to stroke ##
The filled equivalent of the stroked path.
#Param src Path read to create a filled version ##
#Param dst resulting Path; may be the same as src, but may not be nullptr ##
#Param cullRect optional limit passed to Path_Effect ##
#Param resScale if > 1, increase precision, else if (0 < res < 1) reduce precision
to favor speed and size
##
#Return true if the path represents Style_Fill, or false if it represents Hairline ##
#Example
#Height 192
#Description
A very small Quad stroke is turned into a filled path with increasing levels of precision.
At the lowest precision, the Quad stroke is approximated by a rectangle.
At the highest precision, the filled path has high fidelity compared to the original stroke.
##
void draw(SkCanvas* canvas) {
SkPaint strokePaint;
strokePaint.setAntiAlias(true);
strokePaint.setStyle(SkPaint::kStroke_Style);
strokePaint.setStrokeWidth(.1f);
SkPath strokePath;
strokePath.moveTo(.08f, .08f);
strokePath.quadTo(.09f, .08f, .17f, .17f);
SkPath fillPath;
SkPaint outlinePaint(strokePaint);
outlinePaint.setStrokeWidth(2);
SkMatrix scale = SkMatrix::MakeScale(300, 300);
for (SkScalar precision : { 0.01f, .1f, 1.f, 10.f, 100.f } ) {
strokePaint.getFillPath(strokePath, &fillPath, nullptr, precision);
fillPath.transform(scale);
canvas->drawPath(fillPath, outlinePaint);
canvas->translate(60, 0);
if (1.f == precision) canvas->translate(-180, 100);
}
strokePath.transform(scale);
strokePaint.setStrokeWidth(30);
canvas->drawPath(strokePath, strokePaint);
}
##
##
#Method bool getFillPath(const SkPath& src, SkPath* dst) const
#In Fill_Path
The filled equivalent of the stroked path.
Replaces dst with the src path modified by Path_Effect and Style_Stroke.
Path_Effect, if any, is not culled. Stroke_Width is created with default precision.
#Param src Path read to create a filled version ##
#Param dst resulting Path dst may be the same as src, but may not be nullptr ##
#Return true if the path represents Style_Fill, or false if it represents Hairline ##
#Example
#Height 128
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setStyle(SkPaint::kStroke_Style);
paint.setStrokeWidth(10);
SkPath strokePath;
strokePath.moveTo(20, 20);
strokePath.lineTo(100, 100);
canvas->drawPath(strokePath, paint);
SkPath fillPath;
paint.getFillPath(strokePath, &fillPath);
paint.setStrokeWidth(2);
canvas->translate(40, 0);
canvas->drawPath(fillPath, paint);
}
##
##
#SeeAlso Style_Stroke Stroke_Width Path_Effect
#Subtopic Fill_Path ##
# ------------------------------------------------------------------------------
#Subtopic Shader_Methods
#Line # get and set Shader ##
Shader defines the colors used when drawing a shape.
Shader may be an image, a gradient, or a computed fill.
If Paint has no Shader, then Color fills the shape.
Shader is modulated by Color_Alpha component of Color.
If Shader object defines only Color_Alpha, then Color modulated by Color_Alpha describes
the fill.
The drawn transparency can be modified without altering Shader, by changing Color_Alpha.
#Example
void draw(SkCanvas* canvas) {
SkPaint paint;
SkPoint center = { 50, 50 };
SkScalar radius = 50;
const SkColor colors[] = { 0xFFFFFFFF, 0xFF000000 };
paint.setShader(SkGradientShader::MakeRadial(center, radius, colors,
nullptr, SK_ARRAY_COUNT(colors), SkShader::kClamp_TileMode));
for (SkScalar a : { 0.3f, 0.6f, 1.0f } ) {
paint.setAlpha((int) (a * 255));
canvas->drawCircle(center.fX, center.fY, radius, paint);
canvas->translate(70, 70);
}
}
##
If Shader generates only Color_Alpha then all components of Color modulate the output.
#Example
void draw(SkCanvas* canvas) {
SkPaint paint;
SkBitmap bitmap;
bitmap.setInfo(SkImageInfo::MakeA8(5, 1), 5); // bitmap only contains alpha
uint8_t pixels[5] = { 0x22, 0x55, 0x88, 0xBB, 0xFF };
bitmap.setPixels(pixels);
paint.setShader(SkShader::MakeBitmapShader(bitmap,
SkShader::kMirror_TileMode, SkShader::kMirror_TileMode));
for (SkColor c : { SK_ColorRED, SK_ColorBLUE, SK_ColorGREEN } ) {
paint.setColor(c); // all components in color affect shader
canvas->drawCircle(50, 50, 50, paint);
canvas->translate(70, 70);
}
}
##
#Method SkShader* getShader() const
#In Shader_Methods
#Line # returns Shader, multiple drawing colors; gradients ##
Optional colors used when filling a path, such as a gradient.
Does not alter Shader Reference_Count.
#Return Shader if previously set, nullptr otherwise ##
#Example
void draw(SkCanvas* canvas) {
SkPaint paint;
SkDebugf("nullptr %c= shader\n", paint.getShader() ? '!' : '=');
paint.setShader(SkShader::MakeEmptyShader());
SkDebugf("nullptr %c= shader\n", paint.getShader() ? '!' : '=');
}
#StdOut
nullptr == shader
nullptr != shader
##
##
##
#Method sk_sp<SkShader> refShader() const
#In Shader_Methods
#Line # references Shader, multiple drawing colors; gradients ##
Optional colors used when filling a path, such as a gradient.
Increases Shader Reference_Count by one.
#Return Shader if previously set, nullptr otherwise ##
#Example
void draw(SkCanvas* canvas) {
SkPaint paint1, paint2;
paint1.setShader(SkShader::MakeEmptyShader());
SkDebugf("shader unique: %s\n", paint1.getShader()->unique() ? "true" : "false");
paint2.setShader(paint1.refShader());
SkDebugf("shader unique: %s\n", paint1.getShader()->unique() ? "true" : "false");
}
#StdOut
shader unique: true
shader unique: false
##
##
##
#Method void setShader(sk_sp<SkShader> shader)
#In Shader_Methods
#Line # sets Shader, multiple drawing colors; gradients ##
Optional colors used when filling a path, such as a gradient.
Sets Shader to shader, decreasing Reference_Count of the previous Shader.
Increments shader Reference_Count by one.
#Param shader how geometry is filled with color; if nullptr, Color is used instead ##
#Example
#Height 64
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setColor(SK_ColorBLUE);
paint.setShader(SkShader::MakeColorShader(SK_ColorRED));
canvas->drawRect(SkRect::MakeWH(40, 40), paint);
paint.setShader(nullptr);
canvas->translate(50, 0);
canvas->drawRect(SkRect::MakeWH(40, 40), paint);
}
##
##
#Subtopic Shader_Methods ##
# ------------------------------------------------------------------------------
#Subtopic Color_Filter_Methods
#Line # get and set Color_Filter ##
Color_Filter alters the color used when drawing a shape.
Color_Filter may apply Blend_Mode, transform the color through a matrix, or composite multiple filters.
If Paint has no Color_Filter, the color is unaltered.
The drawn transparency can be modified without altering Color_Filter, by changing Color_Alpha.
#Example
#Height 128
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setColorFilter(SkColorMatrixFilter::MakeLightingFilter(0xFFFFFF, 0xFF0000));
for (SkColor c : { SK_ColorBLACK, SK_ColorGREEN } ) {
paint.setColor(c);
canvas->drawRect(SkRect::MakeXYWH(10, 10, 50, 50), paint);
paint.setAlpha(0x80);
canvas->drawRect(SkRect::MakeXYWH(60, 60, 50, 50), paint);
canvas->translate(100, 0);
}
}
##
#Method SkColorFilter* getColorFilter() const
#In Color_Filter_Methods
#Line # returns Color_Filter, how colors are altered ##
Returns Color_Filter if set, or nullptr.
Does not alter Color_Filter Reference_Count.
#Return Color_Filter if previously set, nullptr otherwise ##
#Example
void draw(SkCanvas* canvas) {
SkPaint paint;
SkDebugf("nullptr %c= color filter\n", paint.getColorFilter() ? '!' : '=');
paint.setColorFilter(SkColorFilter::MakeModeFilter(SK_ColorLTGRAY, SkBlendMode::kSrcIn));
SkDebugf("nullptr %c= color filter\n", paint.getColorFilter() ? '!' : '=');
}
#StdOut
nullptr == color filter
nullptr != color filter
##
##
##
#Method sk_sp<SkColorFilter> refColorFilter() const
#In Color_Filter_Methods
#Line # references Color_Filter, how colors are altered ##
Returns Color_Filter if set, or nullptr.
Increases Color_Filter Reference_Count by one.
#Return Color_Filter if set, or nullptr ##
#Example
void draw(SkCanvas* canvas) {
SkPaint paint1, paint2;
paint1.setColorFilter(SkColorFilter::MakeModeFilter(0xFFFF0000, SkBlendMode::kSrcATop));
SkDebugf("color filter unique: %s\n", paint1.getColorFilter()->unique() ? "true" : "false");
paint2.setColorFilter(paint1.refColorFilter());
SkDebugf("color filter unique: %s\n", paint1.getColorFilter()->unique() ? "true" : "false");
}
#StdOut
color filter unique: true
color filter unique: false
##
##
##
#Method void setColorFilter(sk_sp<SkColorFilter> colorFilter)
#In Color_Filter_Methods
#Line # sets Color_Filter, alters color ##
Sets Color_Filter to filter, decreasing Reference_Count of the previous
Color_Filter. Pass nullptr to clear Color_Filter.
Increments filter Reference_Count by one.
#Param colorFilter Color_Filter to apply to subsequent draw ##
#Example
#Height 64
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setColorFilter(SkColorFilter::MakeModeFilter(SK_ColorLTGRAY, SkBlendMode::kSrcIn));
canvas->drawRect(SkRect::MakeWH(50, 50), paint);
paint.setColorFilter(nullptr);
canvas->translate(70, 0);
canvas->drawRect(SkRect::MakeWH(50, 50), paint);
}
##
##
#Subtopic Color_Filter_Methods ##
# ------------------------------------------------------------------------------
#Subtopic Blend_Mode_Methods
#Line # get and set Blend_Mode ##
Blend_Mode describes how Color combines with the destination color.
The default setting, SkBlendMode::kSrcOver, draws the source color
over the destination color.
#Example
void draw(SkCanvas* canvas) {
SkPaint normal, blender;
normal.setColor(0xFF58a889);
blender.setColor(0xFF8958a8);
canvas->clear(0);
for (SkBlendMode m : { SkBlendMode::kSrcOver, SkBlendMode::kSrcIn, SkBlendMode::kSrcOut } ) {
normal.setBlendMode(SkBlendMode::kSrcOver);
canvas->drawOval(SkRect::MakeXYWH(30, 30, 30, 80), normal);
blender.setBlendMode(m);
canvas->drawOval(SkRect::MakeXYWH(10, 50, 80, 30), blender);
canvas->translate(70, 70);
}
}
##
#SeeAlso Blend_Mode
#Method SkBlendMode getBlendMode() const
#In Blend_Mode_Methods
#Line # returns Blend_Mode, how colors combine with Device ##
Returns Blend_Mode.
By default, returns SkBlendMode::kSrcOver.
#Return mode used to combine source color with destination color ##
#Example
void draw(SkCanvas* canvas) {
SkPaint paint;
SkDebugf("kSrcOver %c= getBlendMode\n",
SkBlendMode::kSrcOver == paint.getBlendMode() ? '=' : '!');
paint.setBlendMode(SkBlendMode::kSrc);
SkDebugf("kSrcOver %c= getBlendMode\n",
SkBlendMode::kSrcOver == paint.getBlendMode() ? '=' : '!');
}
#StdOut
kSrcOver == getBlendMode
kSrcOver != getBlendMode
##
##
##
#Method bool isSrcOver() const
#In Blend_Mode_Methods
#Line # returns true if Blend_Mode is SkBlendMode::kSrcOver ##
Returns true if Blend_Mode is SkBlendMode::kSrcOver, the default.
#Return true if Blend_Mode is SkBlendMode::kSrcOver ##
#Example
void draw(SkCanvas* canvas) {
SkPaint paint;
SkDebugf("isSrcOver %c= true\n", paint.isSrcOver() ? '=' : '!');
paint.setBlendMode(SkBlendMode::kSrc);
SkDebugf("isSrcOver %c= true\n", paint.isSrcOver() ? '=' : '!');
}
#StdOut
isSrcOver == true
isSrcOver != true
##
##
##
#Method void setBlendMode(SkBlendMode mode)
#In Blend_Mode_Methods
#Line # sets Blend_Mode, how colors combine with destination ##
Sets Blend_Mode to mode.
Does not check for valid input.
#Param mode SkBlendMode used to combine source color and destination ##
#Example
void draw(SkCanvas* canvas) {
SkPaint paint;
SkDebugf("isSrcOver %c= true\n", paint.isSrcOver() ? '=' : '!');
paint.setBlendMode(SkBlendMode::kSrc);
SkDebugf("isSrcOver %c= true\n", paint.isSrcOver() ? '=' : '!');
}
#StdOut
isSrcOver == true
isSrcOver != true
##
##
##
#Subtopic Blend_Mode_Methods ##
# ------------------------------------------------------------------------------
#Subtopic Path_Effect_Methods
#Line # get and set Path_Effect ##
Path_Effect modifies the path geometry before drawing it.
Path_Effect may implement dashing, custom fill effects and custom stroke effects.
If Paint has no Path_Effect, the path geometry is unaltered when filled or stroked.
#Example
#Height 160
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setStyle(SkPaint::kStroke_Style);
paint.setStrokeWidth(16);
SkScalar intervals[] = {30, 10};
paint.setPathEffect(SkDashPathEffect::Make(intervals, SK_ARRAY_COUNT(intervals), 1));
canvas->drawRoundRect({20, 20, 120, 120}, 20, 20, paint);
}
##
#SeeAlso Path_Effect
#Method SkPathEffect* getPathEffect() const
#In Path_Effect_Methods
#Line # returns Path_Effect, modifications to path geometry; dashing ##
Returns Path_Effect if set, or nullptr.
Does not alter Path_Effect Reference_Count.
#Return Path_Effect if previously set, nullptr otherwise ##
#Example
void draw(SkCanvas* canvas) {
SkPaint paint;
SkDebugf("nullptr %c= path effect\n", paint.getPathEffect() ? '!' : '=');
paint.setPathEffect(SkCornerPathEffect::Make(10));
SkDebugf("nullptr %c= path effect\n", paint.getPathEffect() ? '!' : '=');
}
#StdOut
nullptr == path effect
nullptr != path effect
##
##
##
#Method sk_sp<SkPathEffect> refPathEffect() const
#In Path_Effect_Methods
#Line # references Path_Effect, modifications to path geometry; dashing ##
Returns Path_Effect if set, or nullptr.
Increases Path_Effect Reference_Count by one.
#Return Path_Effect if previously set, nullptr otherwise ##
#Example
void draw(SkCanvas* canvas) {
SkPaint paint1, paint2;
SkScalar intervals[] = {1, 2};
paint1.setPathEffect(SkDashPathEffect::Make(intervals, SK_ARRAY_COUNT(intervals), 10));
SkDebugf("path effect unique: %s\n", paint1.getPathEffect()->unique() ? "true" : "false");
paint2.setPathEffect(paint1.refPathEffect());
SkDebugf("path effect unique: %s\n", paint1.getPathEffect()->unique() ? "true" : "false");
}
#StdOut
path effect unique: true
path effect unique: false
##
##
##
#Method void setPathEffect(sk_sp<SkPathEffect> pathEffect)
#In Path_Effect_Methods
#Line # sets Path_Effect, modifications to path geometry; dashing ##
Sets Path_Effect to pathEffect, decreasing Reference_Count of the previous
Path_Effect. Pass nullptr to leave the path geometry unaltered.
Increments pathEffect Reference_Count by one.
#Param pathEffect replace Path with a modification when drawn ##
#Example
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setPathEffect(SkDiscretePathEffect::Make(3, 5));
canvas->drawRect(SkRect::MakeXYWH(40, 40, 175, 175), paint);
}
##
##
#Subtopic Path_Effect_Methods ##
# ------------------------------------------------------------------------------
#Subtopic Mask_Filter_Methods
#Line # get and set Mask_Filter ##
Mask_Filter uses coverage of the shape drawn to create Mask_Alpha.
Mask_Filter takes a Mask, and returns a Mask.
Mask_Filter may change the geometry and transparency of the shape, such as
creating a blur effect. Set Mask_Filter to nullptr to prevent Mask_Filter from
modifying the draw.
#Example
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setMaskFilter(SkBlurMaskFilter::Make(kSolid_SkBlurStyle, 3));
canvas->drawRect(SkRect::MakeXYWH(40, 40, 175, 175), paint);
}
##
#Method SkMaskFilter* getMaskFilter() const
#In Mask_Filter_Methods
#Line # returns Mask_Filter, alterations to Mask_Alpha ##
Returns Mask_Filter if set, or nullptr.
Does not alter Mask_Filter Reference_Count.
#Return Mask_Filter if previously set, nullptr otherwise ##
#Example
void draw(SkCanvas* canvas) {
SkPaint paint;
SkDebugf("nullptr %c= mask filter\n", paint.getMaskFilter() ? '!' : '=');
paint.setMaskFilter(SkBlurMaskFilter::Make(kOuter_SkBlurStyle, 3));
SkDebugf("nullptr %c= mask filter\n", paint.getMaskFilter() ? '!' : '=');
}
#StdOut
nullptr == mask filter
nullptr != mask filter
##
##
##
#Method sk_sp<SkMaskFilter> refMaskFilter() const
#In Mask_Filter_Methods
#Line # references Mask_Filter, alterations to Mask_Alpha ##
Returns Mask_Filter if set, or nullptr.
Increases Mask_Filter Reference_Count by one.
#Return Mask_Filter if previously set, nullptr otherwise ##
#Example
void draw(SkCanvas* canvas) {
SkPaint paint1, paint2;
paint1.setMaskFilter(SkBlurMaskFilter::Make(kNormal_SkBlurStyle, 1));
SkDebugf("mask filter unique: %s\n", paint1.getMaskFilter()->unique() ? "true" : "false");
paint2.setMaskFilter(paint1.refMaskFilter());
SkDebugf("mask filter unique: %s\n", paint1.getMaskFilter()->unique() ? "true" : "false");
}
#StdOut
mask filter unique: true
mask filter unique: false
##
##
##
#Method void setMaskFilter(sk_sp<SkMaskFilter> maskFilter)
#In Mask_Filter_Methods
#Line # sets Mask_Filter, alterations to Mask_Alpha ##
Sets Mask_Filter to maskFilter, decreasing Reference_Count of the previous
Mask_Filter. Pass nullptr to clear Mask_Filter and leave Mask_Filter effect on
Mask_Alpha unaltered.
Increments maskFilter Reference_Count by one.
#Param maskFilter modifies clipping mask generated from drawn geometry ##
#Example
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setStyle(SkPaint::kStroke_Style);
paint.setStrokeWidth(10);
paint.setMaskFilter(SkBlurMaskFilter::Make(kNormal_SkBlurStyle, 10));
canvas->drawRect(SkRect::MakeXYWH(40, 40, 175, 175), paint);
}
##
##
#Subtopic Mask_Filter_Methods ##
# ------------------------------------------------------------------------------
#Subtopic Typeface_Methods
#Line # get and set Typeface ##
Typeface identifies the font used when drawing and measuring text.
Typeface may be specified by name, from a file, or from a data stream.
The default Typeface defers to the platform-specific default font
implementation.
#Example
#Height 100
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setTypeface(SkTypeface::MakeFromName(nullptr, SkFontStyle()));
paint.setAntiAlias(true);
paint.setTextSize(36);
canvas->drawString("A Big Hello!", 10, 40, paint);
paint.setTypeface(nullptr);
paint.setFakeBoldText(true);
canvas->drawString("A Big Hello!", 10, 80, paint);
}
##
#Method SkTypeface* getTypeface() const
#In Typeface_Methods
#Line # returns Typeface, font description ##
Returns Typeface if set, or nullptr.
Increments Typeface Reference_Count by one.
#Return Typeface if previously set, nullptr otherwise ##
#Example
void draw(SkCanvas* canvas) {
SkPaint paint;
SkDebugf("nullptr %c= typeface\n", paint.getTypeface() ? '!' : '=');
paint.setTypeface(SkTypeface::MakeFromName("monospace", SkFontStyle()));
SkDebugf("nullptr %c= typeface\n", paint.getTypeface() ? '!' : '=');
}
#StdOut
nullptr == typeface
nullptr != typeface
##
##
##
#Method sk_sp<SkTypeface> refTypeface() const
#In Typeface_Methods
#Line # references Typeface, font description ##
Increases Typeface Reference_Count by one.
#Return Typeface if previously set, nullptr otherwise ##
#Example
void draw(SkCanvas* canvas) {
SkPaint paint1, paint2;
paint1.setTypeface(SkTypeface::MakeFromName("monospace",
SkFontStyle(SkFontStyle::kNormal_Weight, SkFontStyle::kNormal_Width,
SkFontStyle::kItalic_Slant)));
SkDebugf("typeface1 %c= typeface2\n",
paint1.getTypeface() == paint2.getTypeface() ? '=' : '!');
paint2.setTypeface(paint1.refTypeface());
SkDebugf("typeface1 %c= typeface2\n",
paint1.getTypeface() == paint2.getTypeface() ? '=' : '!');
}
#StdOut
typeface1 != typeface2
typeface1 == typeface2
##
##
##
#Method void setTypeface(sk_sp<SkTypeface> typeface)
#In Typeface_Methods
#Line # sets Typeface, font description ##
Sets Typeface to typeface, decreasing Reference_Count of the previous Typeface.
Pass nullptr to clear Typeface and use the default typeface. Increments
typeface Reference_Count by one.
#Param typeface font and style used to draw text ##
#Example
#Height 64
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setTypeface(SkTypeface::MakeFromName("monospace", SkFontStyle()));
canvas->drawString("hamburgerfons", 10, 30, paint);
paint.setTypeface(nullptr);
canvas->drawString("hamburgerfons", 10, 50, paint);
}
##
##
#Subtopic Typeface_Methods ##
# ------------------------------------------------------------------------------
#Subtopic Image_Filter_Methods
#Line # get and set Image_Filter ##
Image_Filter operates on the pixel representation of the shape, as modified by Paint
with Blend_Mode set to SkBlendMode::kSrcOver. Image_Filter creates a new bitmap,
which is drawn to the device using the set Blend_Mode.
Image_Filter is higher level than Mask_Filter; for instance, an Image_Filter
can operate on all channels of Color, while Mask_Filter generates Alpha only.
Image_Filter operates independently of and can be used in combination with
Mask_Filter.
#Example
#ToDo explain why the two draws are so different ##
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setStyle(SkPaint::kStroke_Style);
paint.setStrokeWidth(2);
SkRegion region;
region.op( 10, 10, 50, 50, SkRegion::kUnion_Op);
region.op( 10, 50, 90, 90, SkRegion::kUnion_Op);
paint.setImageFilter(SkBlurImageFilter::Make(5.0f, 5.0f, nullptr));
canvas->drawRegion(region, paint);
paint.setImageFilter(nullptr);
paint.setMaskFilter(SkBlurMaskFilter::Make(kNormal_SkBlurStyle, 5));
canvas->translate(100, 100);
canvas->drawRegion(region, paint);
}
##
#Method SkImageFilter* getImageFilter() const
#In Image_Filter_Methods
#Line # returns Image_Filter, alter pixels; blur ##
Returns Image_Filter if set, or nullptr.
Does not alter Image_Filter Reference_Count.
#Return Image_Filter if previously set, nullptr otherwise ##
#Example
void draw(SkCanvas* canvas) {
SkPaint paint;
SkDebugf("nullptr %c= image filter\n", paint.getImageFilter() ? '!' : '=');
paint.setImageFilter(SkBlurImageFilter::Make(kOuter_SkBlurStyle, 3, nullptr, nullptr));
SkDebugf("nullptr %c= image filter\n", paint.getImageFilter() ? '!' : '=');
}
#StdOut
nullptr == image filter
nullptr != image filter
##
##
##
#Method sk_sp<SkImageFilter> refImageFilter() const
#In Image_Filter_Methods
#Line # references Image_Filter, alter pixels; blur ##
Returns Image_Filter if set, or nullptr.
Increases Image_Filter Reference_Count by one.
#Return Image_Filter if previously set, nullptr otherwise ##
#Example
void draw(SkCanvas* canvas) {
SkPaint paint1, paint2;
paint1.setImageFilter(SkOffsetImageFilter::Make(25, 25, nullptr));
SkDebugf("image filter unique: %s\n", paint1.getImageFilter()->unique() ? "true" : "false");
paint2.setImageFilter(paint1.refImageFilter());
SkDebugf("image filter unique: %s\n", paint1.getImageFilter()->unique() ? "true" : "false");
}
#StdOut
image filter unique: true
image filter unique: false
##
##
##
#Method void setImageFilter(sk_sp<SkImageFilter> imageFilter)
#In Image_Filter_Methods
#Line # sets Image_Filter, alter pixels; blur ##
Sets Image_Filter to imageFilter, decreasing Reference_Count of the previous
Image_Filter. Pass nullptr to clear Image_Filter, and remove Image_Filter effect
on drawing.
Increments imageFilter Reference_Count by one.
#Param imageFilter how Image is sampled when transformed ##
#Example
#Height 160
void draw(SkCanvas* canvas) {
SkBitmap bitmap;
bitmap.allocN32Pixels(100, 100);
SkCanvas offscreen(bitmap);
SkPaint paint;
paint.setAntiAlias(true);
paint.setColor(SK_ColorWHITE);
paint.setTextSize(96);
offscreen.clear(0);
offscreen.drawString("e", 20, 70, paint);
paint.setImageFilter(
SkLightingImageFilter::MakePointLitDiffuse(SkPoint3::Make(80, 100, 10),
SK_ColorWHITE, 1, 2, nullptr, nullptr));
canvas->drawBitmap(bitmap, 0, 0, &paint);
}
##
##
#Subtopic Image_Filter_Methods ##
# ------------------------------------------------------------------------------
#Subtopic Draw_Looper_Methods
#Line # get and set Draw_Looper ##
Draw_Looper sets a modifier that communicates state from one Draw_Layer
to another to construct the draw.
Draw_Looper draws one or more times, modifying the canvas and paint each time.
Draw_Looper may be used to draw multiple colors or create a colored shadow.
Set Draw_Looper to nullptr to prevent Draw_Looper from modifying the draw.
#Example
#Height 128
void draw(SkCanvas* canvas) {
SkLayerDrawLooper::LayerInfo info;
info.fPaintBits = (SkLayerDrawLooper::BitFlags) SkLayerDrawLooper::kColorFilter_Bit;
info.fColorMode = SkBlendMode::kSrc;
SkLayerDrawLooper::Builder looperBuilder;
SkPaint* loopPaint = looperBuilder.addLayer(info);
loopPaint->setColor(SK_ColorRED);
info.fOffset.set(20, 20);
loopPaint = looperBuilder.addLayer(info);
loopPaint->setColor(SK_ColorBLUE);
SkPaint paint;
paint.setDrawLooper(looperBuilder.detach());
canvas->drawCircle(50, 50, 50, paint);
}
##
#Method SkDrawLooper* getDrawLooper() const
#In Draw_Looper_Methods
#Line # returns Draw_Looper, multiple layers ##
Returns Draw_Looper if set, or nullptr.
Does not alter Draw_Looper Reference_Count.
#Return Draw_Looper if previously set, nullptr otherwise ##
#Example
void draw(SkCanvas* canvas) {
SkPaint paint;
SkDebugf("nullptr %c= draw looper\n", paint.getDrawLooper() ? '!' : '=');
SkLayerDrawLooper::Builder looperBuilder;
paint.setDrawLooper(looperBuilder.detach());
SkDebugf("nullptr %c= draw looper\n", paint.getDrawLooper() ? '!' : '=');
}
#StdOut
nullptr == draw looper
nullptr != draw looper
##
##
##
#Method sk_sp<SkDrawLooper> refDrawLooper() const
#In Draw_Looper_Methods
#Line # references Draw_Looper, multiple layers ##
Returns Draw_Looper if set, or nullptr.
Increases Draw_Looper Reference_Count by one.
#Return Draw_Looper if previously set, nullptr otherwise ##
#Example
void draw(SkCanvas* canvas) {
SkPaint paint1, paint2;
SkLayerDrawLooper::Builder looperBuilder;
paint1.setDrawLooper(looperBuilder.detach());
SkDebugf("draw looper unique: %s\n", paint1.getDrawLooper()->unique() ? "true" : "false");
paint2.setDrawLooper(paint1.refDrawLooper());
SkDebugf("draw looper unique: %s\n", paint1.getDrawLooper()->unique() ? "true" : "false");
}
#StdOut
draw looper unique: true
draw looper unique: false
##
##
##
#Method SkDrawLooper* getLooper() const
#Bug 6259
#Deprecated
##
#Method void setDrawLooper(sk_sp<SkDrawLooper> drawLooper)
#In Draw_Looper_Methods
#Line # sets Draw_Looper, multiple layers ##
Sets Draw_Looper to drawLooper, decreasing Reference_Count of the previous
drawLooper. Pass nullptr to clear Draw_Looper and leave Draw_Looper effect on
drawing unaltered.
Increments drawLooper Reference_Count by one.
#Param drawLooper iterates through drawing one or more time, altering Paint ##
#Example
#Height 128
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setDrawLooper(SkBlurDrawLooper::Make(0x7FFF0000, 4, -5, -10));
paint.setStyle(SkPaint::kStroke_Style);
paint.setStrokeWidth(10);
paint.setAntiAlias(true);
paint.setColor(0x7f0000ff);
canvas->drawCircle(70, 70, 50, paint);
}
##
##
#Method void setLooper(sk_sp<SkDrawLooper> drawLooper)
#Bug 6259
#Deprecated
##
#Subtopic Draw_Looper_Methods ##
# ------------------------------------------------------------------------------
#Subtopic Text_Align
#Line # text placement relative to position ##
#Enum Align
#Line # glyph locations relative to text position ##
#Code
enum Align {
kLeft_Align,
kCenter_Align,
kRight_Align,
};
##
Align adjusts the text relative to the text position.
Align affects Glyphs drawn with: SkCanvas::drawText, SkCanvas::drawPosText,
SkCanvas::drawPosTextH, SkCanvas::drawTextOnPath,
SkCanvas::drawTextOnPathHV, SkCanvas::drawTextRSXform, SkCanvas::drawTextBlob,
and SkCanvas::drawString;
as well as calls that place text Glyphs like getTextWidths and getTextPath.
The text position is set by the font for both horizontal and vertical text.
Typically, for horizontal text, the position is to the left side of the glyph on the
base line; and for vertical text, the position is the horizontal center of the glyph
at the caps height.
Align adjusts the glyph position to center it or move it to abut the position
using the metrics returned by the font.
Align defaults to kLeft_Align.
#Const kLeft_Align 0
Leaves the glyph at the position computed by the font offset by the text position.
##
#Const kCenter_Align 1
Moves the glyph half its width if Flags has kVerticalText_Flag clear, and
half its height if Flags has kVerticalText_Flag set.
##
#Const kRight_Align 2
Moves the glyph by its width if Flags has kVerticalText_Flag clear,
and by its height if Flags has kVerticalText_Flag set.
##
#Enum ##
#Enum
#Line # number of Text_Align values ##
#Code
enum {
kAlignCount = 3,
};
##
#Const kAlignCount 3
The number of different Text_Align values defined.
##
#Enum ##
#Example
#Height 160
#Description
Each position separately moves the glyph in drawPosText.
##
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setTextSize(40);
SkPoint position[] = {{100, 50}, {150, 40}};
for (SkPaint::Align a : { SkPaint::kLeft_Align,
SkPaint::kCenter_Align,
SkPaint::kRight_Align}) {
paint.setTextAlign(a);
canvas->drawPosText("Aa", 2, position, paint);
canvas->translate(0, 50);
}
}
##
#Example
#Height 160
#Description
Vertical_Text treats kLeft_Align as top align, and kRight_Align as bottom align.
##
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setTextSize(40);
paint.setVerticalText(true);
for (SkPaint::Align a : { SkPaint::kLeft_Align,
SkPaint::kCenter_Align,
SkPaint::kRight_Align }) {
paint.setTextAlign(a);
canvas->drawString("Aa", 50, 80, paint);
canvas->translate(50, 0);
}
}
##
#Method Align getTextAlign() const
#In Text_Align
#Line # returns Align: left, center, or right ##
Returns Text_Align.
Returns kLeft_Align if Text_Align has not been set.
#Return text placement relative to position ##
#Example
SkPaint paint;
SkDebugf("kLeft_Align %c= default\n", SkPaint::kLeft_Align == paint.getTextAlign() ? '=' : '!');
#StdOut
kLeft_Align == default
##
##
##
#Method void setTextAlign(Align align)
#In Text_Align
#Line # sets Align: left, center, or right ##
Sets Text_Align to align.
Has no effect if align is an invalid value.
#Param align text placement relative to position ##
#Example
#Height 160
#Description
Text is left-aligned by default, and then set to center. Setting the
alignment out of range has no effect.
##
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setTextSize(40);
canvas->drawString("Aa", 100, 50, paint);
paint.setTextAlign(SkPaint::kCenter_Align);
canvas->drawString("Aa", 100, 100, paint);
paint.setTextAlign((SkPaint::Align) SkPaint::kAlignCount);
canvas->drawString("Aa", 100, 150, paint);
}
##
##
#Subtopic Text_Align ##
# ------------------------------------------------------------------------------
#Subtopic Text_Size
#Line # overall height in points ##
Text_Size adjusts the overall text size in points.
Text_Size can be set to any positive value or zero.
Text_Size defaults to 12.
Set SkPaintDefaults_TextSize at compile time to change the default setting.
#Example
#Height 135
void draw(SkCanvas* canvas) {
SkPaint paint;
canvas->drawString("12 point", 10, 20, paint);
paint.setTextSize(24);
canvas->drawString("24 point", 10, 60, paint);
paint.setTextSize(48);
canvas->drawString("48 point", 10, 120, paint);
}
##
#Method SkScalar getTextSize() const
#In Text_Size
#Line # returns text size in points ##
Returns Text_Size in points.
#Return typographic height of text ##
#Example
SkPaint paint;
SkDebugf("12 %c= default text size\n", 12 == paint.getTextSize() ? '=' : '!');
##
##
#Method void setTextSize(SkScalar textSize)
#In Text_Size
#Line # sets text size in points ##
Sets Text_Size in points.
Has no effect if textSize is not greater than or equal to zero.
#Param textSize typographic height of text ##
#Example
SkPaint paint;
SkDebugf("12 %c= text size\n", 12 == paint.getTextSize() ? '=' : '!');
paint.setTextSize(-20);
SkDebugf("12 %c= text size\n", 12 == paint.getTextSize() ? '=' : '!');
##
##
#Subtopic Text_Size ##
# ------------------------------------------------------------------------------
#Subtopic Text_Scale_X
#Line # text horizontal scale ##
Text_Scale_X adjusts the text horizontal scale.
Text scaling approximates condensed and expanded type faces when the actual face
is not available.
Text_Scale_X can be set to any value.
Text_Scale_X defaults to 1.
#Example
#Height 128
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setAntiAlias(true);
paint.setTextSize(24);
paint.setTextScaleX(.8f);
canvas->drawString("narrow", 10, 20, paint);
paint.setTextScaleX(1);
canvas->drawString("normal", 10, 60, paint);
paint.setTextScaleX(1.2f);
canvas->drawString("wide", 10, 100, paint);
}
##
#Method SkScalar getTextScaleX() const
#In Text_Scale_X
#Line # returns the text horizontal scale; condensed text ##
Returns Text_Scale_X.
Default value is 1.
#Return text horizontal scale ##
#Example
SkPaint paint;
SkDebugf("1 %c= default text scale x\n", 1 == paint.getTextScaleX() ? '=' : '!');
##
##
#Method void setTextScaleX(SkScalar scaleX)
#In Text_Scale_X
#Line # sets the text horizontal scale; condensed text ##
Sets Text_Scale_X.
Default value is 1.
#Param scaleX text horizontal scale ##
#Example
SkPaint paint;
paint.setTextScaleX(0.f / 0.f);
SkDebugf("text scale %s-a-number\n", SkScalarIsNaN(paint.getTextScaleX()) ? "not" : "is");
##
##
#Subtopic Text_Scale_X ##
#Subtopic Text_Skew_X
#Line # text horizontal slant ##
Text_Skew_X adjusts the text horizontal slant.
Text skewing approximates italic and oblique type faces when the actual face
is not available.
Text_Skew_X can be set to any value.
Text_Skew_X defaults to 0.
#Example
#Height 128
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setAntiAlias(true);
paint.setTextSize(24);
paint.setTextSkewX(-.25f);
canvas->drawString("right-leaning", 10, 100, paint);
paint.setTextSkewX(0);
canvas->drawString("normal", 10, 60, paint);
paint.setTextSkewX(.25f);
canvas->drawString("left-leaning", 10, 20, paint);
}
##
#Method SkScalar getTextSkewX() const
#In Text_Skew_X
#Line # returns the text horizontal skew; oblique text ##
Returns Text_Skew_X.
Default value is zero.
#Return additional shear in x-axis relative to y-axis ##
#Example
SkPaint paint;
SkDebugf("0 %c= default text skew x\n", 0 == paint.getTextSkewX() ? '=' : '!');
##
##
#Method void setTextSkewX(SkScalar skewX)
#In Text_Skew_X
#Line # sets the text horizontal skew; oblique text ##
Sets Text_Skew_X.
Default value is zero.
#Param skewX additional shear in x-axis relative to y-axis ##
#Example
SkPaint paint;
paint.setTextScaleX(1.f / 0.f);
SkDebugf("text scale %s-finite\n", SkScalarIsFinite(paint.getTextScaleX()) ? "is" : "not");
##
##
#Subtopic Text_Skew_X ##
# ------------------------------------------------------------------------------
#Subtopic Text_Encoding
#Line # text encoded as characters or Glyphs ##
#Enum TextEncoding
#Line # character or glyph encoded size ##
#Code
enum TextEncoding {
kUTF8_TextEncoding,
kUTF16_TextEncoding,
kUTF32_TextEncoding,
kGlyphID_TextEncoding,
};
##
TextEncoding determines whether text specifies character codes and their encoded
size, or glyph indices. Characters are encoded as specified by the
#A Unicode standard # http://unicode.org/standard/standard.html ##
.
Character codes encoded size are specified by UTF-8, UTF-16, or UTF-32.
All character code formats are able to represent all of Unicode, differing only
in the total storage required.
#A UTF-8 (RFC 3629) # https://tools.ietf.org/html/rfc3629 ##
encodes each character as one or more 8-bit bytes.
#A UTF-16 (RFC 2781) # https://tools.ietf.org/html/rfc2781 ##
encodes each character as one or two 16-bit words.
#A UTF-32 # http://www.unicode.org/versions/Unicode5.0.0/ch03.pdf ##
encodes each character as one 32-bit word.
Font_Manager uses font data to convert character code points into glyph indices.
A glyph index is a 16-bit word.
TextEncoding is set to kUTF8_TextEncoding by default.
#Const kUTF8_TextEncoding 0
Uses bytes to represent UTF-8 or ASCII.
##
#Const kUTF16_TextEncoding 1
Uses two byte words to represent most of Unicode.
##
#Const kUTF32_TextEncoding 2
Uses four byte words to represent all of Unicode.
##
#Const kGlyphID_TextEncoding 3
Uses two byte words to represent glyph indices.
##
#Enum ##
#Example
#Height 128
#Description
First line is encoded in UTF-8.
Second line is encoded in UTF-16.
Third line is encoded in UTF-32.
Fourth line has 16 bit glyph indices.
##
void draw(SkCanvas* canvas) {
SkPaint paint;
const char hello8[] = "Hello" "\xE2" "\x98" "\xBA";
const uint16_t hello16[] = { 'H', 'e', 'l', 'l', 'o', 0x263A };
const uint32_t hello32[] = { 'H', 'e', 'l', 'l', 'o', 0x263A };
paint.setTextSize(24);
canvas->drawText(hello8, sizeof(hello8) - 1, 10, 30, paint);
paint.setTextEncoding(SkPaint::kUTF16_TextEncoding);
canvas->drawText(hello16, sizeof(hello16), 10, 60, paint);
paint.setTextEncoding(SkPaint::kUTF32_TextEncoding);
canvas->drawText(hello32, sizeof(hello32), 10, 90, paint);
uint16_t glyphs[SK_ARRAY_COUNT(hello32)];
paint.textToGlyphs(hello32, sizeof(hello32), glyphs);
paint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
canvas->drawText(glyphs, sizeof(glyphs), 10, 120, paint);
}
##
#Method TextEncoding getTextEncoding() const
#In Text_Encoding
#Line # returns character or glyph encoded size ##
Returns Text_Encoding.
Text_Encoding determines how character code points are mapped to font glyph indices.
#Return one of: kUTF8_TextEncoding, kUTF16_TextEncoding, kUTF32_TextEncoding, or
kGlyphID_TextEncoding
##
#Example
SkPaint paint;
SkDebugf("kUTF8_TextEncoding %c= text encoding\n",
SkPaint::kUTF8_TextEncoding == paint.getTextEncoding() ? '=' : '!');
paint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
SkDebugf("kGlyphID_TextEncoding %c= text encoding\n",
SkPaint::kGlyphID_TextEncoding == paint.getTextEncoding() ? '=' : '!');
#StdOut
kUTF8_TextEncoding == text encoding
kGlyphID_TextEncoding == text encoding
##
##
##
#Method void setTextEncoding(TextEncoding encoding)
#In Text_Encoding
#Line # sets character or glyph encoded size ##
Sets Text_Encoding to encoding.
Text_Encoding determines how character code points are mapped to font glyph indices.
Invalid values for encoding are ignored.
#Param encoding one of: kUTF8_TextEncoding, kUTF16_TextEncoding, kUTF32_TextEncoding, or
kGlyphID_TextEncoding
#Param ##
#Example
SkPaint paint;
paint.setTextEncoding((SkPaint::TextEncoding) 4);
SkDebugf("4 %c= text encoding\n", 4 == paint.getTextEncoding() ? '=' : '!');
#StdOut
4 != text encoding
##
##
##
#Subtopic Text_Encoding ##
# ------------------------------------------------------------------------------
#Subtopic Font_Metrics
#Line # common glyph dimensions ##
Font_Metrics describe dimensions common to the Glyphs in Typeface.
The dimensions are computed by Font_Manager from font data and do not take
Paint settings other than Text_Size into account.
Font dimensions specify the anchor to the left of the glyph at baseline as the origin.
X-axis values to the left of the glyph are negative, and to the right of the left glyph edge
are positive.
Y-axis values above the baseline are negative, and below the baseline are positive.
#Example
#Width 512
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setAntiAlias(true);
paint.setTextSize(120);
SkPaint::FontMetrics fm;
SkScalar lineHeight = paint.getFontMetrics(&fm);
SkPoint pt = { 70, 180 };
canvas->drawString("M", pt.fX, pt.fY, paint);
canvas->drawLine(pt.fX, pt.fY, pt.fX, pt.fY + fm.fTop, paint);
SkScalar ascent = pt.fY + fm.fAscent;
canvas->drawLine(pt.fX - 25, ascent, pt.fX - 25, ascent + lineHeight, paint);
canvas->drawLine(pt.fX - 50, pt.fY, pt.fX - 50, pt.fY + fm.fDescent, paint);
canvas->drawLine(pt.fX + 100, pt.fY, pt.fX + 100, pt.fY + fm.fAscent, paint);
canvas->drawLine(pt.fX + 125, pt.fY, pt.fX + 125, pt.fY - fm.fXHeight, paint);
canvas->drawLine(pt.fX + 150, pt.fY, pt.fX + 150, pt.fY - fm.fCapHeight, paint);
canvas->drawLine(pt.fX + 5, pt.fY, pt.fX + 5, pt.fY + fm.fBottom, paint);
SkScalar xmin = pt.fX + fm.fXMin;
canvas->drawLine(xmin, pt.fY + 60, xmin + fm.fMaxCharWidth, pt.fY + 60, paint);
canvas->drawLine(xmin, pt.fY - 145, pt.fX, pt.fY - 145, paint);
canvas->drawLine(pt.fX + fm.fXMax, pt.fY - 160, pt.fX, pt.fY - 160, paint);
SkScalar upos = pt.fY + fm.fUnderlinePosition;
canvas->drawLine(pt.fX + 25, upos, pt.fX + 160, upos, paint);
SkScalar ut = fm.fUnderlineThickness;
canvas->drawLine(pt.fX + 130, upos + ut, pt.fX + 160, upos + ut, paint);
paint.setTextSize(12);
canvas->drawString("x-min", pt.fX - 50, pt.fY - 148, paint);
canvas->drawString("x-max", pt.fX + 140, pt.fY - 150, paint);
canvas->drawString("max char width", pt.fX + 120, pt.fY + 57, paint);
canvas->drawString("underline position", pt.fX + 30, pt.fY + 22, paint);
canvas->drawString("underline thickness", pt.fX + 162, pt.fY + 13, paint);
canvas->rotate(-90);
canvas->drawString("descent", -pt.fY - 30, pt.fX - 54, paint);
canvas->drawString("line height", -pt.fY, pt.fX - 29, paint);
canvas->drawString("top", -pt.fY + 30, pt.fX - 4, paint);
canvas->drawString("ascent", -pt.fY, pt.fX + 110, paint);
canvas->drawString("x-height", -pt.fY, pt.fX + 135, paint);
canvas->drawString("cap-height", -pt.fY, pt.fX + 160, paint);
canvas->drawString("bottom", -pt.fY - 50, pt.fX + 15, paint);
}
##
#Struct FontMetrics
#Line # values computed by Font_Manager using Typeface ##
#Code
struct FontMetrics {
enum FontMetricsFlags {
kUnderlineThicknessIsValid_Flag = 1 << 0,
kUnderlinePositionIsValid_Flag = 1 << 1,
kStrikeoutThicknessIsValid_Flag = 1 << 2,
kStrikeoutPositionIsValid_Flag = 1 << 3,
};
uint32_t fFlags;
SkScalar fTop;
SkScalar fAscent;
SkScalar fDescent;
SkScalar fBottom;
SkScalar fLeading;
SkScalar fAvgCharWidth;
SkScalar fMaxCharWidth;
SkScalar fXMin;
SkScalar fXMax;
SkScalar fXHeight;
SkScalar fCapHeight;
SkScalar fUnderlineThickness;
SkScalar fUnderlinePosition;
SkScalar fStrikeoutThickness;
SkScalar fStrikeoutPosition;
bool hasUnderlineThickness(SkScalar* thickness) const;
bool hasUnderlinePosition(SkScalar* position) const;
bool hasStrikeoutThickness(SkScalar* thickness) const;
bool hasStrikeoutPosition(SkScalar* position) const;
};
##
FontMetrics is filled out by getFontMetrics. FontMetrics contents reflect the values
computed by Font_Manager using Typeface. Values are set to zero if they are
not available.
All vertical values relative to the baseline are given y-down. As such, zero is on the
baseline, negative values are above the baseline, and positive values are below the
baseline.
fUnderlineThickness and fUnderlinePosition have a bit set in fFlags if their values
are valid, since their value may be zero.
fStrikeoutThickness and fStrikeoutPosition have a bit set in fFlags if their values
are valid, since their value may be zero.
#Enum FontMetricsFlags
#Line # valid Font_Metrics ##
#Code
enum FontMetricsFlags {
kUnderlineThicknessIsValid_Flag = 1 << 0,
kUnderlinePositionIsValid_Flag = 1 << 1,
kStrikeoutThicknessIsValid_Flag = 1 << 2,
kStrikeoutPositionIsValid_Flag = 1 << 3,
};
##
FontMetricsFlags are set in fFlags when underline and strikeout metrics are valid;
the underline or strikeout metric may be valid and zero.
Fonts with embedded bitmaps may not have valid underline or strikeout metrics.
#Const kUnderlineThicknessIsValid_Flag 0x0001
Set if fUnderlineThickness is valid.
##
#Const kUnderlinePositionIsValid_Flag 0x0002
Set if fUnderlinePosition is valid.
##
#Const kStrikeoutThicknessIsValid_Flag 0x0004
Set if fStrikeoutThickness is valid.
##
#Const kStrikeoutPositionIsValid_Flag 0x0008
Set if fStrikeoutPosition is valid.
##
#Enum ##
#Member uint32_t fFlags
fFlags is set when underline metrics are valid.
##
#Member SkScalar fTop
Greatest extent above the baseline for any glyph.
Typically less than zero.
##
#Member SkScalar fAscent
Recommended distance above the baseline to reserve for a line of text.
Typically less than zero.
##
#Member SkScalar fDescent
Recommended distance below the baseline to reserve for a line of text.
Typically greater than zero.
##
#Member SkScalar fBottom
Greatest extent below the baseline for any glyph.
Typically greater than zero.
##
#Member SkScalar fLeading
Recommended distance to add between lines of text.
Typically greater than or equal to zero.
##
#Member SkScalar fAvgCharWidth
Average character width, if it is available.
Zero if no average width is stored in the font.
##
#Member SkScalar fMaxCharWidth
Maximum character width.
##
#Member SkScalar fXMin
Minimum bounding box x value for all Glyphs.
Typically less than zero.
##
#Member SkScalar fXMax
Maximum bounding box x value for all Glyphs.
Typically greater than zero.
##
#Member SkScalar fXHeight
Height of a lower-case 'x'.
May be zero if no lower-case height is stored in the font.
##
#Member SkScalar fCapHeight
Height of an upper-case letter.
May be zero if no upper-case height is stored in the font.
##
#Member SkScalar fUnderlineThickness
Underline thickness.
If the metric is valid, the kUnderlineThicknessIsValid_Flag is set in fFlags.
If kUnderlineThicknessIsValid_Flag is clear, fUnderlineThickness is zero.
##
#Member SkScalar fUnderlinePosition
Position of the top of the underline stroke relative to the baseline.
Typically positive when valid.
If the metric is valid, the kUnderlinePositionIsValid_Flag is set in fFlags.
If kUnderlinePositionIsValid_Flag is clear, fUnderlinePosition is zero.
##
#Member SkScalar fStrikeoutThickness
Strikeout thickness.
If the metric is valid, the kStrikeoutThicknessIsValid_Flag is set in fFlags.
If kStrikeoutThicknessIsValid_Flag is clear, fStrikeoutThickness is zero.
##
#Member SkScalar fStrikeoutPosition
Position of the bottom of the strikeout stroke relative to the baseline.
Typically negative when valid.
If the metric is valid, the kStrikeoutPositionIsValid_Flag is set in fFlags.
If kStrikeoutPositionIsValid_Flag is clear, fStrikeoutPosition is zero.
##
#Method bool hasUnderlineThickness(SkScalar* thickness) const
If Font_Metrics has a valid underline thickness, return true, and set
thickness to that value. If the underline thickness is not valid,
return false, and ignore thickness.
#Param thickness storage for underline width ##
#Return true if font specifies underline width ##
#NoExample
##
##
#Method bool hasUnderlinePosition(SkScalar* position) const
If Font_Metrics has a valid underline position, return true, and set
position to that value. If the underline position is not valid,
return false, and ignore position.
#Param position storage for underline position ##
#Return true if font specifies underline position ##
#NoExample
##
##
#Method bool hasStrikeoutThickness(SkScalar* thickness) const
If Font_Metrics has a valid strikeout thickness, return true, and set
thickness to that value. If the underline thickness is not valid,
return false, and ignore thickness.
#Param thickness storage for strikeout width ##
#Return true if font specifies strikeout width ##
#NoExample
##
##
#Method bool hasStrikeoutPosition(SkScalar* position) const
If Font_Metrics has a valid strikeout position, return true, and set
position to that value. If the underline position is not valid,
return false, and ignore position.
#Param position storage for strikeout position ##
#Return true if font specifies strikeout position ##
#NoExample
##
##
#Struct ##
#Method SkScalar getFontMetrics(FontMetrics* metrics, SkScalar scale = 0) const
#In Font_Metrics
#Line # returns Typeface metrics scaled by text size ##
Returns Font_Metrics associated with Typeface.
The return value is the recommended spacing between lines: the sum of metrics
descent, ascent, and leading.
If metrics is not nullptr, Font_Metrics is copied to metrics.
Results are scaled by Text_Size but does not take into account
dimensions required by Text_Scale_X, Text_Skew_X, Fake_Bold,
Style_Stroke, and Path_Effect.
Results can be additionally scaled by scale; a scale of zero
is ignored.
#Param metrics storage for Font_Metrics from Typeface; may be nullptr ##
#Param scale additional multiplier for returned values ##
#Return recommended spacing between lines ##
#Example
#Height 128
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setTextSize(32);
SkScalar lineHeight = paint.getFontMetrics(nullptr);
canvas->drawString("line 1", 10, 40, paint);
canvas->drawString("line 2", 10, 40 + lineHeight, paint);
paint.setStyle(SkPaint::kStroke_Style);
paint.setStrokeWidth(10);
lineHeight = paint.getFontMetrics(nullptr, 1.10f); // account for stroke height
canvas->drawString("line 3", 120, 40, paint);
canvas->drawString("line 4", 120, 40 + lineHeight, paint);
}
##
#SeeAlso Text_Size Typeface Typeface_Methods
##
#Method SkScalar getFontSpacing() const
#In Font_Metrics
#Line # returns recommended spacing between lines ##
Returns the recommended spacing between lines: the sum of metrics
descent, ascent, and leading.
Result is scaled by Text_Size but does not take into account
dimensions required by stroking and Path_Effect.
Returns the same result as getFontMetrics.
#Return recommended spacing between lines ##
#Example
SkPaint paint;
for (SkScalar textSize : { 12, 18, 24, 32 } ) {
paint.setTextSize(textSize);
SkDebugf("textSize: %g fontSpacing: %g\n", textSize, paint.getFontSpacing());
}
#StdOut
textSize: 12 fontSpacing: 13.9688
textSize: 18 fontSpacing: 20.9531
textSize: 24 fontSpacing: 27.9375
textSize: 32 fontSpacing: 37.25
##
##
##
#Method SkRect getFontBounds() const
#In Font_Metrics
#Line # returns union all glyph bounds ##
Returns the union of bounds of all Glyphs.
Returned dimensions are computed by Font_Manager from font data,
ignoring Hinting. Includes Text_Size, Text_Scale_X,
and Text_Skew_X, but not Fake_Bold or Path_Effect.
If Text_Size is large, Text_Scale_X is one, and Text_Skew_X is zero,
returns the same bounds as Font_Metrics { FontMetrics::fXMin,
FontMetrics::fTop, FontMetrics::fXMax, FontMetrics::fBottom }.
#Return union of bounds of all Glyphs ##
#Example
SkPaint paint;
SkPaint::FontMetrics fm;
paint.getFontMetrics(&fm);
SkRect fb = paint.getFontBounds();
SkDebugf("metrics bounds = { %g, %g, %g, %g }\n", fm.fXMin, fm.fTop, fm.fXMax, fm.fBottom );
SkDebugf("font bounds = { %g, %g, %g, %g }\n", fb.fLeft, fb.fTop, fb.fRight, fm.fBottom );
#StdOut
metrics bounds = { -12.2461, -14.7891, 21.5215, 5.55469 }
font bounds = { -12.2461, -14.7891, 21.5215, 5.55469 }
##
##
##
#Subtopic Font_Metrics ##
# ------------------------------------------------------------------------------
#Method int textToGlyphs(const void* text, size_t byteLength,
SkGlyphID glyphs[]) const
#In Utility
#Line # converts text into glyph indices ##
Converts text into glyph indices.
Returns the number of glyph indices represented by text.
Text_Encoding specifies how text represents characters or glyphs.
glyphs may be nullptr, to compute the glyph count.
Does not check text for valid character codes or valid glyph indices.
If byteLength equals zero, returns zero.
If byteLength includes a partial character, the partial character is ignored.
If Text_Encoding is kUTF8_TextEncoding and
text contains an invalid UTF-8 sequence, zero is returned.
#Param text character storage encoded with Text_Encoding ##
#Param byteLength length of character storage in bytes ##
#Param glyphs storage for glyph indices; may be nullptr ##
#Return number of glyphs represented by text of length byteLength ##
#Example
#Height 64
void draw(SkCanvas* canvas) {
SkPaint paint;
const uint8_t utf8[] = { 0x24, 0xC2, 0xA2, 0xE2, 0x82, 0xAC, 0xC2, 0xA5, 0xC2, 0xA3 };
std::vector<SkGlyphID> glyphs;
int count = paint.textToGlyphs(utf8, sizeof(utf8), nullptr);
glyphs.resize(count);
(void) paint.textToGlyphs(utf8, sizeof(utf8), &glyphs.front());
paint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
paint.setTextSize(32);
canvas->drawText(&glyphs.front(), glyphs.size() * sizeof(SkGlyphID), 10, 40, paint);
}
##
##
#Method int countText(const void* text, size_t byteLength) const
#In Utility
#Line # returns number of Glyphs in text ##
Returns the number of Glyphs in text.
Uses Text_Encoding to count the Glyphs.
Returns the same result as textToGlyphs.
#Param text character storage encoded with Text_Encoding ##
#Param byteLength length of character storage in bytes ##
#Return number of Glyphs represented by text of length byteLength ##
#Example
SkPaint paint;
const uint8_t utf8[] = { 0x24, 0xC2, 0xA2, 0xE2, 0x82, 0xAC, 0xC2, 0xA5, 0xC2, 0xA3 };
SkDebugf("count = %d\n", paint.countText(utf8, sizeof(utf8)));
#StdOut
count = 5
##
##
##
# ------------------------------------------------------------------------------
#Method bool containsText(const void* text, size_t byteLength) const
#In Utility
#Line # returns if all text corresponds to Glyphs ##
Returns true if all text corresponds to a non-zero glyph index.
Returns false if any characters in text are not supported in
Typeface.
If Text_Encoding is kGlyphID_TextEncoding,
returns true if all glyph indices in text are non-zero;
does not check to see if text contains valid glyph indices for Typeface.
Returns true if byteLength is zero.
#Param text array of characters or Glyphs ##
#Param byteLength number of bytes in text array ##
#Return true if all text corresponds to a non-zero glyph index ##
#Example
#Description
containsText succeeds for degree symbol, but cannot find a glyph index
corresponding to the Unicode surrogate code point.
##
SkPaint paint;
const uint16_t goodChar = 0x00B0; // degree symbol
const uint16_t badChar = 0xD800; // Unicode surrogate
paint.setTextEncoding(SkPaint::kUTF16_TextEncoding);
SkDebugf("0x%04x %c= has char\n", goodChar,
paint.containsText(&goodChar, 2) ? '=' : '!');
SkDebugf("0x%04x %c= has char\n", badChar,
paint.containsText(&badChar, 2) ? '=' : '!');
#StdOut
0x00b0 == has char
0xd800 != has char
##
##
#Example
#Description
containsText returns true that glyph index is greater than zero, not
that it corresponds to an entry in Typeface.
##
SkPaint paint;
const uint16_t goodGlyph = 511;
const uint16_t zeroGlyph = 0;
const uint16_t badGlyph = 65535; // larger than glyph count in font
paint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
SkDebugf("0x%04x %c= has glyph\n", goodGlyph,
paint.containsText(&goodGlyph, 2) ? '=' : '!');
SkDebugf("0x%04x %c= has glyph\n", zeroGlyph,
paint.containsText(&zeroGlyph, 2) ? '=' : '!');
SkDebugf("0x%04x %c= has glyph\n", badGlyph,
paint.containsText(&badGlyph, 2) ? '=' : '!');
#StdOut
0x01ff == has glyph
0x0000 != has glyph
0xffff == has glyph
##
##
#SeeAlso setTextEncoding Typeface
##
# ------------------------------------------------------------------------------
#Method void glyphsToUnichars(const SkGlyphID glyphs[],
int count, SkUnichar text[]) const
#In Utility
#Line # converts Glyphs into text ##
Converts glyphs into text if possible.
Glyph values without direct Unicode equivalents are mapped to zero.
Uses the Typeface, but is unaffected
by Text_Encoding; the text values returned are equivalent to kUTF32_TextEncoding.
Only supported on platforms that use FreeType as the Font_Engine.
#Param glyphs array of indices into font ##
#Param count length of glyph array ##
#Param text storage for character codes, one per glyph ##
#Example
#Height 64
#Description
Convert UTF-8 text to glyphs; then convert glyphs to Unichar code points.
##
void draw(SkCanvas* canvas) {
SkPaint paint;
const char hello[] = "Hello!";
const int count = sizeof(hello) - 1;
SkGlyphID glyphs[count];
if (count != paint.textToGlyphs(hello, count, glyphs)) {
return;
}
SkUnichar unichars[count];
paint.glyphsToUnichars(glyphs, count, unichars);
paint.setTextEncoding(SkPaint::kUTF32_TextEncoding);
canvas->drawText(unichars, sizeof(unichars), 10, 30, paint);
}
##
##
# ------------------------------------------------------------------------------
#Subtopic Measure_Text
#Line # width, height, bounds of text ##
#Method SkScalar measureText(const void* text, size_t length, SkRect* bounds) const
#In Measure_Text
#Line # returns advance width and bounds of text ##
Returns the advance width of text if kVerticalText_Flag is clear,
and the height of text if kVerticalText_Flag is set.
The advance is the normal distance to move before drawing additional text.
Uses Text_Encoding to decode text, Typeface to get the font metrics,
and Text_Size, Text_Scale_X, Text_Skew_X, Stroke_Width, and
Path_Effect to scale the metrics and bounds.
Returns the bounding box of text if bounds is not nullptr.
The bounding box is computed as if the text was drawn at the origin.
#Param text character codes or glyph indices to be measured ##
#Param length number of bytes of text to measure ##
#Param bounds returns bounding box relative to (0, 0) if not nullptr ##
#Return advance width or height ##
#Example
#Height 64
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setAntiAlias(true);
paint.setTextSize(50);
const char str[] = "ay^jZ";
const int count = sizeof(str) - 1;
canvas->drawText(str, count, 25, 50, paint);
SkRect bounds;
paint.measureText(str, count, &bounds);
canvas->translate(25, 50);
paint.setStyle(SkPaint::kStroke_Style);
canvas->drawRect(bounds, paint);
}
##
##
#Method SkScalar measureText(const void* text, size_t length) const
#In Measure_Text
Returns the advance width of text if kVerticalText_Flag is clear,
and the height of text if kVerticalText_Flag is set.
The advance is the normal distance to move before drawing additional text.
Uses Text_Encoding to decode text, Typeface to get the font metrics,
and Text_Size to scale the metrics.
Does not scale the advance or bounds by Fake_Bold or Path_Effect.
#Param text character codes or glyph indices to be measured ##
#Param length number of bytes of text to measure ##
#Return advance width or height ##
#Example
SkPaint paint;
SkDebugf("default width = %g\n", paint.measureText("!", 1));
paint.setTextSize(paint.getTextSize() * 2);
SkDebugf("double width = %g\n", paint.measureText("!", 1));
#StdOut
default width = 5
double width = 10
##
##
##
#Method size_t breakText(const void* text, size_t length, SkScalar maxWidth,
SkScalar* measuredWidth = nullptr) const
#In Measure_Text
#Line # returns text that fits in a width ##
Returns the bytes of text that fit within maxWidth.
If kVerticalText_Flag is clear, the text fragment fits if its advance width is less than or
equal to maxWidth.
If kVerticalText_Flag is set, the text fragment fits if its advance height is less than or
equal to maxWidth.
Measures only while the advance is less than or equal to maxWidth.
Returns the advance or the text fragment in measuredWidth if it not nullptr.
Uses Text_Encoding to decode text, Typeface to get the font metrics,
and Text_Size to scale the metrics.
Does not scale the advance or bounds by Fake_Bold or Path_Effect.
#Param text character codes or glyph indices to be measured ##
#Param length number of bytes of text to measure ##
#Param maxWidth advance limit; text is measured while advance is less than maxWidth ##
#Param measuredWidth returns the width of the text less than or equal to maxWidth ##
#Return bytes of text that fit, always less than or equal to length ##
#Example
#Description
Line under "Breakfast" shows desired width, shorter than available characters.
Line under "Bre" shows measured width after breaking text.
##
#Height 128
#Width 280
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setAntiAlias(true);
paint.setTextSize(50);
const char str[] = "Breakfast";
const int count = sizeof(str) - 1;
canvas->drawText(str, count, 25, 50, paint);
SkScalar measuredWidth;
int partialBytes = paint.breakText(str, count, 100, &measuredWidth);
canvas->drawText(str, partialBytes, 25, 100, paint);
canvas->drawLine(25, 60, 25 + 100, 60, paint);
canvas->drawLine(25, 110, 25 + measuredWidth, 110, paint);
}
##
##
#Method int getTextWidths(const void* text, size_t byteLength, SkScalar widths[],
SkRect bounds[] = nullptr) const
#In Measure_Text
#Line # returns advance and bounds for each glyph in text ##
Retrieves the advance and bounds for each glyph in text, and returns
the glyph count in text.
Both widths and bounds may be nullptr.
If widths is not nullptr, widths must be an array of glyph count entries.
if bounds is not nullptr, bounds must be an array of glyph count entries.
If kVerticalText_Flag is clear, widths returns the horizontal advance.
If kVerticalText_Flag is set, widths returns the vertical advance.
Uses Text_Encoding to decode text, Typeface to get the font metrics,
and Text_Size to scale the widths and bounds.
Does not scale the advance by Fake_Bold or Path_Effect.
Does include Fake_Bold and Path_Effect in the bounds.
#Param text character codes or glyph indices to be measured ##
#Param byteLength number of bytes of text to measure ##
#Param widths returns text advances for each glyph; may be nullptr ##
#Param bounds returns bounds for each glyph relative to (0, 0); may be nullptr ##
#Return glyph count in text ##
#Example
#Height 160
#Description
Bounds of Glyphs increase for stroked text, but text advance remains the same.
The underlines show the text advance, spaced to keep them distinct.
##
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setAntiAlias(true);
paint.setTextSize(50);
const char str[] = "abc";
const int bytes = sizeof(str) - 1;
int count = paint.getTextWidths(str, bytes, nullptr);
std::vector<SkScalar> widths;
std::vector<SkRect> bounds;
widths.resize(count);
bounds.resize(count);
for (int loop = 0; loop < 2; ++loop) {
(void) paint.getTextWidths(str, count, &widths.front(), &bounds.front());
SkPoint loc = { 25, 50 };
canvas->drawText(str, bytes, loc.fX, loc.fY, paint);
paint.setStyle(SkPaint::kStroke_Style);
paint.setStrokeWidth(0);
SkScalar advanceY = loc.fY + 10;
for (int index = 0; index < count; ++index) {
bounds[index].offset(loc.fX, loc.fY);
canvas->drawRect(bounds[index], paint);
canvas->drawLine(loc.fX, advanceY, loc.fX + widths[index], advanceY, paint);
loc.fX += widths[index];
advanceY += 5;
}
canvas->translate(0, 80);
paint.setStrokeWidth(3);
}
}
##
##
#Subtopic Measure_Text ##
# ------------------------------------------------------------------------------
#Subtopic Text_Path
#Line # geometry of Glyphs ##
Text_Path describes the geometry of Glyphs used to draw text.
#Method void getTextPath(const void* text, size_t length, SkScalar x, SkScalar y,
SkPath* path) const
#In Text_Path
#Line # returns Path equivalent to text ##
Returns the geometry as Path equivalent to the drawn text.
Uses Text_Encoding to decode text, Typeface to get the glyph paths,
and Text_Size, Fake_Bold, and Path_Effect to scale and modify the glyph paths.
All of the glyph paths are stored in path.
Uses x, y, and Text_Align to position path.
#Param text character codes or glyph indices ##
#Param length number of bytes of text ##
#Param x x-coordinate of the origin of the text ##
#Param y y-coordinate of the origin of the text ##
#Param path geometry of the Glyphs ##
#Example
#Description
Text is added to Path, offset, and subtracted from Path, then added at
the offset location. The result is rendered with one draw call.
##
#Height 128
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setTextSize(80);
SkPath path, path2;
paint.getTextPath("ABC", 3, 20, 80, &path);
path.offset(20, 20, &path2);
Op(path, path2, SkPathOp::kDifference_SkPathOp, &path);
path.addPath(path2);
paint.setStyle(SkPaint::kStroke_Style);
canvas->drawPath(path, paint);
}
##
##
#Method void getPosTextPath(const void* text, size_t length,
const SkPoint pos[], SkPath* path) const
#In Text_Path
#Line # returns Path equivalent to positioned text ##
Returns the geometry as Path equivalent to the drawn text.
Uses Text_Encoding to decode text, Typeface to get the glyph paths,
and Text_Size, Fake_Bold, and Path_Effect to scale and modify the glyph paths.
All of the glyph paths are stored in path.
Uses pos array and Text_Align to position path.
pos contains a position for each glyph.
#Param text character codes or glyph indices ##
#Param length number of bytes of text ##
#Param pos positions of each glyph ##
#Param path geometry of the Glyphs ##
#Example
#Height 85
#Description
Simplifies three Glyphs to eliminate overlaps, and strokes the result.
##
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setTextSize(80);
SkPath path, path2;
SkPoint pos[] = {{20, 60}, {30, 70}, {40, 80}};
paint.getPosTextPath("ABC", 3, pos, &path);
Simplify(path, &path);
paint.setStyle(SkPaint::kStroke_Style);
canvas->drawPath(path, paint);
}
##
##
#Subtopic Text_Path ##
# ------------------------------------------------------------------------------
#Subtopic Text_Intercepts
#Line # advanced underline, strike through ##
Text_Intercepts describe the intersection of drawn text Glyphs with a pair
of lines parallel to the text advance. Text_Intercepts permits creating a
underline that skips Descenders.
#Method int getTextIntercepts(const void* text, size_t length, SkScalar x, SkScalar y,
const SkScalar bounds[2], SkScalar* intervals) const
#In Text_Intercepts
#Line # returns where lines intersect text; underlines ##
Returns the number of intervals that intersect bounds.
bounds describes a pair of lines parallel to the text advance.
The return count is zero or a multiple of two, and is at most twice the number of Glyphs in
the string.
Uses Text_Encoding to decode text, Typeface to get the glyph paths,
and Text_Size, Fake_Bold, and Path_Effect to scale and modify the glyph paths.
Uses x, y, and Text_Align to position intervals.
Pass nullptr for intervals to determine the size of the interval array.
intervals are cached to improve performance for multiple calls.
#Param text character codes or glyph indices ##
#Param length number of bytes of text ##
#Param x x-coordinate of the origin of the text ##
#Param y y-coordinate of the origin of the text ##
#Param bounds lower and upper line parallel to the advance ##
#Param intervals returned intersections; may be nullptr ##
#Return number of intersections; may be zero ##
#Example
#Height 128
#Description
Underline uses intercepts to draw on either side of the glyph Descender.
##
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setTextSize(120);
SkPoint textOrigin = { 20, 100 };
SkScalar bounds[] = { 100, 108 };
int count = paint.getTextIntercepts("y", 1, textOrigin.fX, textOrigin.fY, bounds, nullptr);
std::vector<SkScalar> intervals;
intervals.resize(count);
(void) paint.getTextIntercepts("y", 1, textOrigin.fX, textOrigin.fY, bounds,
&intervals.front());
canvas->drawString("y", textOrigin.fX, textOrigin.fY, paint);
paint.setColor(SK_ColorRED);
SkScalar x = textOrigin.fX;
for (int i = 0; i < count; i += 2) {
canvas->drawRect({x, bounds[0], intervals[i], bounds[1]}, paint);
x = intervals[i + 1];
}
canvas->drawRect({intervals[count - 1], bounds[0],
textOrigin.fX + paint.measureText("y", 1), bounds[1]}, paint);
}
##
##
#Method int getPosTextIntercepts(const void* text, size_t length, const SkPoint pos[],
const SkScalar bounds[2], SkScalar* intervals) const
#In Text_Intercepts
#Line # returns where lines intersect positioned text; underlines ##
Returns the number of intervals that intersect bounds.
bounds describes a pair of lines parallel to the text advance.
The return count is zero or a multiple of two, and is at most twice the number of Glyphs in
the string.
Uses Text_Encoding to decode text, Typeface to get the glyph paths,
and Text_Size, Fake_Bold, and Path_Effect to scale and modify the glyph paths.
Uses pos array and Text_Align to position intervals.
Pass nullptr for intervals to determine the size of the interval array.
intervals are cached to improve performance for multiple calls.
#Param text character codes or glyph indices ##
#Param length number of bytes of text ##
#Param pos positions of each glyph ##
#Param bounds lower and upper line parallel to the advance ##
#Param intervals returned intersections; may be nullptr ##
#Return number of intersections; may be zero ##
#Example
#Description
Text intercepts draw on either side of, but not inside, Glyphs in a run.
##
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setTextSize(120);
paint.setVerticalText(true);
SkPoint textPos[] = {{ 60, 40 }, { 60, 140 }};
SkScalar bounds[] = { 56, 64 };
const char str[] = "A-";
int len = sizeof(str) - 1;
int count = paint.getPosTextIntercepts(str, len, textPos, bounds, nullptr);
std::vector<SkScalar> intervals;
intervals.resize(count);
(void) paint.getPosTextIntercepts(str, len, textPos, bounds, &intervals.front());
canvas->drawPosText(str, len, textPos, paint);
paint.setColor(SK_ColorRED);
SkScalar y = textPos[0].fY;
for (int i = 0; i < count; i+= 2) {
canvas->drawRect({bounds[0], y, bounds[1], intervals[i]}, paint);
y = intervals[i + 1];
}
canvas->drawRect({bounds[0], intervals[count - 1], bounds[1], 240}, paint);
}
##
##
#Method int getPosTextHIntercepts(const void* text, size_t length, const SkScalar xpos[],
SkScalar constY, const SkScalar bounds[2],
SkScalar* intervals) const
#In Text_Intercepts
#Line # returns where lines intersect horizontally positioned text; underlines ##
Returns the number of intervals that intersect bounds.
bounds describes a pair of lines parallel to the text advance.
The return count is zero or a multiple of two, and is at most twice the number of Glyphs in
the string.
Uses Text_Encoding to decode text, Typeface to get the glyph paths,
and Text_Size, Fake_Bold, and Path_Effect to scale and modify the glyph paths.
Uses xpos array, constY, and Text_Align to position intervals.
Pass nullptr for intervals to determine the size of the interval array.
intervals are cached to improve performance for multiple calls.
#Param text character codes or glyph indices ##
#Param length number of bytes of text ##
#Param xpos positions of each glyph in x ##
#Param constY position of each glyph in y ##
#Param bounds lower and upper line parallel to the advance ##
#Param intervals returned intersections; may be nullptr ##
#Return number of intersections; may be zero ##
#Example
#Height 128
#Description
Text intercepts do not take stroke thickness into consideration.
##
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setTextSize(120);
paint.setStyle(SkPaint::kStroke_Style);
paint.setStrokeWidth(4);
SkScalar textPosH[] = { 20, 80, 140 };
SkScalar y = 100;
SkScalar bounds[] = { 56, 78 };
const char str[] = "\\-/";
int len = sizeof(str) - 1;
int count = paint.getPosTextHIntercepts(str, len, textPosH, y, bounds, nullptr);
std::vector<SkScalar> intervals;
intervals.resize(count);
(void) paint.getPosTextHIntercepts(str, len, textPosH, y, bounds, &intervals.front());
canvas->drawPosTextH(str, len, textPosH, y, paint);
paint.setColor(0xFFFF7777);
paint.setStyle(SkPaint::kFill_Style);
SkScalar x = textPosH[0];
for (int i = 0; i < count; i+= 2) {
canvas->drawRect({x, bounds[0], intervals[i], bounds[1]}, paint);
x = intervals[i + 1];
}
canvas->drawRect({intervals[count - 1], bounds[0], 180, bounds[1]}, paint);
}
##
##
#Method int getTextBlobIntercepts(const SkTextBlob* blob, const SkScalar bounds[2],
SkScalar* intervals) const
#In Text_Intercepts
#Line # returns where lines intersect Text_Blob; underlines ##
Returns the number of intervals that intersect bounds.
bounds describes a pair of lines parallel to the text advance.
The return count is zero or a multiple of two, and is at most twice the number of Glyphs in
the string.
Uses Typeface to get the glyph paths,
and Text_Size, Fake_Bold, and Path_Effect to scale and modify the glyph paths.
Uses run array and Text_Align to position intervals.
Text_Encoding must be set to SkPaint::kGlyphID_TextEncoding.
Pass nullptr for intervals to determine the size of the interval array.
intervals are cached to improve performance for multiple calls.
#Param blob Glyphs, positions, and text paint attributes ##
#Param bounds lower and upper line parallel to the advance ##
#Param intervals returned intersections; may be nullptr ##
#Return number of intersections; may be zero ##
#Example
#Height 143
void draw(SkCanvas* canvas) {
SkPaint paint;
paint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
paint.setTextSize(120);
SkPoint textPos = { 20, 110 };
int len = 3;
SkTextBlobBuilder textBlobBuilder;
const SkTextBlobBuilder::RunBuffer& run =
textBlobBuilder.allocRun(paint, len, textPos.fX, textPos.fY);
run.glyphs[0] = 10;
run.glyphs[1] = 20;
run.glyphs[2] = 30;
sk_sp<const SkTextBlob> blob = textBlobBuilder.make();
canvas->drawTextBlob(blob.get(), textPos.fX, textPos.fY, paint);
SkScalar bounds[] = { 116, 134 };
int count = paint.getTextBlobIntercepts(blob.get(), bounds, nullptr);
std::vector<SkScalar> intervals;
intervals.resize(count);
(void) paint.getTextBlobIntercepts(blob.get(), bounds, &intervals.front());
canvas->drawTextBlob(blob.get(), 0, 0, paint);
paint.setColor(0xFFFF7777);
SkScalar x = textPos.fX;
for (int i = 0; i < count; i+= 2) {
canvas->drawRect({x, bounds[0], intervals[i], bounds[1]}, paint);
x = intervals[i + 1];
}
canvas->drawRect({intervals[count - 1], bounds[0], 180, bounds[1]}, paint);
}
##
##
#Subtopic Text_Intercepts ##
# ------------------------------------------------------------------------------
#Method bool nothingToDraw() const
#In Utility
#Line # returns true if Paint prevents all drawing ##
Returns true if Paint prevents all drawing;
otherwise, the Paint may or may not allow drawing.
Returns true if, for example, Blend_Mode combined with Color_Alpha computes a
new Alpha of zero.
#Return true if Paint prevents all drawing ##
#Example
void draw(SkCanvas* canvas) {
auto debugster = [](const char* prefix, const SkPaint& p) -> void {
SkDebugf("%s nothing to draw: %s\n", prefix,
p.nothingToDraw() ? "true" : "false");
};
SkPaint paint;
debugster("initial", paint);
paint.setBlendMode(SkBlendMode::kDst);
debugster("blend dst", paint);
paint.setBlendMode(SkBlendMode::kSrcOver);
debugster("blend src over", paint);
paint.setAlpha(0);
debugster("alpha 0", paint);
}
#StdOut
initial nothing to draw: false
blend dst nothing to draw: true
blend src over nothing to draw: false
alpha 0 nothing to draw: true
#StdOut ##
##
##
# ------------------------------------------------------------------------------
#Subtopic Fast_Bounds
#Line # approximate area required by Paint ##
#Private
To be made private.
##
Fast_Bounds methods conservatively outset a drawing bounds by additional area
Paint may draw to.
#Method bool canComputeFastBounds() const
#In Fast_Bounds
#Line # returns true if settings allow for fast bounds computation ###Private
(to be made private)
##
Returns true if Paint does not include elements requiring extensive computation
to compute Device bounds of drawn geometry. For instance, Paint with Path_Effect
always returns false.
#Return true if Paint allows for fast computation of bounds ##
##
#Method const SkRect& computeFastBounds(const SkRect& orig, SkRect* storage) const
#In Fast_Bounds
#Line # returns fill bounds for quick reject tests ###Private
(to be made private)
##
Only call this if canComputeFastBounds returned true. This takes a
raw rectangle (the raw bounds of a shape), and adjusts it for stylistic
effects in the paint (e.g. stroking). If needed, it uses the storage
parameter. It returns the adjusted bounds that can then be used
for SkCanvas::quickReject tests.
The returned Rect will either be orig or storage, thus the caller
should not rely on storage being set to the result, but should always
use the returned value. It is legal for orig and storage to be the same
Rect.
#Private
e.g.
if (paint.canComputeFastBounds()) {
SkRect r, storage;
path.computeBounds(&r, SkPath::kFast_BoundsType);
const SkRect& fastR = paint.computeFastBounds(r, &storage);
if (canvas->quickReject(fastR, ...)) {
// don't draw the path
}
}
##
#Param orig geometry modified by Paint when drawn ##
#Param storage computed bounds of geometry; may not be nullptr ##
#Return fast computed bounds ##
##
#Method const SkRect& computeFastStrokeBounds(const SkRect& orig,
SkRect* storage) const
#In Fast_Bounds
#Line # returns stroke bounds for quick reject tests ##
#Private
(to be made private)
##
#Param orig geometry modified by Paint when drawn ##
#Param storage computed bounds of geometry ##
#Return fast computed bounds ##
##
#Method const SkRect& doComputeFastBounds(const SkRect& orig, SkRect* storage,
Style style) const
#In Fast_Bounds
#Line # returns bounds for quick reject tests ##
#Private
(to be made private)
##
Computes the bounds, overriding the Paint Style. This can be used to
account for additional width required by stroking orig, without
altering Style set to fill.
#Param orig geometry modified by Paint when drawn ##
#Param storage computed bounds of geometry ##
#Param style overrides Style ##
#Return fast computed bounds ##
##
#Subtopic Fast_Bounds Fast_Bounds ##
# ------------------------------------------------------------------------------
#Subtopic Utility
#Populate
#Line # rarely called management functions ##
##
#Method void toString(SkString* str) const
#In Utility
#Line # converts Paint to machine readable form ##
#DefinedBy SK_TO_STRING_NONVIRT() ##
#Private
macro expands to: void toString(SkString* str) const;
##
Creates string representation of Paint. The representation is read by
internal debugging tools. The interface and implementation may be
suppressed by defining SK_IGNORE_TO_STRING.
#Param str storage for string representation of Paint ##
#Example
SkPaint paint;
SkString str;
paint.toString(&str);
const char textSize[] = "TextSize:";
const int trailerSize = strlen("</dd><dt>");
int textSizeLoc = str.find(textSize) + strlen(textSize) + trailerSize;
const char* sizeStart = &str.c_str()[textSizeLoc];
int textSizeEnd = SkStrFind(sizeStart, "</dd>");
SkDebugf("text size = %.*s\n", textSizeEnd, sizeStart);
#StdOut
text size = 12
##
##
#SeeAlso SkPathEffect::toString SkMaskFilter::toString SkColorFilter::toString SkImageFilter::toString
##
# ------------------------------------------------------------------------------
#Class SkPaint ##
#Topic Paint ##
|