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
|
<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>ImageMagick – MagickWand, C API: Drawing Wand Methods</title>
<meta name="keywords" content="MagickWand, C API: Drawing Wand Methods, Image Processing, Digital Image Editing, Image Conversion, Open-Source Software, Image Manipulation, Command-Line Image Tools" />
<meta name="description" content="ImageMagick is a powerful, open-source software suite for creating, editing, converting, and manipulating images in over 200 formats. Ideal for web developers, graphic designers, and researchers, it offers versatile tools for image processing, including batch processing, format conversion, and complex image transformations." />
<meta name="application-name" content="ImageMagick" />
<meta name="application-url" content="https://imagemagick.org" />
<meta name="copyright" content="Copyright (c) 1999 ImageMagick Studio LLC" />
<meta itemprop='url' content='../../' />
<meta itemprop='title' content='ImageMagick' />
<meta itemprop='description' content="ImageMagick is a powerful, open-source software suite for creating, editing, converting, and manipulating images in over 200 formats. Ideal for web developers, graphic designers, and researchers, it offers versatile tools for image processing, including batch processing, format conversion, and complex image transformations." />
<meta property='og:url' content='../../' />
<meta property='og:name' content='ImageMagick' />
<meta property='og:image' content='../../../images/logo.png' />
<meta property='og:type' content='website' />
<meta property='og:site_name' content='ImageMagick' />
<meta property='og:description' content="ImageMagick is a powerful, open-source software suite for creating, editing, converting, and manipulating images in over 200 formats. Ideal for web developers, graphic designers, and researchers, it offers versatile tools for image processing, including batch processing, format conversion, and complex image transformations." />
<meta name="google-site-verification" content="_bMOCDpkx9ZAzBwb2kF3PRHbfUUdFj2uO8Jd1AXArz4" />
<link type="images/png" sizes="64x64" href="../../images/wand.png" rel="icon" />
<link type="images/icon" sizes="16x16" href="../../images/wand.ico" rel="shortcut icon" />
<link href="drawing-wand.html" rel="canonical" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@docsearch/css@3" />
<link href="../assets/magick.css" rel="stylesheet" />
<script src="../assets/color-modes.js" ></script>
</head>
<body>
<svg xmlns="http://www.w3.org/2000/svg" class="d-none">
<symbol id="check2" viewBox="0 0 16 16">
<path d="M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z"/>
</symbol>
<symbol id="circle-half" viewBox="0 0 16 16">
<path d="M8 15A7 7 0 1 0 8 1v14zm0 1A8 8 0 1 1 8 0a8 8 0 0 1 0 16z"/>
</symbol>
<symbol id="moon-stars-fill" viewBox="0 0 16 16">
<path d="M6 .278a.768.768 0 0 1 .08.858 7.208 7.208 0 0 0-.878 3.46c0 4.021 3.278 7.277 7.318 7.277.527 0 1.04-.055 1.533-.16a.787.787 0 0 1 .81.316.733.733 0 0 1-.031.893A8.349 8.349 0 0 1 8.344 16C3.734 16 0 12.286 0 7.71 0 4.266 2.114 1.312 5.124.06A.752.752 0 0 1 6 .278z"/>
<path d="M10.794 3.148a.217.217 0 0 1 .412 0l.387 1.162c.173.518.579.924 1.097 1.097l1.162.387a.217.217 0 0 1 0 .412l-1.162.387a1.734 1.734 0 0 0-1.097 1.097l-.387 1.162a.217.217 0 0 1-.412 0l-.387-1.162A1.734 1.734 0 0 0 9.31 6.593l-1.162-.387a.217.217 0 0 1 0-.412l1.162-.387a1.734 1.734 0 0 0 1.097-1.097l.387-1.162zM13.863.099a.145.145 0 0 1 .274 0l.258.774c.115.346.386.617.732.732l.774.258a.145.145 0 0 1 0 .274l-.774.258a1.156 1.156 0 0 0-.732.732l-.258.774a.145.145 0 0 1-.274 0l-.258-.774a1.156 1.156 0 0 0-.732-.732l-.774-.258a.145.145 0 0 1 0-.274l.774-.258c.346-.115.617-.386.732-.732L13.863.1z"/>
</symbol>
<symbol id="sun-fill" viewBox="0 0 16 16">
<path d="M8 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8zM8 0a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 0zm0 13a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 13zm8-5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2a.5.5 0 0 1 .5.5zM3 8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2A.5.5 0 0 1 3 8zm10.657-5.657a.5.5 0 0 1 0 .707l-1.414 1.415a.5.5 0 1 1-.707-.708l1.414-1.414a.5.5 0 0 1 .707 0zm-9.193 9.193a.5.5 0 0 1 0 .707L3.05 13.657a.5.5 0 0 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0zm9.193 2.121a.5.5 0 0 1-.707 0l-1.414-1.414a.5.5 0 0 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .707zM4.464 4.465a.5.5 0 0 1-.707 0L2.343 3.05a.5.5 0 1 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .708z"/>
</symbol>
</svg>
<div class="dropdown position-fixed bottom-0 end-0 mb-3 me-3 bd-mode-toggle">
<button class="btn btn-bd-secondary py-2 dropdown-toggle d-flex align-items-center"
id="bd-theme"
type="button"
aria-expanded="false"
data-bs-toggle="dropdown"
aria-label="Toggle theme (auto)">
<svg class="bi my-1 theme-icon-active" width="1em" height="1em"><use href="#circle-half"></use></svg>
<span class="visually-hidden" id="bd-theme-text">Toggle theme</span>
</button>
<ul class="dropdown-menu dropdown-menu-end shadow" aria-labelledby="bd-theme-text">
<li>
<button type="button" class="dropdown-item d-flex align-items-center" data-bs-theme-value="light" aria-pressed="false">
<svg class="bi me-2 opacity-50" width="1em" height="1em"><use href="#sun-fill"></use></svg>
Light
<svg class="bi ms-auto d-none" width="1em" height="1em"><use href="#check2"></use></svg>
</button>
</li>
<li>
<button type="button" class="dropdown-item d-flex align-items-center active" data-bs-theme-value="dark" aria-pressed="false">
<svg class="bi me-2 opacity-50" width="1em" height="1em"><use href="#moon-stars-fill"></use></svg>
Dark
<svg class="bi ms-auto d-none" width="1em" height="1em"><use href="#check2"></use></svg>
</button>
</li>
<li>
<button type="button" class="dropdown-item d-flex align-items-center" data-bs-theme-value="auto" aria-pressed="true">
<svg class="bi me-2 opacity-50" width="1em" height="1em"><use href="#circle-half"></use></svg>
Auto
<svg class="bi ms-auto d-none" width="1em" height="1em"><use href="#check2"></use></svg>
</button>
</li>
</ul>
</div>
<svg xmlns="http://www.w3.org/2000/svg" class="d-none">
<symbol id="arrow-right-circle" viewBox="0 0 16 16">
<path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z"/>
</symbol>
<symbol id="color-mode" viewBox="0 0 118 94">
<title>Color Modes</title>
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.509 0c-6.733 0-11.715 5.893-11.492 12.284.214 6.14-.064 14.092-2.066 20.577C8.943 39.365 5.547 43.485 0 44.014v5.972c5.547.529 8.943 4.649 10.951 11.153 2.002 6.485 2.28 14.437 2.066 20.577C12.794 88.106 17.776 94 24.51 94H93.5c6.733 0 11.714-5.893 11.491-12.284-.214-6.14.064-14.092 2.066-20.577 2.009-6.504 5.396-10.624 10.943-11.153v-5.972c-5.547-.529-8.934-4.649-10.943-11.153-2.002-6.484-2.28-14.437-2.066-20.577C105.214 5.894 100.233 0 93.5 0H24.508zM80 57.863C80 66.663 73.436 72 62.543 72H44a2 2 0 01-2-2V24a2 2 0 012-2h18.437c9.083 0 15.044 4.92 15.044 12.474 0 5.302-4.01 10.049-9.119 10.88v.277C75.317 46.394 80 51.21 80 57.863zM60.521 28.34H49.948v14.934h8.905c6.884 0 10.68-2.772 10.68-7.727 0-4.643-3.264-7.207-9.012-7.207zM49.948 49.2v16.458H60.91c7.167 0 10.964-2.876 10.964-8.281 0-5.406-3.903-8.178-11.425-8.178H49.948z"></path>
</symbol>
</svg>
<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="../index.html"><img class="d-block" id="icon" alt="ImageMagick" width="32" height="32" src="../../images/wand.ico"/></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#magick-navbars" aria-controls="magick-navbars" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="magick-navbars">
<ul class="navbar-nav me-auto mb-2 mb-md-0">
<li class="nav-item">
<a class="nav-link " href="../www/download.html">Download</a>
</li>
<li class="nav-item">
<a class="nav-link " href="../www/command-line-tools.html">Tools</a>
</li>
<li class="nav-item">
<a class="nav-link " href="../www/command-line-processing.html">CLI</a>
</li>
<li class="nav-item">
<a class="nav-link " href="../www/develop.html">Develop</a>
</li>
<li class="nav-item">
<a class="nav-link" target="_blank" href="https://github.com/ImageMagick/ImageMagick/discussions">Community</a>
</li>
<li class="nav-item">
</li>
</ul>
<form class="d-flex form-inline" action="https://imagemagick.org/script/search.php">
<input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search" />
<button class="btn btn-outline-success" type="submit" name="sa">Search</button>
</form>
</div>
</div>
</nav>
<div class="col-lg-8 mx-auto p-4 py-md-5 text-body-secondary">
<header class="d-flex align-items-center pb-3 mb-5 border-bottom">
<a href="../index.html" class="d-flex align-items-center text-decoration-none">
<h1 class="fs-4">MagickWand, C API: Drawing Wand Methods</h1>
</a>
</header>
<main class="container">
<h1 class="text-center">Drawing-wand</h1>
<div class="btn-group">
<button class="btn btn-secondary dropdown-toggle" type="button" id="defaultDropdown" data-bs-toggle="dropdown" data-bs-auto-close="true" aria-expanded="false">
Select API Method
</button>
<ul class="dropdown-menu pre-scrollable" aria-labelledby="defaultDropdown">
<li><a href="#ClearDrawingWand">ClearDrawingWand</a></li>
<li><a href="#CloneDrawingWand">CloneDrawingWand</a></li>
<li><a href="#DestroyDrawingWand">DestroyDrawingWand</a></li>
<li><a href="#DrawAffine">DrawAffine</a></li>
<li><a href="#DrawAlpha">DrawAlpha</a></li>
<li><a href="#DrawAnnotation">DrawAnnotation</a></li>
<li><a href="#DrawArc">DrawArc</a></li>
<li><a href="#DrawBezier">DrawBezier</a></li>
<li><a href="#DrawCircle">DrawCircle</a></li>
<li><a href="#DrawClearException">DrawClearException</a></li>
<li><a href="#DrawCloneExceptionInfo">DrawCloneExceptionInfo</a></li>
<li><a href="#DrawColor">DrawColor</a></li>
<li><a href="#DrawComposite">DrawComposite</a></li>
<li><a href="#DrawComment">DrawComment</a></li>
<li><a href="#DrawEllipse">DrawEllipse</a></li>
<li><a href="#DrawGetBorderColor">DrawGetBorderColor</a></li>
<li><a href="#DrawGetClipPath">DrawGetClipPath</a></li>
<li><a href="#DrawGetClipRule">DrawGetClipRule</a></li>
<li><a href="#DrawGetClipUnits">DrawGetClipUnits</a></li>
<li><a href="#DrawGetDensity">DrawGetDensity</a></li>
<li><a href="#DrawGetException">DrawGetException</a></li>
<li><a href="#DrawGetExceptionType">DrawGetExceptionType</a></li>
<li><a href="#DrawGetFillColor">DrawGetFillColor</a></li>
<li><a href="#DrawGetFillOpacity">DrawGetFillOpacity</a></li>
<li><a href="#DrawGetFillRule">DrawGetFillRule</a></li>
<li><a href="#DrawGetFont">DrawGetFont</a></li>
<li><a href="#DrawGetFontFamily">DrawGetFontFamily</a></li>
<li><a href="#DrawGetFontResolution">DrawGetFontResolution</a></li>
<li><a href="#DrawGetFontSize">DrawGetFontSize</a></li>
<li><a href="#DrawGetFontStretch">DrawGetFontStretch</a></li>
<li><a href="#DrawGetFontStyle">DrawGetFontStyle</a></li>
<li><a href="#DrawGetFontWeight">DrawGetFontWeight</a></li>
<li><a href="#DrawGetGravity">DrawGetGravity</a></li>
<li><a href="#DrawGetOpacity">DrawGetOpacity</a></li>
<li><a href="#DrawGetStrokeAntialias">DrawGetStrokeAntialias</a></li>
<li><a href="#DrawGetStrokeColor">DrawGetStrokeColor</a></li>
<li><a href="#DrawGetStrokeDashArray">DrawGetStrokeDashArray</a></li>
<li><a href="#DrawGetStrokeDashOffset">DrawGetStrokeDashOffset</a></li>
<li><a href="#DrawGetStrokeLineCap">DrawGetStrokeLineCap</a></li>
<li><a href="#DrawGetStrokeLineJoin">DrawGetStrokeLineJoin</a></li>
<li><a href="#DrawGetStrokeMiterLimit">DrawGetStrokeMiterLimit</a></li>
<li><a href="#DrawGetStrokeOpacity">DrawGetStrokeOpacity</a></li>
<li><a href="#DrawGetStrokeWidth">DrawGetStrokeWidth</a></li>
<li><a href="#DrawGetTextAlignment">DrawGetTextAlignment</a></li>
<li><a href="#DrawGetTextAntialias">DrawGetTextAntialias</a></li>
<li><a href="#DrawGetTextDecoration">DrawGetTextDecoration</a></li>
<li><a href="#DrawGetTextDirection">DrawGetTextDirection</a></li>
<li><a href="#DrawGetTextEncoding">DrawGetTextEncoding</a></li>
<li><a href="#DrawGetTextKerning">DrawGetTextKerning</a></li>
<li><a href="#DrawGetTextInterlineSpacing">DrawGetTextInterlineSpacing</a></li>
<li><a href="#DrawGetTextInterwordSpacing">DrawGetTextInterwordSpacing</a></li>
<li><a href="#DrawGetTypeMetrics">DrawGetTypeMetrics</a></li>
<li><a href="#DrawGetVectorGraphics">DrawGetVectorGraphics</a></li>
<li><a href="#DrawGetTextUnderColor">DrawGetTextUnderColor</a></li>
<li><a href="#DrawLine">DrawLine</a></li>
<li><a href="#DrawPathClose">DrawPathClose</a></li>
<li><a href="#DrawPathCurveToAbsolute">DrawPathCurveToAbsolute</a></li>
<li><a href="#DrawPathCurveToRelative">DrawPathCurveToRelative</a></li>
<li><a href="#DrawPathCurveToQuadraticBezierAbsolute">DrawPathCurveToQuadraticBezierAbsolute</a></li>
<li><a href="#DrawPathCurveToQuadraticBezierRelative">DrawPathCurveToQuadraticBezierRelative</a></li>
<li><a href="#DrawPathCurveToQuadraticBezierSmoothAbsolute">DrawPathCurveToQuadraticBezierSmoothAbsolute</a></li>
<li><a href="#DrawPathCurveToQuadraticBezierSmoothRelative">DrawPathCurveToQuadraticBezierSmoothRelative</a></li>
<li><a href="#DrawPathCurveToSmoothAbsolute">DrawPathCurveToSmoothAbsolute</a></li>
<li><a href="#DrawPathCurveToSmoothRelative">DrawPathCurveToSmoothRelative</a></li>
<li><a href="#DrawPathEllipticArcAbsolute">DrawPathEllipticArcAbsolute</a></li>
<li><a href="#DrawPathEllipticArcRelative">DrawPathEllipticArcRelative</a></li>
<li><a href="#DrawPathFinish">DrawPathFinish</a></li>
<li><a href="#DrawPathLineToAbsolute">DrawPathLineToAbsolute</a></li>
<li><a href="#DrawPathLineToRelative">DrawPathLineToRelative</a></li>
<li><a href="#DrawPathLineToHorizontalAbsolute">DrawPathLineToHorizontalAbsolute</a></li>
<li><a href="#DrawPathLineToHorizontalRelative">DrawPathLineToHorizontalRelative</a></li>
<li><a href="#DrawPathLineToVerticalAbsolute">DrawPathLineToVerticalAbsolute</a></li>
<li><a href="#DrawPathLineToVerticalRelative">DrawPathLineToVerticalRelative</a></li>
<li><a href="#DrawPathMoveToAbsolute">DrawPathMoveToAbsolute</a></li>
<li><a href="#DrawPathMoveToRelative">DrawPathMoveToRelative</a></li>
<li><a href="#DrawPathStart">DrawPathStart</a></li>
<li><a href="#DrawPoint">DrawPoint</a></li>
<li><a href="#DrawPolygon">DrawPolygon</a></li>
<li><a href="#DrawPolyline">DrawPolyline</a></li>
<li><a href="#DrawPopClipPath">DrawPopClipPath</a></li>
<li><a href="#DrawPopDefs">DrawPopDefs</a></li>
<li><a href="#DrawPopPattern">DrawPopPattern</a></li>
<li><a href="#DrawPushClipPath">DrawPushClipPath</a></li>
<li><a href="#DrawPushDefs">DrawPushDefs</a></li>
<li><a href="#DrawPushPattern">DrawPushPattern</a></li>
<li><a href="#DrawRectangle">DrawRectangle</a></li>
<li><a href="#DrawResetVectorGraphics">DrawResetVectorGraphics</a></li>
<li><a href="#DrawRotate">DrawRotate</a></li>
<li><a href="#DrawRoundRectangle">DrawRoundRectangle</a></li>
<li><a href="#DrawScale">DrawScale</a></li>
<li><a href="#DrawSetBorderColor">DrawSetBorderColor</a></li>
<li><a href="#DrawSetClipPath">DrawSetClipPath</a></li>
<li><a href="#DrawSetClipRule">DrawSetClipRule</a></li>
<li><a href="#DrawSetClipUnits">DrawSetClipUnits</a></li>
<li><a href="#DrawSetDensity">DrawSetDensity</a></li>
<li><a href="#DrawSetFillColor">DrawSetFillColor</a></li>
<li><a href="#DrawSetFillOpacity">DrawSetFillOpacity</a></li>
<li><a href="#DrawSetFontResolution">DrawSetFontResolution</a></li>
<li><a href="#DrawSetOpacity">DrawSetOpacity</a></li>
<li><a href="#DrawSetFillPatternURL">DrawSetFillPatternURL</a></li>
<li><a href="#DrawSetFillRule">DrawSetFillRule</a></li>
<li><a href="#DrawSetFont">DrawSetFont</a></li>
<li><a href="#DrawSetFontFamily">DrawSetFontFamily</a></li>
<li><a href="#DrawSetFontSize">DrawSetFontSize</a></li>
<li><a href="#DrawSetFontStretch">DrawSetFontStretch</a></li>
<li><a href="#DrawSetFontStyle">DrawSetFontStyle</a></li>
<li><a href="#DrawSetFontWeight">DrawSetFontWeight</a></li>
<li><a href="#DrawSetGravity">DrawSetGravity</a></li>
<li><a href="#DrawSetStrokeColor">DrawSetStrokeColor</a></li>
<li><a href="#DrawSetStrokePatternURL">DrawSetStrokePatternURL</a></li>
<li><a href="#DrawSetStrokeAntialias">DrawSetStrokeAntialias</a></li>
<li><a href="#DrawSetStrokeDashArray">DrawSetStrokeDashArray</a></li>
<li><a href="#DrawSetStrokeDashOffset">DrawSetStrokeDashOffset</a></li>
<li><a href="#DrawSetStrokeLineCap">DrawSetStrokeLineCap</a></li>
<li><a href="#DrawSetStrokeLineJoin">DrawSetStrokeLineJoin</a></li>
<li><a href="#DrawSetStrokeMiterLimit">DrawSetStrokeMiterLimit</a></li>
<li><a href="#DrawSetStrokeOpacity">DrawSetStrokeOpacity</a></li>
<li><a href="#DrawSetStrokeWidth">DrawSetStrokeWidth</a></li>
<li><a href="#DrawSetTextAlignment">DrawSetTextAlignment</a></li>
<li><a href="#DrawSetTextAntialias">DrawSetTextAntialias</a></li>
<li><a href="#DrawSetTextDecoration">DrawSetTextDecoration</a></li>
<li><a href="#DrawSetTextDirection">DrawSetTextDirection</a></li>
<li><a href="#DrawSetTextEncoding">DrawSetTextEncoding</a></li>
<li><a href="#DrawSetTextKerning">DrawSetTextKerning</a></li>
<li><a href="#DrawSetTextInterlineSpacing">DrawSetTextInterlineSpacing</a></li>
<li><a href="#DrawSetTextInterwordSpacing">DrawSetTextInterwordSpacing</a></li>
<li><a href="#DrawSetTextUnderColor">DrawSetTextUnderColor</a></li>
<li><a href="#DrawSetVectorGraphics">DrawSetVectorGraphics</a></li>
<li><a href="#DrawSkewX">DrawSkewX</a></li>
<li><a href="#DrawSkewY">DrawSkewY</a></li>
<li><a href="#DrawTranslate">DrawTranslate</a></li>
<li><a href="#DrawSetViewbox">DrawSetViewbox</a></li>
<li><a href="#IsDrawingWand">IsDrawingWand</a></li>
<li><a href="#NewDrawingWand">NewDrawingWand</a></li>
<li><a href="#PeekDrawingWand">PeekDrawingWand</a></li>
<li><a href="#PopDrawingWand">PopDrawingWand</a></li>
</ul>
</div>
<br/>
<br/>
<div class="magick-header">
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="ClearDrawingWand">ClearDrawingWand</a></h2>
<p>ClearDrawingWand() clears resources associated with the drawing wand.</p>
<p>The format of the ClearDrawingWand method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void ClearDrawingWand(DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand to clear. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="CloneDrawingWand">CloneDrawingWand</a></h2>
<p>CloneDrawingWand() makes an exact copy of the specified wand.</p>
<p>The format of the CloneDrawingWand method is:</p>
<pre class="bg-light text-dark mx-4"><samp>DrawingWand *CloneDrawingWand(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the magick wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DestroyDrawingWand">DestroyDrawingWand</a></h2>
<p>DestroyDrawingWand() frees all resources associated with the drawing wand. Once the drawing wand has been freed, it should not be used and further unless it re-allocated.</p>
<p>The format of the DestroyDrawingWand method is:</p>
<pre class="bg-light text-dark mx-4"><samp>DrawingWand *DestroyDrawingWand(DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand to destroy. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawAffine">DrawAffine</a></h2>
<p>DrawAffine() adjusts the current affine transformation matrix with the specified affine transformation matrix. Note that the current affine transform is adjusted rather than replaced.</p>
<p>The format of the DrawAffine method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawAffine(DrawingWand *wand,const AffineMatrix *affine)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>Drawing wand </dd>
<dd> </dd>
<dt>affine</dt>
<dd>Affine matrix parameters </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawAlpha">DrawAlpha</a></h2>
<p>DrawAlpha() paints on the image's alpha channel in order to set effected pixels to transparent. The available paint methods are:</p>
<pre class="bg-light text-dark mx-4"><samp> PointMethod: Select the target pixel
ReplaceMethod: Select any pixel that matches the target pixel.
FloodfillMethod: Select the target pixel and matching neighbors.
FillToBorderMethod: Select the target pixel and neighbors not matching
border color.
ResetMethod: Select all pixels.
</samp></pre>
<p>The format of the DrawAlpha method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawAlpha(DrawingWand *wand,const double x,const double y,
const PaintMethod paint_method)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>x</dt>
<dd>x ordinate </dd>
<dd> </dd>
<dt>y</dt>
<dd>y ordinate </dd>
<dd> </dd>
<dt>paint_method</dt>
<dd>paint method. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawAnnotation">DrawAnnotation</a></h2>
<p>DrawAnnotation() draws text on the image.</p>
<p>The format of the DrawAnnotation method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawAnnotation(DrawingWand *wand,const double x,
const double y,const unsigned char *text)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>x</dt>
<dd>x ordinate to left of text </dd>
<dd> </dd>
<dt>y</dt>
<dd>y ordinate to text baseline </dd>
<dd> </dd>
<dt>text</dt>
<dd>text to draw </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawArc">DrawArc</a></h2>
<p>DrawArc() draws an arc falling within a specified bounding rectangle on the image.</p>
<p>The format of the DrawArc method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawArc(DrawingWand *wand,const double sx,const double sy,
const double ex,const double ey,const double sd,const double ed)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>sx</dt>
<dd>starting x ordinate of bounding rectangle </dd>
<dd> </dd>
<dt>sy</dt>
<dd>starting y ordinate of bounding rectangle </dd>
<dd> </dd>
<dt>ex</dt>
<dd>ending x ordinate of bounding rectangle </dd>
<dd> </dd>
<dt>ey</dt>
<dd>ending y ordinate of bounding rectangle </dd>
<dd> </dd>
<dt>sd</dt>
<dd>starting degrees of rotation </dd>
<dd> </dd>
<dt>ed</dt>
<dd>ending degrees of rotation </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawBezier">DrawBezier</a></h2>
<p>DrawBezier() draws a bezier curve through a set of points on the image.</p>
<p>The format of the DrawBezier method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawBezier(DrawingWand *wand,
const size_t number_coordinates,const PointInfo *coordinates)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>number_coordinates</dt>
<dd>number of coordinates </dd>
<dd> </dd>
<dt>coordinates</dt>
<dd>coordinates </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawCircle">DrawCircle</a></h2>
<p>DrawCircle() draws a circle on the image.</p>
<p>The format of the DrawCircle method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawCircle(DrawingWand *wand,const double ox,
const double oy,const double px, const double py)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>ox</dt>
<dd>origin x ordinate </dd>
<dd> </dd>
<dt>oy</dt>
<dd>origin y ordinate </dd>
<dd> </dd>
<dt>px</dt>
<dd>perimeter x ordinate </dd>
<dd> </dd>
<dt>py</dt>
<dd>perimeter y ordinate </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawClearException">DrawClearException</a></h2>
<p>DrawClearException() clear any exceptions associated with the wand.</p>
<p>The format of the DrawClearException method is:</p>
<pre class="bg-light text-dark mx-4"><samp>MagickBooleanType DrawClearException(DrawWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawCloneExceptionInfo">DrawCloneExceptionInfo</a></h2>
<p>DrawCloneExceptionInfo() clones the ExceptionInfo structure within the wand.</p>
<p>The format of the DrawCloneExceptionInfo method is:</p>
<pre class="bg-light text-dark mx-4"><samp>ExceptionInfo *DrawCloneExceptionInfo(DrawWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawColor">DrawColor</a></h2>
<p>DrawColor() draws color on image using the current fill color, starting at specified position, and using specified paint method. The available paint methods are:</p>
<pre class="bg-light text-dark mx-4"><samp> PointMethod: Recolors the target pixel
ReplaceMethod: Recolor any pixel that matches the target pixel.
FloodfillMethod: Recolors target pixels and matching neighbors.
ResetMethod: Recolor all pixels.
</samp></pre>
<p>The format of the DrawColor method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawColor(DrawingWand *wand,const double x,const double y,
const PaintMethod paint_method)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>x</dt>
<dd>x ordinate. </dd>
<dd> </dd>
<dt>y</dt>
<dd>y ordinate. </dd>
<dd> </dd>
<dt>paint_method</dt>
<dd>paint method. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawComposite">DrawComposite</a></h2>
<p>DrawComposite() composites an image onto the current image, using the specified composition operator, specified position, and at the specified size.</p>
<p>The format of the DrawComposite method is:</p>
<pre class="bg-light text-dark mx-4"><samp>MagickBooleanType DrawComposite(DrawingWand *wand,
const CompositeOperator compose,const double x,
const double y,const double width,const double height,
MagickWand *magick_wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>compose</dt>
<dd>composition operator </dd>
<dd> </dd>
<dt>x</dt>
<dd>x ordinate of top left corner </dd>
<dd> </dd>
<dt>y</dt>
<dd>y ordinate of top left corner </dd>
<dd> </dd>
<dt>width</dt>
<dd>Width to resize image to prior to compositing. Specify zero to use existing width. </dd>
<dd> </dd>
<dt>height</dt>
<dd>Height to resize image to prior to compositing. Specify zero to use existing height. </dd>
<dd> </dd>
<dt>magick_wand</dt>
<dd>Image to composite is obtained from this wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawComment">DrawComment</a></h2>
<p>DrawComment() adds a comment to a vector output stream.</p>
<p>The format of the DrawComment method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawComment(DrawingWand *wand,const char *comment)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>comment</dt>
<dd>comment text </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawEllipse">DrawEllipse</a></h2>
<p>DrawEllipse() draws an ellipse on the image.</p>
<p>The format of the DrawEllipse method is:</p>
<pre class="bg-light text-dark mx-4"><samp> void DrawEllipse(DrawingWand *wand,const double ox,const double oy,
const double rx,const double ry,const double start,const double end)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>ox</dt>
<dd>origin x ordinate </dd>
<dd> </dd>
<dt>oy</dt>
<dd>origin y ordinate </dd>
<dd> </dd>
<dt>rx</dt>
<dd>radius in x </dd>
<dd> </dd>
<dt>ry</dt>
<dd>radius in y </dd>
<dd> </dd>
<dt>start</dt>
<dd>starting rotation in degrees </dd>
<dd> </dd>
<dt>end</dt>
<dd>ending rotation in degrees </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetBorderColor">DrawGetBorderColor</a></h2>
<p>DrawGetBorderColor() returns the border color used for drawing bordered objects.</p>
<p>The format of the DrawGetBorderColor method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawGetBorderColor(const DrawingWand *wand,
PixelWand *border_color)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>border_color</dt>
<dd>Return the border color. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetClipPath">DrawGetClipPath</a></h2>
<p>DrawGetClipPath() obtains the current clipping path ID. The value returned must be deallocated by the user when it is no longer needed.</p>
<p>The format of the DrawGetClipPath method is:</p>
<pre class="bg-light text-dark mx-4"><samp>char *DrawGetClipPath(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetClipRule">DrawGetClipRule</a></h2>
<p>DrawGetClipRule() returns the current polygon fill rule to be used by the clipping path.</p>
<p>The format of the DrawGetClipRule method is:</p>
<pre class="bg-light text-dark mx-4"><samp> FillRule DrawGetClipRule(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetClipUnits">DrawGetClipUnits</a></h2>
<p>DrawGetClipUnits() returns the interpretation of clip path units.</p>
<p>The format of the DrawGetClipUnits method is:</p>
<pre class="bg-light text-dark mx-4"><samp>ClipPathUnits DrawGetClipUnits(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetDensity">DrawGetDensity</a></h2>
<p>DrawGetDensity() obtains the vertical and horizontal resolution. The value returned must be deallocated by the user when it is no longer needed.</p>
<p>The format of the DrawGetDensity method is:</p>
<pre class="bg-light text-dark mx-4"><samp>char *DrawGetDensity(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetException">DrawGetException</a></h2>
<p>DrawGetException() returns the severity, reason, and description of any error that occurs when using other methods in this API.</p>
<p>The format of the DrawGetException method is:</p>
<pre class="bg-light text-dark mx-4"><samp>char *DrawGetException(const DrawWand *wand,
ExceptionType *severity)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>severity</dt>
<dd>the severity of the error is returned here. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetExceptionType">DrawGetExceptionType</a></h2>
<p>DrawGetExceptionType() the exception type associated with the wand. If no exception has occurred, UndefinedExceptionType is returned.</p>
<p>The format of the DrawGetExceptionType method is:</p>
<pre class="bg-light text-dark mx-4"><samp>ExceptionType DrawGetExceptionType(const DrawWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the magick wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetFillColor">DrawGetFillColor</a></h2>
<p>DrawGetFillColor() returns the fill color used for drawing filled objects.</p>
<p>The format of the DrawGetFillColor method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawGetFillColor(const DrawingWand *wand,
PixelWand *fill_color)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>fill_color</dt>
<dd>Return the fill color. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetFillOpacity">DrawGetFillOpacity</a></h2>
<p>DrawGetFillOpacity() returns the alpha used when drawing using the fill color or fill texture. Fully opaque is 1.0.</p>
<p>The format of the DrawGetFillOpacity method is:</p>
<pre class="bg-light text-dark mx-4"><samp>double DrawGetFillOpacity(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetFillRule">DrawGetFillRule</a></h2>
<p>DrawGetFillRule() returns the fill rule used while drawing polygons.</p>
<p>The format of the DrawGetFillRule method is:</p>
<pre class="bg-light text-dark mx-4"><samp>FillRule DrawGetFillRule(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetFont">DrawGetFont</a></h2>
<p>DrawGetFont() returns a null-terminated string specifying the font used when annotating with text. The value returned must be freed by the user when no longer needed.</p>
<p>The format of the DrawGetFont method is:</p>
<pre class="bg-light text-dark mx-4"><samp>char *DrawGetFont(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetFontFamily">DrawGetFontFamily</a></h2>
<p>DrawGetFontFamily() returns the font family to use when annotating with text. The value returned must be freed by the user when it is no longer needed.</p>
<p>The format of the DrawGetFontFamily method is:</p>
<pre class="bg-light text-dark mx-4"><samp>char *DrawGetFontFamily(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetFontResolution">DrawGetFontResolution</a></h2>
<p>DrawGetFontResolution() gets the image X and Y resolution.</p>
<p>The format of the DrawGetFontResolution method is:</p>
<pre class="bg-light text-dark mx-4"><samp>MagickBooleanType DrawGetFontResolution(const DrawingWand *wand,
double *x,double *y)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the magick wand. </dd>
<dd> </dd>
<dt>x</dt>
<dd>the x-resolution. </dd>
<dd> </dd>
<dt>y</dt>
<dd>the y-resolution. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetFontSize">DrawGetFontSize</a></h2>
<p>DrawGetFontSize() returns the font pointsize used when annotating with text.</p>
<p>The format of the DrawGetFontSize method is:</p>
<pre class="bg-light text-dark mx-4"><samp>double DrawGetFontSize(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetFontStretch">DrawGetFontStretch</a></h2>
<p>DrawGetFontStretch() returns the font stretch used when annotating with text.</p>
<p>The format of the DrawGetFontStretch method is:</p>
<pre class="bg-light text-dark mx-4"><samp>StretchType DrawGetFontStretch(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetFontStyle">DrawGetFontStyle</a></h2>
<p>DrawGetFontStyle() returns the font style used when annotating with text.</p>
<p>The format of the DrawGetFontStyle method is:</p>
<pre class="bg-light text-dark mx-4"><samp>StyleType DrawGetFontStyle(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetFontWeight">DrawGetFontWeight</a></h2>
<p>DrawGetFontWeight() returns the font weight used when annotating with text.</p>
<p>The format of the DrawGetFontWeight method is:</p>
<pre class="bg-light text-dark mx-4"><samp>size_t DrawGetFontWeight(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetGravity">DrawGetGravity</a></h2>
<p>DrawGetGravity() returns the text placement gravity used when annotating with text.</p>
<p>The format of the DrawGetGravity method is:</p>
<pre class="bg-light text-dark mx-4"><samp>GravityType DrawGetGravity(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetOpacity">DrawGetOpacity</a></h2>
<p>DrawGetOpacity() returns the alpha used when drawing with the fill or stroke color or texture. Fully opaque is 1.0.</p>
<p>The format of the DrawGetOpacity method is:</p>
<pre class="bg-light text-dark mx-4"><samp>double DrawGetOpacity(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetStrokeAntialias">DrawGetStrokeAntialias</a></h2>
<p>DrawGetStrokeAntialias() returns the current stroke antialias setting. Stroked outlines are antialiased by default. When antialiasing is disabled stroked pixels are thresholded to determine if the stroke color or underlying canvas color should be used.</p>
<p>The format of the DrawGetStrokeAntialias method is:</p>
<pre class="bg-light text-dark mx-4"><samp>MagickBooleanType DrawGetStrokeAntialias(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetStrokeColor">DrawGetStrokeColor</a></h2>
<p>DrawGetStrokeColor() returns the color used for stroking object outlines.</p>
<p>The format of the DrawGetStrokeColor method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawGetStrokeColor(const DrawingWand *wand,
PixelWand *stroke_color)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>stroke_color</dt>
<dd>Return the stroke color. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetStrokeDashArray">DrawGetStrokeDashArray</a></h2>
<p>DrawGetStrokeDashArray() returns an array representing the pattern of dashes and gaps used to stroke paths (see DrawSetStrokeDashArray). The array must be freed once it is no longer required by the user.</p>
<p>The format of the DrawGetStrokeDashArray method is:</p>
<pre class="bg-light text-dark mx-4"><samp>double *DrawGetStrokeDashArray(const DrawingWand *wand,
size_t *number_elements)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>number_elements</dt>
<dd>address to place number of elements in dash array </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetStrokeDashOffset">DrawGetStrokeDashOffset</a></h2>
<p>DrawGetStrokeDashOffset() returns the offset into the dash pattern to start the dash.</p>
<p>The format of the DrawGetStrokeDashOffset method is:</p>
<pre class="bg-light text-dark mx-4"><samp>double DrawGetStrokeDashOffset(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetStrokeLineCap">DrawGetStrokeLineCap</a></h2>
<p>DrawGetStrokeLineCap() returns the shape to be used at the end of open subpaths when they are stroked. Values of LineCap are UndefinedCap, ButtCap, RoundCap, and SquareCap.</p>
<p>The format of the DrawGetStrokeLineCap method is:</p>
<pre class="bg-light text-dark mx-4"><samp>LineCap DrawGetStrokeLineCap(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetStrokeLineJoin">DrawGetStrokeLineJoin</a></h2>
<p>DrawGetStrokeLineJoin() returns the shape to be used at the corners of paths (or other vector shapes) when they are stroked. Values of LineJoin are UndefinedJoin, MiterJoin, RoundJoin, and BevelJoin.</p>
<p>The format of the DrawGetStrokeLineJoin method is:</p>
<pre class="bg-light text-dark mx-4"><samp>LineJoin DrawGetStrokeLineJoin(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetStrokeMiterLimit">DrawGetStrokeMiterLimit</a></h2>
<p>DrawGetStrokeMiterLimit() returns the miter limit. When two line segments meet at a sharp angle and miter joins have been specified for 'lineJoin', it is possible for the miter to extend far beyond the thickness of the line stroking the path. The miterLimit' imposes a limit on the ratio of the miter length to the 'lineWidth'.</p>
<p>The format of the DrawGetStrokeMiterLimit method is:</p>
<pre class="bg-light text-dark mx-4"><samp>size_t DrawGetStrokeMiterLimit(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetStrokeOpacity">DrawGetStrokeOpacity</a></h2>
<p>DrawGetStrokeOpacity() returns the alpha of stroked object outlines.</p>
<p>The format of the DrawGetStrokeOpacity method is:</p>
<pre class="bg-light text-dark mx-4"><samp>double DrawGetStrokeOpacity(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetStrokeWidth">DrawGetStrokeWidth</a></h2>
<p>DrawGetStrokeWidth() returns the width of the stroke used to draw object outlines.</p>
<p>The format of the DrawGetStrokeWidth method is:</p>
<pre class="bg-light text-dark mx-4"><samp>double DrawGetStrokeWidth(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetTextAlignment">DrawGetTextAlignment</a></h2>
<p>DrawGetTextAlignment() returns the alignment applied when annotating with text.</p>
<p>The format of the DrawGetTextAlignment method is:</p>
<pre class="bg-light text-dark mx-4"><samp>AlignType DrawGetTextAlignment(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetTextAntialias">DrawGetTextAntialias</a></h2>
<p>DrawGetTextAntialias() returns the current text antialias setting, which determines whether text is antialiased. Text is antialiased by default.</p>
<p>The format of the DrawGetTextAntialias method is:</p>
<pre class="bg-light text-dark mx-4"><samp>MagickBooleanType DrawGetTextAntialias(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetTextDecoration">DrawGetTextDecoration</a></h2>
<p>DrawGetTextDecoration() returns the decoration applied when annotating with text.</p>
<p>The format of the DrawGetTextDecoration method is:</p>
<pre class="bg-light text-dark mx-4"><samp>DecorationType DrawGetTextDecoration(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetTextDirection">DrawGetTextDirection</a></h2>
<p>DrawGetTextDirection() returns the direction that will be used when annotating with text.</p>
<p>The format of the DrawGetTextDirection method is:</p>
<pre class="bg-light text-dark mx-4"><samp>DirectionType DrawGetTextDirection(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetTextEncoding">DrawGetTextEncoding</a></h2>
<p>DrawGetTextEncoding() returns a null-terminated string which specifies the code set used for text annotations. The string must be freed by the user once it is no longer required.</p>
<p>The format of the DrawGetTextEncoding method is:</p>
<pre class="bg-light text-dark mx-4"><samp>char *DrawGetTextEncoding(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetTextKerning">DrawGetTextKerning</a></h2>
<p>DrawGetTextKerning() gets the spacing between characters in text.</p>
<p>The format of the DrawSetFontKerning method is:</p>
<pre class="bg-light text-dark mx-4"><samp>double DrawGetTextKerning(DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetTextInterlineSpacing">DrawGetTextInterlineSpacing</a></h2>
<p>DrawGetTextInterlineSpacing() gets the spacing between lines in text.</p>
<p>The format of the DrawGetTextInterlineSpacing method is:</p>
<pre class="bg-light text-dark mx-4"><samp>double DrawGetTextInterlineSpacing(DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetTextInterwordSpacing">DrawGetTextInterwordSpacing</a></h2>
<p>DrawGetTextInterwordSpacing() gets the spacing between words in text.</p>
<p>The format of the DrawSetFontKerning method is:</p>
<pre class="bg-light text-dark mx-4"><samp>double DrawGetTextInterwordSpacing(DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetTypeMetrics">DrawGetTypeMetrics</a></h2>
<p>DrawGetTypeMetrics() returns the following information for the specified font and text:</p>
<pre class="bg-light text-dark mx-4"><samp> character width
character height
ascender
descender
text width
text height
maximum horizontal advance
bounds: x1
bounds: y1
bounds: x2
bounds: y2
origin: x
origin: y
underline position
underline thickness
</samp></pre>
<p>The format of the DrawGetTypeMetrics method is:</p>
<pre class="bg-light text-dark mx-4"><samp>MagickBooleanType DrawGetTypeMetrics(const DrawingWand *wand,
const char *text,MagickBooleanType ignore_newlines,
$ TypeMetric *metrics)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>text</dt>
<dd>text to draw. </dd>
<dd> </dd>
<dt>metrics</dt>
<dd>Return the font metrics in this structure. </dd>
<dd> </dd>
<dt>ignore_newlines</dt>
<dd>indicates whether newlines should be ignored. </dd>
<dd> </dd>
<dt>metrics</dt>
<dd>Return the font metrics in this structure. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetVectorGraphics">DrawGetVectorGraphics</a></h2>
<p>DrawGetVectorGraphics() returns a null-terminated string which specifies the vector graphics generated by any graphics calls made since the wand was instantiated. The string must be freed by the user once it is no longer required.</p>
<p>The format of the DrawGetVectorGraphics method is:</p>
<pre class="bg-light text-dark mx-4"><samp>char *DrawGetVectorGraphics(DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawGetTextUnderColor">DrawGetTextUnderColor</a></h2>
<p>DrawGetTextUnderColor() returns the color of a background rectangle to place under text annotations.</p>
<p>The format of the DrawGetTextUnderColor method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawGetTextUnderColor(const DrawingWand *wand,
PixelWand *under_color)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>under_color</dt>
<dd>Return the under color. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawLine">DrawLine</a></h2>
<p>DrawLine() draws a line on the image using the current stroke color, stroke alpha, and stroke width.</p>
<p>The format of the DrawLine method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawLine(DrawingWand *wand,const double sx,const double sy,
const double ex,const double ey)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>sx</dt>
<dd>starting x ordinate </dd>
<dd> </dd>
<dt>sy</dt>
<dd>starting y ordinate </dd>
<dd> </dd>
<dt>ex</dt>
<dd>ending x ordinate </dd>
<dd> </dd>
<dt>ey</dt>
<dd>ending y ordinate </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPathClose">DrawPathClose</a></h2>
<p>DrawPathClose() adds a path element to the current path which closes the current subpath by drawing a straight line from the current point to the current subpath's most recent starting point (usually, the most recent moveto point).</p>
<p>The format of the DrawPathClose method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPathClose(DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPathCurveToAbsolute">DrawPathCurveToAbsolute</a></h2>
<p>DrawPathCurveToAbsolute() draws a cubic Bezier curve from the current point to (x,y) using (x1,y1) as the control point at the beginning of the curve and (x2,y2) as the control point at the end of the curve using absolute coordinates. At the end of the command, the new current point becomes the final (x,y) coordinate pair used in the polybezier.</p>
<p>The format of the DrawPathCurveToAbsolute method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPathCurveToAbsolute(DrawingWand *wand,const double x1,
const double y1,const double x2,const double y2,const double x,
const double y)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>x1</dt>
<dd>x ordinate of control point for curve beginning </dd>
<dd> </dd>
<dt>y1</dt>
<dd>y ordinate of control point for curve beginning </dd>
<dd> </dd>
<dt>x2</dt>
<dd>x ordinate of control point for curve ending </dd>
<dd> </dd>
<dt>y2</dt>
<dd>y ordinate of control point for curve ending </dd>
<dd> </dd>
<dt>x</dt>
<dd>x ordinate of the end of the curve </dd>
<dd> </dd>
<dt>y</dt>
<dd>y ordinate of the end of the curve </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPathCurveToRelative">DrawPathCurveToRelative</a></h2>
<p>DrawPathCurveToRelative() draws a cubic Bezier curve from the current point to (x,y) using (x1,y1) as the control point at the beginning of the curve and (x2,y2) as the control point at the end of the curve using relative coordinates. At the end of the command, the new current point becomes the final (x,y) coordinate pair used in the polybezier.</p>
<p>The format of the DrawPathCurveToRelative method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPathCurveToRelative(DrawingWand *wand,const double x1,
const double y1,const double x2,const double y2,const double x,
const double y)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>x1</dt>
<dd>x ordinate of control point for curve beginning </dd>
<dd> </dd>
<dt>y1</dt>
<dd>y ordinate of control point for curve beginning </dd>
<dd> </dd>
<dt>x2</dt>
<dd>x ordinate of control point for curve ending </dd>
<dd> </dd>
<dt>y2</dt>
<dd>y ordinate of control point for curve ending </dd>
<dd> </dd>
<dt>x</dt>
<dd>x ordinate of the end of the curve </dd>
<dd> </dd>
<dt>y</dt>
<dd>y ordinate of the end of the curve </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPathCurveToQuadraticBezierAbsolute">DrawPathCurveToQuadraticBezierAbsolute</a></h2>
<p>DrawPathCurveToQuadraticBezierAbsolute() draws a quadratic Bezier curve from the current point to (x,y) using (x1,y1) as the control point using absolute coordinates. At the end of the command, the new current point becomes the final (x,y) coordinate pair used in the polybezier.</p>
<p>The format of the DrawPathCurveToQuadraticBezierAbsolute method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPathCurveToQuadraticBezierAbsolute(DrawingWand *wand,
const double x1,const double y1,const double x,const double y)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>x1</dt>
<dd>x ordinate of the control point </dd>
<dd> </dd>
<dt>y1</dt>
<dd>y ordinate of the control point </dd>
<dd> </dd>
<dt>x</dt>
<dd>x ordinate of final point </dd>
<dd> </dd>
<dt>y</dt>
<dd>y ordinate of final point </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPathCurveToQuadraticBezierRelative">DrawPathCurveToQuadraticBezierRelative</a></h2>
<p>DrawPathCurveToQuadraticBezierRelative() draws a quadratic Bezier curve from the current point to (x,y) using (x1,y1) as the control point using relative coordinates. At the end of the command, the new current point becomes the final (x,y) coordinate pair used in the polybezier.</p>
<p>The format of the DrawPathCurveToQuadraticBezierRelative method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPathCurveToQuadraticBezierRelative(DrawingWand *wand,
const double x1,const double y1,const double x,const double y)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>x1</dt>
<dd>x ordinate of the control point </dd>
<dd> </dd>
<dt>y1</dt>
<dd>y ordinate of the control point </dd>
<dd> </dd>
<dt>x</dt>
<dd>x ordinate of final point </dd>
<dd> </dd>
<dt>y</dt>
<dd>y ordinate of final point </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPathCurveToQuadraticBezierSmoothAbsolute">DrawPathCurveToQuadraticBezierSmoothAbsolute</a></h2>
<p>DrawPathCurveToQuadraticBezierSmoothAbsolute() draws a quadratic Bezier curve (using absolute coordinates) from the current point to (x,y). The control point is assumed to be the reflection of the control point on the previous command relative to the current point. (If there is no previous command or if the previous command was not a DrawPathCurveToQuadraticBezierAbsolute, DrawPathCurveToQuadraticBezierRelative, DrawPathCurveToQuadraticBezierSmoothAbsolute or DrawPathCurveToQuadraticBezierSmoothRelative, assume the control point is coincident with the current point.). At the end of the command, the new current point becomes the final (x,y) coordinate pair used in the polybezier.</p>
<p>The format of the DrawPathCurveToQuadraticBezierSmoothAbsolute method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPathCurveToQuadraticBezierSmoothAbsolute(
DrawingWand *wand,const double x,const double y)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>x</dt>
<dd>x ordinate of final point </dd>
<dd> </dd>
<dt>y</dt>
<dd>y ordinate of final point </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPathCurveToQuadraticBezierSmoothRelative">DrawPathCurveToQuadraticBezierSmoothRelative</a></h2>
<p>DrawPathCurveToQuadraticBezierSmoothRelative() draws a quadratic Bezier curve (using relative coordinates) from the current point to (x,y). The control point is assumed to be the reflection of the control point on the previous command relative to the current point. (If there is no previous command or if the previous command was not a DrawPathCurveToQuadraticBezierAbsolute, DrawPathCurveToQuadraticBezierRelative, DrawPathCurveToQuadraticBezierSmoothAbsolute or DrawPathCurveToQuadraticBezierSmoothRelative, assume the control point is coincident with the current point.). At the end of the command, the new current point becomes the final (x,y) coordinate pair used in the polybezier.</p>
<p>The format of the DrawPathCurveToQuadraticBezierSmoothRelative method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPathCurveToQuadraticBezierSmoothRelative(DrawingWand *wand,
const double x,const double y)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>x</dt>
<dd>x ordinate of final point </dd>
<dd> </dd>
<dt>y</dt>
<dd>y ordinate of final point </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPathCurveToSmoothAbsolute">DrawPathCurveToSmoothAbsolute</a></h2>
<p>DrawPathCurveToSmoothAbsolute() draws a cubic Bezier curve from the current point to (x,y) using absolute coordinates. The first control point is assumed to be the reflection of the second control point on the previous command relative to the current point. (If there is no previous command or if the previous command was not an DrawPathCurveToAbsolute, DrawPathCurveToRelative, DrawPathCurveToSmoothAbsolute or DrawPathCurveToSmoothRelative, assume the first control point is coincident with the current point.) (x2,y2) is the second control point (i.e., the control point at the end of the curve). At the end of the command, the new current point becomes the final (x,y) coordinate pair used in the polybezier.</p>
<p>The format of the DrawPathCurveToSmoothAbsolute method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPathCurveToSmoothAbsolute(DrawingWand *wand,
const double x2,const double y2,const double x,const double y)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>x2</dt>
<dd>x ordinate of second control point </dd>
<dd> </dd>
<dt>y2</dt>
<dd>y ordinate of second control point </dd>
<dd> </dd>
<dt>x</dt>
<dd>x ordinate of termination point </dd>
<dd> </dd>
<dt>y</dt>
<dd>y ordinate of termination point </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPathCurveToSmoothRelative">DrawPathCurveToSmoothRelative</a></h2>
<p>DrawPathCurveToSmoothRelative() draws a cubic Bezier curve from the current point to (x,y) using relative coordinates. The first control point is assumed to be the reflection of the second control point on the previous command relative to the current point. (If there is no previous command or if the previous command was not an DrawPathCurveToAbsolute, DrawPathCurveToRelative, DrawPathCurveToSmoothAbsolute or DrawPathCurveToSmoothRelative, assume the first control point is coincident with the current point.) (x2,y2) is the second control point (i.e., the control point at the end of the curve). At the end of the command, the new current point becomes the final (x,y) coordinate pair used in the polybezier.</p>
<p>The format of the DrawPathCurveToSmoothRelative method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPathCurveToSmoothRelative(DrawingWand *wand,
const double x2,const double y2,const double x,const double y)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>x2</dt>
<dd>x ordinate of second control point </dd>
<dd> </dd>
<dt>y2</dt>
<dd>y ordinate of second control point </dd>
<dd> </dd>
<dt>x</dt>
<dd>x ordinate of termination point </dd>
<dd> </dd>
<dt>y</dt>
<dd>y ordinate of termination point </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPathEllipticArcAbsolute">DrawPathEllipticArcAbsolute</a></h2>
<p>DrawPathEllipticArcAbsolute() draws an elliptical arc from the current point to (x, y) using absolute coordinates. The size and orientation of the ellipse are defined by two radii (rx, ry) and an xAxisRotation, which indicates how the ellipse as a whole is rotated relative to the current coordinate system. The center (cx, cy) of the ellipse is calculated automagically to satisfy the constraints imposed by the other parameters. largeArcFlag and sweepFlag contribute to the automatic calculations and help determine how the arc is drawn. If largeArcFlag is true then draw the larger of the available arcs. If sweepFlag is true, then draw the arc matching a clock-wise rotation.</p>
<p>The format of the DrawPathEllipticArcAbsolute method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPathEllipticArcAbsolute(DrawingWand *wand,
const double rx,const double ry,const double x_axis_rotation,
const MagickBooleanType large_arc_flag,
const MagickBooleanType sweep_flag,const double x,const double y)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>rx</dt>
<dd>x radius </dd>
<dd> </dd>
<dt>ry</dt>
<dd>y radius </dd>
<dd> </dd>
<dt>x_axis_rotation</dt>
<dd>indicates how the ellipse as a whole is rotated relative to the current coordinate system </dd>
<dd> </dd>
<dt>large_arc_flag</dt>
<dd>If non-zero (true) then draw the larger of the available arcs </dd>
<dd> </dd>
<dt>sweep_flag</dt>
<dd>If non-zero (true) then draw the arc matching a clock-wise rotation </dd>
<dd> </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPathEllipticArcRelative">DrawPathEllipticArcRelative</a></h2>
<p>DrawPathEllipticArcRelative() draws an elliptical arc from the current point to (x, y) using relative coordinates. The size and orientation of the ellipse are defined by two radii (rx, ry) and an xAxisRotation, which indicates how the ellipse as a whole is rotated relative to the current coordinate system. The center (cx, cy) of the ellipse is calculated automagically to satisfy the constraints imposed by the other parameters. largeArcFlag and sweepFlag contribute to the automatic calculations and help determine how the arc is drawn. If largeArcFlag is true then draw the larger of the available arcs. If sweepFlag is true, then draw the arc matching a clock-wise rotation.</p>
<p>The format of the DrawPathEllipticArcRelative method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPathEllipticArcRelative(DrawingWand *wand,
const double rx,const double ry,const double x_axis_rotation,
const MagickBooleanType large_arc_flag,
const MagickBooleanType sweep_flag,const double x,const double y)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>rx</dt>
<dd>x radius </dd>
<dd> </dd>
<dt>ry</dt>
<dd>y radius </dd>
<dd> </dd>
<dt>x_axis_rotation</dt>
<dd>indicates how the ellipse as a whole is rotated relative to the current coordinate system </dd>
<dd> </dd>
<dt>large_arc_flag</dt>
<dd>If non-zero (true) then draw the larger of the available arcs </dd>
<dd> </dd>
<dt>sweep_flag</dt>
<dd>If non-zero (true) then draw the arc matching a clock-wise rotation </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPathFinish">DrawPathFinish</a></h2>
<p>DrawPathFinish() terminates the current path.</p>
<p>The format of the DrawPathFinish method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPathFinish(DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPathLineToAbsolute">DrawPathLineToAbsolute</a></h2>
<p>DrawPathLineToAbsolute() draws a line path from the current point to the given coordinate using absolute coordinates. The coordinate then becomes the new current point.</p>
<p>The format of the DrawPathLineToAbsolute method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPathLineToAbsolute(DrawingWand *wand,const double x,
const double y)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>x</dt>
<dd>target x ordinate </dd>
<dd> </dd>
<dt>y</dt>
<dd>target y ordinate </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPathLineToRelative">DrawPathLineToRelative</a></h2>
<p>DrawPathLineToRelative() draws a line path from the current point to the given coordinate using relative coordinates. The coordinate then becomes the new current point.</p>
<p>The format of the DrawPathLineToRelative method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPathLineToRelative(DrawingWand *wand,const double x,
const double y)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>x</dt>
<dd>target x ordinate </dd>
<dd> </dd>
<dt>y</dt>
<dd>target y ordinate </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPathLineToHorizontalAbsolute">DrawPathLineToHorizontalAbsolute</a></h2>
<p>DrawPathLineToHorizontalAbsolute() draws a horizontal line path from the current point to the target point using absolute coordinates. The target point then becomes the new current point.</p>
<p>The format of the DrawPathLineToHorizontalAbsolute method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPathLineToHorizontalAbsolute(DrawingWand *wand,const double x)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>x</dt>
<dd>target x ordinate </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPathLineToHorizontalRelative">DrawPathLineToHorizontalRelative</a></h2>
<p>DrawPathLineToHorizontalRelative() draws a horizontal line path from the current point to the target point using relative coordinates. The target point then becomes the new current point.</p>
<p>The format of the DrawPathLineToHorizontalRelative method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPathLineToHorizontalRelative(DrawingWand *wand,
const double x)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>x</dt>
<dd>target x ordinate </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPathLineToVerticalAbsolute">DrawPathLineToVerticalAbsolute</a></h2>
<p>DrawPathLineToVerticalAbsolute() draws a vertical line path from the current point to the target point using absolute coordinates. The target point then becomes the new current point.</p>
<p>The format of the DrawPathLineToVerticalAbsolute method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPathLineToVerticalAbsolute(DrawingWand *wand,
const double y)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>y</dt>
<dd>target y ordinate </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPathLineToVerticalRelative">DrawPathLineToVerticalRelative</a></h2>
<p>DrawPathLineToVerticalRelative() draws a vertical line path from the current point to the target point using relative coordinates. The target point then becomes the new current point.</p>
<p>The format of the DrawPathLineToVerticalRelative method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPathLineToVerticalRelative(DrawingWand *wand,
const double y)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>y</dt>
<dd>target y ordinate </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPathMoveToAbsolute">DrawPathMoveToAbsolute</a></h2>
<p>DrawPathMoveToAbsolute() starts a new sub-path at the given coordinate using absolute coordinates. The current point then becomes the specified coordinate.</p>
<p>The format of the DrawPathMoveToAbsolute method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPathMoveToAbsolute(DrawingWand *wand,const double x,
const double y)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>x</dt>
<dd>target x ordinate </dd>
<dd> </dd>
<dt>y</dt>
<dd>target y ordinate </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPathMoveToRelative">DrawPathMoveToRelative</a></h2>
<p>DrawPathMoveToRelative() starts a new sub-path at the given coordinate using relative coordinates. The current point then becomes the specified coordinate.</p>
<p>The format of the DrawPathMoveToRelative method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPathMoveToRelative(DrawingWand *wand,const double x,
const double y)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>x</dt>
<dd>target x ordinate </dd>
<dd> </dd>
<dt>y</dt>
<dd>target y ordinate </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPathStart">DrawPathStart</a></h2>
<p>DrawPathStart() declares the start of a path drawing list which is terminated by a matching DrawPathFinish() command. All other DrawPath commands must be enclosed between a DrawPathStart() and a DrawPathFinish() command. This is because path drawing commands are subordinate commands and they do not function by themselves.</p>
<p>The format of the DrawPathStart method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPathStart(DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPoint">DrawPoint</a></h2>
<p>DrawPoint() draws a point using the current fill color.</p>
<p>The format of the DrawPoint method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPoint(DrawingWand *wand,const double x,const double y)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>x</dt>
<dd>target x coordinate </dd>
<dd> </dd>
<dt>y</dt>
<dd>target y coordinate </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPolygon">DrawPolygon</a></h2>
<p>DrawPolygon() draws a polygon using the current stroke, stroke width, and fill color or texture, using the specified array of coordinates.</p>
<p>The format of the DrawPolygon method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPolygon(DrawingWand *wand,
const size_t number_coordinates,const PointInfo *coordinates)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>number_coordinates</dt>
<dd>number of coordinates </dd>
<dd> </dd>
<dt>coordinates</dt>
<dd>coordinate array </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPolyline">DrawPolyline</a></h2>
<p>DrawPolyline() draws a polyline using the current stroke, stroke width, and fill color or texture, using the specified array of coordinates.</p>
<p>The format of the DrawPolyline method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPolyline(DrawingWand *wand,
const size_t number_coordinates,const PointInfo *coordinates)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>number_coordinates</dt>
<dd>number of coordinates </dd>
<dd> </dd>
<dt>coordinates</dt>
<dd>coordinate array </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPopClipPath">DrawPopClipPath</a></h2>
<p>DrawPopClipPath() terminates a clip path definition.</p>
<p>The format of the DrawPopClipPath method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPopClipPath(DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPopDefs">DrawPopDefs</a></h2>
<p>DrawPopDefs() terminates a definition list.</p>
<p>The format of the DrawPopDefs method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPopDefs(DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPopPattern">DrawPopPattern</a></h2>
<p>DrawPopPattern() terminates a pattern definition.</p>
<p>The format of the DrawPopPattern method is:</p>
<pre class="bg-light text-dark mx-4"><samp>MagickBooleanType DrawPopPattern(DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPushClipPath">DrawPushClipPath</a></h2>
<p>DrawPushClipPath() starts a clip path definition which is comprized of any number of drawing commands and terminated by a DrawPopClipPath() command.</p>
<p>The format of the DrawPushClipPath method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPushClipPath(DrawingWand *wand,const char *clip_mask_id)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>clip_mask_id</dt>
<dd>string identifier to associate with the clip path for later use. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPushDefs">DrawPushDefs</a></h2>
<p>DrawPushDefs() indicates that commands up to a terminating DrawPopDefs() command create named elements (e.g. clip-paths, textures, etc.) which may safely be processed earlier for the sake of efficiency.</p>
<p>The format of the DrawPushDefs method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawPushDefs(DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawPushPattern">DrawPushPattern</a></h2>
<p>DrawPushPattern() indicates that subsequent commands up to a DrawPopPattern() command comprise the definition of a named pattern. The pattern space is assigned top left corner coordinates, a width and height, and becomes its own drawing space. Anything which can be drawn may be used in a pattern definition. Named patterns may be used as stroke or brush definitions.</p>
<p>The format of the DrawPushPattern method is:</p>
<pre class="bg-light text-dark mx-4"><samp>MagickBooleanType DrawPushPattern(DrawingWand *wand,
const char *pattern_id,const double x,const double y,
const double width,const double height)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>pattern_id</dt>
<dd>pattern identification for later reference </dd>
<dd> </dd>
<dt>x</dt>
<dd>x ordinate of top left corner </dd>
<dd> </dd>
<dt>y</dt>
<dd>y ordinate of top left corner </dd>
<dd> </dd>
<dt>width</dt>
<dd>width of pattern space </dd>
<dd> </dd>
<dt>height</dt>
<dd>height of pattern space </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawRectangle">DrawRectangle</a></h2>
<p>DrawRectangle() draws a rectangle given two coordinates and using the current stroke, stroke width, and fill settings.</p>
<p>The format of the DrawRectangle method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawRectangle(DrawingWand *wand,const double x1,
const double y1,const double x2,const double y2)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>x1</dt>
<dd>x ordinate of first coordinate </dd>
<dd> </dd>
<dt>y1</dt>
<dd>y ordinate of first coordinate </dd>
<dd> </dd>
<dt>x2</dt>
<dd>x ordinate of second coordinate </dd>
<dd> </dd>
<dt>y2</dt>
<dd>y ordinate of second coordinate </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawResetVectorGraphics">DrawResetVectorGraphics</a></h2>
<p>DrawResetVectorGraphics() resets the vector graphics associated with the specified wand.</p>
<p>The format of the DrawResetVectorGraphics method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawResetVectorGraphics(DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawRotate">DrawRotate</a></h2>
<p>DrawRotate() applies the specified rotation to the current coordinate space.</p>
<p>The format of the DrawRotate method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawRotate(DrawingWand *wand,const double degrees)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>degrees</dt>
<dd>degrees of rotation </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawRoundRectangle">DrawRoundRectangle</a></h2>
<p>DrawRoundRectangle() draws a rounded rectangle given two coordinates, x & y corner radiuses and using the current stroke, stroke width, and fill settings.</p>
<p>The format of the DrawRoundRectangle method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawRoundRectangle(DrawingWand *wand,double x1,double y1,
double x2,double y2,double rx,double ry)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>x1</dt>
<dd>x ordinate of first coordinate </dd>
<dd> </dd>
<dt>y1</dt>
<dd>y ordinate of first coordinate </dd>
<dd> </dd>
<dt>x2</dt>
<dd>x ordinate of second coordinate </dd>
<dd> </dd>
<dt>y2</dt>
<dd>y ordinate of second coordinate </dd>
<dd> </dd>
<dt>rx</dt>
<dd>radius of corner in horizontal direction </dd>
<dd> </dd>
<dt>ry</dt>
<dd>radius of corner in vertical direction </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawScale">DrawScale</a></h2>
<p>DrawScale() adjusts the scaling factor to apply in the horizontal and vertical directions to the current coordinate space.</p>
<p>The format of the DrawScale method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawScale(DrawingWand *wand,const double x,const double y)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>x</dt>
<dd>horizontal scale factor </dd>
<dd> </dd>
<dt>y</dt>
<dd>vertical scale factor </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetBorderColor">DrawSetBorderColor</a></h2>
<p>DrawSetBorderColor() sets the border color to be used for drawing bordered objects.</p>
<p>The format of the DrawSetBorderColor method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetBorderColor(DrawingWand *wand,const PixelWand *border_wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>border_wand</dt>
<dd>border wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetClipPath">DrawSetClipPath</a></h2>
<p>DrawSetClipPath() associates a named clipping path with the image. Only the areas drawn on by the clipping path will be modified as ssize_t as it remains in effect.</p>
<p>The format of the DrawSetClipPath method is:</p>
<pre class="bg-light text-dark mx-4"><samp>MagickBooleanType DrawSetClipPath(DrawingWand *wand,
const char *clip_mask)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>clip_mask</dt>
<dd>name of clipping path to associate with image </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetClipRule">DrawSetClipRule</a></h2>
<p>DrawSetClipRule() set the polygon fill rule to be used by the clipping path.</p>
<p>The format of the DrawSetClipRule method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetClipRule(DrawingWand *wand,const FillRule fill_rule)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>fill_rule</dt>
<dd>fill rule (EvenOddRule or NonZeroRule) </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetClipUnits">DrawSetClipUnits</a></h2>
<p>DrawSetClipUnits() sets the interpretation of clip path units.</p>
<p>The format of the DrawSetClipUnits method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetClipUnits(DrawingWand *wand,
const ClipPathUnits clip_units)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>clip_units</dt>
<dd>units to use (UserSpace, UserSpaceOnUse, or ObjectBoundingBox) </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetDensity">DrawSetDensity</a></h2>
<p>DrawSetDensity() sets the vertical and horizontal resolution.</p>
<p>The format of the DrawSetDensity method is:</p>
<pre class="bg-light text-dark mx-4"><samp>MagickBooleanType DrawSetDensity(DrawingWand *wand,
const char *density)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>density</dt>
<dd>the vertical and horizontal resolution. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetFillColor">DrawSetFillColor</a></h2>
<p>DrawSetFillColor() sets the fill color to be used for drawing filled objects.</p>
<p>The format of the DrawSetFillColor method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetFillColor(DrawingWand *wand,const PixelWand *fill_wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>fill_wand</dt>
<dd>fill wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetFillOpacity">DrawSetFillOpacity</a></h2>
<p>DrawSetFillOpacity() sets the alpha to use when drawing using the fill color or fill texture. Fully opaque is 1.0.</p>
<p>The format of the DrawSetFillOpacity method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetFillOpacity(DrawingWand *wand,const double fill_alpha)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>fill_opacity</dt>
<dd>fill opacity </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetFontResolution">DrawSetFontResolution</a></h2>
<p>DrawSetFontResolution() sets the image resolution.</p>
<p>The format of the DrawSetFontResolution method is:</p>
<pre class="bg-light text-dark mx-4"><samp>MagickBooleanType DrawSetFontResolution(DrawingWand *wand,
const double x_resolution,const double y_resolution)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the magick wand. </dd>
<dd> </dd>
<dt>x_resolution</dt>
<dd>the image x resolution. </dd>
<dd> </dd>
<dt>y_resolution</dt>
<dd>the image y resolution. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetOpacity">DrawSetOpacity</a></h2>
<p>DrawSetOpacity() sets the alpha to use when drawing using the fill or stroke color or texture. Fully opaque is 1.0.</p>
<p>The format of the DrawSetOpacity method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetOpacity(DrawingWand *wand,const double alpha)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>opacity</dt>
<dd>fill and stroke opacity. The value 1.0 is opaque. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetFillPatternURL">DrawSetFillPatternURL</a></h2>
<p>DrawSetFillPatternURL() sets the URL to use as a fill pattern for filling objects. Only local URLs ("#identifier") are supported at this time. These local URLs are normally created by defining a named fill pattern with DrawPushPattern/DrawPopPattern.</p>
<p>The format of the DrawSetFillPatternURL method is:</p>
<pre class="bg-light text-dark mx-4"><samp>MagickBooleanType DrawSetFillPatternURL(DrawingWand *wand,
const char *fill_url)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>fill_url</dt>
<dd>URL to use to obtain fill pattern. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetFillRule">DrawSetFillRule</a></h2>
<p>DrawSetFillRule() sets the fill rule to use while drawing polygons.</p>
<p>The format of the DrawSetFillRule method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetFillRule(DrawingWand *wand,const FillRule fill_rule)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>fill_rule</dt>
<dd>fill rule (EvenOddRule or NonZeroRule) </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetFont">DrawSetFont</a></h2>
<p>DrawSetFont() sets the fully-specified font to use when annotating with text.</p>
<p>The format of the DrawSetFont method is:</p>
<pre class="bg-light text-dark mx-4"><samp>MagickBooleanType DrawSetFont(DrawingWand *wand,const char *font_name)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>font_name</dt>
<dd>font name </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetFontFamily">DrawSetFontFamily</a></h2>
<p>DrawSetFontFamily() sets the font family to use when annotating with text.</p>
<p>The format of the DrawSetFontFamily method is:</p>
<pre class="bg-light text-dark mx-4"><samp>MagickBooleanType DrawSetFontFamily(DrawingWand *wand,
const char *font_family)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>font_family</dt>
<dd>font family </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetFontSize">DrawSetFontSize</a></h2>
<p>DrawSetFontSize() sets the font pointsize to use when annotating with text.</p>
<p>The format of the DrawSetFontSize method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetFontSize(DrawingWand *wand,const double pointsize)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>pointsize</dt>
<dd>text pointsize </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetFontStretch">DrawSetFontStretch</a></h2>
<p>DrawSetFontStretch() sets the font stretch to use when annotating with text. The AnyStretch enumeration acts as a wild-card "don't care" option.</p>
<p>The format of the DrawSetFontStretch method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetFontStretch(DrawingWand *wand,
const StretchType font_stretch)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>font_stretch</dt>
<dd>font stretch (NormalStretch, UltraCondensedStretch, CondensedStretch, SemiCondensedStretch, SemiExpandedStretch, ExpandedStretch, ExtraExpandedStretch, UltraExpandedStretch, AnyStretch) </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetFontStyle">DrawSetFontStyle</a></h2>
<p>DrawSetFontStyle() sets the font style to use when annotating with text. The AnyStyle enumeration acts as a wild-card "don't care" option.</p>
<p>The format of the DrawSetFontStyle method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetFontStyle(DrawingWand *wand,const StyleType style)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>style</dt>
<dd>font style (NormalStyle, ItalicStyle, ObliqueStyle, AnyStyle) </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetFontWeight">DrawSetFontWeight</a></h2>
<p>DrawSetFontWeight() sets the font weight to use when annotating with text.</p>
<p>The format of the DrawSetFontWeight method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetFontWeight(DrawingWand *wand,
const size_t font_weight)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>font_weight</dt>
<dd>font weight (valid range 100-900) </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetGravity">DrawSetGravity</a></h2>
<p>DrawSetGravity() sets the text placement gravity to use when annotating with text.</p>
<p>The format of the DrawSetGravity method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetGravity(DrawingWand *wand,const GravityType gravity)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>gravity</dt>
<dd>positioning gravity (NorthWestGravity, NorthGravity, NorthEastGravity, WestGravity, CenterGravity, EastGravity, SouthWestGravity, SouthGravity, SouthEastGravity) </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetStrokeColor">DrawSetStrokeColor</a></h2>
<p>DrawSetStrokeColor() sets the color used for stroking object outlines.</p>
<p>The format of the DrawSetStrokeColor method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetStrokeColor(DrawingWand *wand,
const PixelWand *stroke_wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>stroke_wand</dt>
<dd>stroke wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetStrokePatternURL">DrawSetStrokePatternURL</a></h2>
<p>DrawSetStrokePatternURL() sets the pattern used for stroking object outlines.</p>
<p>The format of the DrawSetStrokePatternURL method is:</p>
<pre class="bg-light text-dark mx-4"><samp>MagickBooleanType DrawSetStrokePatternURL(DrawingWand *wand,
const char *stroke_url)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>stroke_url</dt>
<dd>URL specifying pattern ID (e.g. "#pattern_id") </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetStrokeAntialias">DrawSetStrokeAntialias</a></h2>
<p>DrawSetStrokeAntialias() controls whether stroked outlines are antialiased. Stroked outlines are antialiased by default. When antialiasing is disabled stroked pixels are thresholded to determine if the stroke color or underlying canvas color should be used.</p>
<p>The format of the DrawSetStrokeAntialias method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetStrokeAntialias(DrawingWand *wand,
const MagickBooleanType stroke_antialias)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>stroke_antialias</dt>
<dd>set to false (zero) to disable antialiasing </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetStrokeDashArray">DrawSetStrokeDashArray</a></h2>
<p>DrawSetStrokeDashArray() specifies the pattern of dashes and gaps used to stroke paths. The stroke dash array represents an array of numbers that specify the lengths of alternating dashes and gaps in pixels. If an odd number of values is provided, then the list of values is repeated to yield an even number of values. To remove an existing dash array, pass a zero number_elements argument and null dasharray. A typical stroke dash array might contain the members 5 3 2.</p>
<p>The format of the DrawSetStrokeDashArray method is:</p>
<pre class="bg-light text-dark mx-4"><samp>MagickBooleanType DrawSetStrokeDashArray(DrawingWand *wand,
const size_t number_elements,const double *dasharray)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>number_elements</dt>
<dd>number of elements in dash array </dd>
<dd> </dd>
<dt>dasharray</dt>
<dd>dash array values </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetStrokeDashOffset">DrawSetStrokeDashOffset</a></h2>
<p>DrawSetStrokeDashOffset() specifies the offset into the dash pattern to start the dash.</p>
<p>The format of the DrawSetStrokeDashOffset method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetStrokeDashOffset(DrawingWand *wand,
const double dash_offset)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>dash_offset</dt>
<dd>dash offset </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetStrokeLineCap">DrawSetStrokeLineCap</a></h2>
<p>DrawSetStrokeLineCap() specifies the shape to be used at the end of open subpaths when they are stroked. Values of LineCap are UndefinedCap, ButtCap, RoundCap, and SquareCap.</p>
<p>The format of the DrawSetStrokeLineCap method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetStrokeLineCap(DrawingWand *wand,
const LineCap linecap)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>linecap</dt>
<dd>linecap style </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetStrokeLineJoin">DrawSetStrokeLineJoin</a></h2>
<p>DrawSetStrokeLineJoin() specifies the shape to be used at the corners of paths (or other vector shapes) when they are stroked. Values of LineJoin are UndefinedJoin, MiterJoin, RoundJoin, and BevelJoin.</p>
<p>The format of the DrawSetStrokeLineJoin method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetStrokeLineJoin(DrawingWand *wand,
const LineJoin linejoin)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>linejoin</dt>
<dd>line join style </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetStrokeMiterLimit">DrawSetStrokeMiterLimit</a></h2>
<p>DrawSetStrokeMiterLimit() specifies the miter limit. When two line segments meet at a sharp angle and miter joins have been specified for 'lineJoin', it is possible for the miter to extend far beyond the thickness of the line stroking the path. The miterLimit' imposes a limit on the ratio of the miter length to the 'lineWidth'.</p>
<p>The format of the DrawSetStrokeMiterLimit method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetStrokeMiterLimit(DrawingWand *wand,
const size_t miterlimit)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>miterlimit</dt>
<dd>miter limit </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetStrokeOpacity">DrawSetStrokeOpacity</a></h2>
<p>DrawSetStrokeOpacity() specifies the alpha of stroked object outlines.</p>
<p>The format of the DrawSetStrokeOpacity method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetStrokeOpacity(DrawingWand *wand,
const double stroke_alpha)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>opacity</dt>
<dd>stroke opacity. The value 1.0 is opaque. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetStrokeWidth">DrawSetStrokeWidth</a></h2>
<p>DrawSetStrokeWidth() sets the width of the stroke used to draw object outlines.</p>
<p>The format of the DrawSetStrokeWidth method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetStrokeWidth(DrawingWand *wand,
const double stroke_width)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>stroke_width</dt>
<dd>stroke width </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetTextAlignment">DrawSetTextAlignment</a></h2>
<p>DrawSetTextAlignment() specifies a text alignment to be applied when annotating with text.</p>
<p>The format of the DrawSetTextAlignment method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetTextAlignment(DrawingWand *wand,const AlignType alignment)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>alignment</dt>
<dd>text alignment. One of UndefinedAlign, LeftAlign, CenterAlign, or RightAlign. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetTextAntialias">DrawSetTextAntialias</a></h2>
<p>DrawSetTextAntialias() controls whether text is antialiased. Text is antialiased by default.</p>
<p>The format of the DrawSetTextAntialias method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetTextAntialias(DrawingWand *wand,
const MagickBooleanType text_antialias)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>text_antialias</dt>
<dd>antialias boolean. Set to false (0) to disable antialiasing. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetTextDecoration">DrawSetTextDecoration</a></h2>
<p>DrawSetTextDecoration() specifies a decoration to be applied when annotating with text.</p>
<p>The format of the DrawSetTextDecoration method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetTextDecoration(DrawingWand *wand,
const DecorationType decoration)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>decoration</dt>
<dd>text decoration. One of NoDecoration, UnderlineDecoration, OverlineDecoration, or LineThroughDecoration </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetTextDirection">DrawSetTextDirection</a></h2>
<p>DrawSetTextDirection() specifies the direction to be used when annotating with text.</p>
<p>The format of the DrawSetTextDirection method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetTextDirection(DrawingWand *wand,
const DirectionType direction)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>direction</dt>
<dd>text direction. One of RightToLeftDirection, LeftToRightDirection </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetTextEncoding">DrawSetTextEncoding</a></h2>
<p>DrawSetTextEncoding() specifies the code set to use for text annotations. The only character encoding which may be specified at this time is "UTF-8" for representing Unicode as a sequence of bytes. Specify an empty string to set text encoding to the system's default. Successful text annotation using Unicode may require fonts designed to support Unicode.</p>
<p>The format of the DrawSetTextEncoding method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetTextEncoding(DrawingWand *wand,const char *encoding)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>encoding</dt>
<dd>character string specifying text encoding </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetTextKerning">DrawSetTextKerning</a></h2>
<p>DrawSetTextKerning() sets the spacing between characters in text.</p>
<p>The format of the DrawSetTextKerning method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetTextKerning(DrawingWand *wand,const double kerning)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>kerning</dt>
<dd>text kerning </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetTextInterlineSpacing">DrawSetTextInterlineSpacing</a></h2>
<p>DrawSetTextInterlineSpacing() sets the spacing between line in text.</p>
<p>The format of the DrawSetInterlineSpacing method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetTextInterlineSpacing(DrawingWand *wand,
const double interline_spacing)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>interline_spacing</dt>
<dd>text line spacing </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetTextInterwordSpacing">DrawSetTextInterwordSpacing</a></h2>
<p>DrawSetTextInterwordSpacing() sets the spacing between words in text.</p>
<p>The format of the DrawSetInterwordSpacing method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetTextInterwordSpacing(DrawingWand *wand,
const double interword_spacing)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>interword_spacing</dt>
<dd>text word spacing </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetTextUnderColor">DrawSetTextUnderColor</a></h2>
<p>DrawSetTextUnderColor() specifies the color of a background rectangle to place under text annotations.</p>
<p>The format of the DrawSetTextUnderColor method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetTextUnderColor(DrawingWand *wand,
const PixelWand *under_wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>under_wand</dt>
<dd>text under wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetVectorGraphics">DrawSetVectorGraphics</a></h2>
<p>DrawSetVectorGraphics() sets the vector graphics associated with the specified wand. Use this method with DrawGetVectorGraphics() as a method to persist the vector graphics state.</p>
<p>The format of the DrawSetVectorGraphics method is:</p>
<pre class="bg-light text-dark mx-4"><samp>MagickBooleanType DrawSetVectorGraphics(DrawingWand *wand,
const char *xml)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>xml</dt>
<dd>the drawing wand XML. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSkewX">DrawSkewX</a></h2>
<p>DrawSkewX() skews the current coordinate system in the horizontal direction.</p>
<p>The format of the DrawSkewX method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSkewX(DrawingWand *wand,const double degrees)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>degrees</dt>
<dd>number of degrees to skew the coordinates </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSkewY">DrawSkewY</a></h2>
<p>DrawSkewY() skews the current coordinate system in the vertical direction.</p>
<p>The format of the DrawSkewY method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSkewY(DrawingWand *wand,const double degrees)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>degrees</dt>
<dd>number of degrees to skew the coordinates </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawTranslate">DrawTranslate</a></h2>
<p>DrawTranslate() applies a translation to the current coordinate system which moves the coordinate system origin to the specified coordinate.</p>
<p>The format of the DrawTranslate method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawTranslate(DrawingWand *wand,const double x,
const double y)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>x</dt>
<dd>new x ordinate for coordinate system origin </dd>
<dd> </dd>
<dt>y</dt>
<dd>new y ordinate for coordinate system origin </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="DrawSetViewbox">DrawSetViewbox</a></h2>
<p>DrawSetViewbox() sets the overall canvas size to be recorded with the drawing vector data. Usually this will be specified using the same size as the canvas image. When the vector data is saved to SVG or MVG formats, the viewbox is use to specify the size of the canvas image that a viewer will render the vector data on.</p>
<p>The format of the DrawSetViewbox method is:</p>
<pre class="bg-light text-dark mx-4"><samp>void DrawSetViewbox(DrawingWand *wand,const double x1,const double y1,
const double x2,const double y2)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
<dt>x1</dt>
<dd>left x ordinate </dd>
<dd> </dd>
<dt>y1</dt>
<dd>top y ordinate </dd>
<dd> </dd>
<dt>x2</dt>
<dd>right x ordinate </dd>
<dd> </dd>
<dt>y2</dt>
<dd>bottom y ordinate </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="IsDrawingWand">IsDrawingWand</a></h2>
<p>IsDrawingWand() returns MagickTrue if the wand is verified as a drawing wand.</p>
<p>The format of the IsDrawingWand method is:</p>
<pre class="bg-light text-dark mx-4"><samp>MagickBooleanType IsDrawingWand(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="NewDrawingWand">NewDrawingWand</a></h2>
<p>NewDrawingWand() returns a drawing wand required for all other methods in the API.</p>
<p>The format of the NewDrawingWand method is:</p>
<pre class="bg-light text-dark mx-4"><samp>DrawingWand *NewDrawingWand(void)
</samp></pre>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="PeekDrawingWand">PeekDrawingWand</a></h2>
<p>PeekDrawingWand() returns the current drawing wand.</p>
<p>The format of the PeekDrawingWand method is:</p>
<pre class="bg-light text-dark mx-4"><samp>DrawInfo *PeekDrawingWand(const DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="PopDrawingWand">PopDrawingWand</a></h2>
<p>PopDrawingWand() destroys the current drawing wand and returns to the previously pushed drawing wand. Multiple drawing wands may exist. It is an error to attempt to pop more drawing wands than have been pushed, and it is proper form to pop all drawing wands which have been pushed.</p>
<p>The format of the PopDrawingWand method is:</p>
<pre class="bg-light text-dark mx-4"><samp>MagickBooleanType PopDrawingWand(DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
<h2><a href="../../api/MagickWand/drawing-wand_8c.html" id="PushDrawingWand">PushDrawingWand</a></h2>
<p>PushDrawingWand() clones the current drawing wand to create a new drawing wand. The original drawing wand(s) may be returned to by invoking PopDrawingWand(). The drawing wands are stored on a drawing wand stack. For every Pop there must have already been an equivalent Push.</p>
<p>The format of the PushDrawingWand method is:</p>
<pre class="bg-light text-dark mx-4"><samp>MagickBooleanType PushDrawingWand(DrawingWand *wand)
</samp></pre>
<p>A description of each parameter follows:</p>
<dd>
</dd>
<dd> </dd>
<dl class="dl-horizontal">
<dt>wand</dt>
<dd>the drawing wand. </dd>
<dd> </dd>
</dl>
</div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
<a href="../www/security-policy.html">Security</a> •
<a href="../www/news.html">News</a>
<a href="#"><img class="d-inline" id="wand" alt="And Now a Touch of Magick" width="16" height="16" src="../../images/wand.ico"/></a>
<a href="../www/links.html">Related</a> •
<a href="../www/sitemap.html">Sitemap</a>
<br/>
<a href="../www/support.html">Sponsor</a> •
<a href="../www/cite.html">Cite</a> •
<a href="http://pgp.mit.edu/pks/lookup?op=get&search=0x89AB63D48277377A">Public Key</a> •
<a href="../www/contact.html">Contact Us</a>
<br/>
<a href="https://github.com/imagemagick/imagemagick" target="_blank" rel="noopener" aria-label="GitHub"><svg xmlns="http://www.w3.org/2000/svg" class="navbar-nav-svg" viewBox="0 0 512 499.36" width="2%" height="2%" role="img" focusable="false"><title>GitHub</title><path fill="currentColor" fill-rule="evenodd" d="M256 0C114.64 0 0 114.61 0 256c0 113.09 73.34 209 175.08 242.9 12.8 2.35 17.47-5.56 17.47-12.34 0-6.08-.22-22.18-.35-43.54-71.2 15.49-86.2-34.34-86.2-34.34-11.64-29.57-28.42-37.45-28.42-37.45-23.27-15.84 1.73-15.55 1.73-15.55 25.69 1.81 39.21 26.38 39.21 26.38 22.84 39.12 59.92 27.82 74.5 21.27 2.33-16.54 8.94-27.82 16.25-34.22-56.84-6.43-116.6-28.43-116.6-126.49 0-27.95 10-50.8 26.35-68.69-2.63-6.48-11.42-32.5 2.51-67.75 0 0 21.49-6.88 70.4 26.24a242.65 242.65 0 0 1 128.18 0c48.87-33.13 70.33-26.24 70.33-26.24 14 35.25 5.18 61.27 2.55 67.75 16.41 17.9 26.31 40.75 26.31 68.69 0 98.35-59.85 120-116.88 126.32 9.19 7.9 17.38 23.53 17.38 47.41 0 34.22-.31 61.83-.31 70.23 0 6.85 4.61 14.81 17.6 12.31C438.72 464.97 512 369.08 512 256.02 512 114.62 397.37 0 256 0z"/></svg></a> •
<a href="https://twitter.com/imagemagick" target="_blank" rel="noopener" aria-label="Twitter"><svg xmlns="http://www.w3.org/2000/svg" class="navbar-nav-svg" viewBox="0 0 300 300" width="2%" height="2%" role="img" focusable="false"><title>Twitter</title><path d="M178.57 127.15 290.27 0h-26.46l-97.03 110.38L89.34 0H0l117.13 166.93L0 300.25h26.46l102.4-116.59 81.8 116.59h89.34M36.01 19.54H76.66l187.13 262.13h-40.66"/></svg></a>
<br/>
<small>Copyright © 1999 ImageMagick Studio LLC</small>
</div>
</footer>
</div>
<!-- Javascript assets -->
<script src="../assets/magick.js" ></script>
</body>
</html>
|