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
|
/**************************************************************************//**
* Info class method definitions for RMagick.
*
* Copyright © 2002 - 2009 by Timothy P. Hunter
*
* Changes since Nov. 2009 copyright © by Benjamin Thomas and Omer Bar-or
*
* @file rminfo.c
* @version $Id: rminfo.c,v 1.79 2009/12/20 02:33:33 baror Exp $
* @author Tim Hunter
******************************************************************************/
#include "rmagick.h"
/**
* Return the value of the specified option.
*
* Ruby usage:
* - @verbatim Info#get_option(key) @endverbatim
*
* @param self this object
* @param key the option key
* @return the value of key
*/
static VALUE
get_option(VALUE self, const char *key)
{
Info *info;
const char *value;
Data_Get_Struct(self, Info, info);
value = GetImageOption(info, key);
if (value)
{
return rb_str_new2(value);
}
return Qnil;
}
/**
* Set the specified option to this value. If the value is nil just unset any
* current value.
*
* Ruby usage:
* - @verbatim Info#set_option(key,string) @endverbatim
*
* @param self this object
* @param key the option key
* @param string the value
* @return self
*/
static VALUE
set_option(VALUE self, const char *key, VALUE string)
{
Info *info;
char *value;
Data_Get_Struct(self, Info, info);
if (NIL_P(string))
{
(void) RemoveImageOption(info, key);
}
else
{
value = StringValuePtr(string);
(void) SetImageOption(info, key, value);
}
return self;
}
/**
* Set a color name as the value of the specified option
*
* No Ruby usage (internal function)
*
* Notes:
* - Call QueryColorDatabase to validate color name.
*
* @param self this object
* @param option the option
* @param color the color name
* @return self
*/
static VALUE set_color_option(VALUE self, const char *option, VALUE color)
{
Info *info;
char *name;
PixelPacket pp;
ExceptionInfo exception;
MagickBooleanType okay;
Data_Get_Struct(self, Info, info);
if (NIL_P(color))
{
(void) RemoveImageOption(info, option);
}
else
{
GetExceptionInfo(&exception);
name = StringValuePtr(color);
okay = QueryColorDatabase(name, &pp, &exception);
(void) DestroyExceptionInfo(&exception);
if (!okay)
{
rb_raise(rb_eArgError, "invalid color name `%s'", name);
}
(void) RemoveImageOption(info, option);
(void) SetImageOption(info, option, name);
}
return self;
}
/**
* Get an Image::Info option floating-point value.
*
* No Ruby usage (internal function)
*
* Notes:
* - Convert the string value to a float
*
* @param self this object
* @param option the option name
* @return the Image::Info option
*/
static VALUE get_dbl_option(VALUE self, const char *option)
{
Info *info;
const char *value;
double d;
long n;
Data_Get_Struct(self, Info, info);
value = GetImageOption(info, option);
if (!value)
{
return Qnil;
}
d = atof(value);
n = (long) floor(d);
return d == (double)n ? LONG2NUM(n) : rb_float_new(d);
}
/**
* Set an Image::Info option to a floating-point value.
*
* No Ruby usage (internal function)
*
* Notes:
* - SetImageOption expects the value to be a string.
*
* @param self this object
* @param option the option name
* @param value the value
* @return self
*/
static VALUE set_dbl_option(VALUE self, const char *option, VALUE value)
{
Info *info;
char buff[50];
double d;
long n;
int len;
Data_Get_Struct(self, Info, info);
if (NIL_P(value))
{
(void) RemoveImageOption(info, option);
}
else
{
d = NUM2DBL(value);
n = floor(d);
if (d == n)
{
len = sprintf(buff, "%-10ld", n);
}
else
{
len = sprintf(buff, "%-10.2f", d);
}
memset(buff+len, '\0', sizeof(buff)-len);
(void) RemoveImageOption(info, option);
(void) SetImageOption(info, option, buff);
}
return self;
}
#if 0
/**
* Convert a PixelPacket to a hex-format color name.
*
* No Ruby usage (internal function)
*
* @param pp the pixel packet
* @param name pointer to the name
* @return the name
*/
static char *pixel_packet_to_hexname(PixelPacket *pp, char *name)
{
MagickPixelPacket mpp;
GetMagickPixelPacket(NULL, &mpp);
rm_set_magick_pixel_packet(pp, &mpp);
(void) GetColorTuple(&mpp, MagickTrue, name);
return name;
}
#endif
DEF_ATTR_ACCESSOR(Info, antialias, bool)
/** Maximum length of a format (@see Info_aref) */
#define MAX_FORMAT_LEN 60
/**
* Get the value of an option set by Info[]=
*
* Ruby usage:
* - @verbatim Info[format, key] @endverbatim
* - @verbatim Info[key] @endverbatim
*
* Notes:
* - The 2 argument form is the original form. Added support for a single
* argument after ImageMagick started using Set/GetImageOption for options
* that aren't represented by fields in the ImageInfo structure.
*
* @param argc number of input arguments
* @param argv array of input arguments
* @param self this object
* @return the option value
* @see Info_aset
*/
VALUE
Info_aref(int argc, VALUE *argv, VALUE self)
{
Info *info;
char *format_p, *key_p;
long format_l, key_l;
const char *value;
char fkey[MaxTextExtent];
switch (argc)
{
case 2:
format_p = rm_str2cstr(argv[0], &format_l);
key_p = rm_str2cstr(argv[1], &key_l);
if (format_l > MAX_FORMAT_LEN || format_l + key_l > MaxTextExtent-1)
{
rb_raise(rb_eArgError, "can't reference %.60s:%.1024s - too long", format_p, key_p);
}
sprintf(fkey, "%.60s:%.*s", format_p, (int)(MaxTextExtent-61), key_p);
break;
case 1:
strncpy(fkey, StringValuePtr(argv[0]), sizeof(fkey)-1);
fkey[sizeof(fkey)-1] = '\0';
break;
default:
rb_raise(rb_eArgError, "wrong number of arguments (%d for 1 or 2)", argc);
break;
}
Data_Get_Struct(self, Info, info);
value = GetImageOption(info, fkey);
if (!value)
{
return Qnil;
}
return rb_str_new2(value);
}
/**
* Call SetImageOption
*
* Ruby usage:
* - @verbatim Info[format, key]= @endverbatim
* - @verbatim Info[key]= @endverbatim
*
* Notes:
* - Essentially the same function as Info_define but paired with Info_aref
* - If the value is nil it is equivalent to Info_undefine.
* - The 2 argument form is the original form. Added support for a single
* argument after ImageMagick started using Set/GetImageOption for options
* that aren't represented by fields in the ImageInfo structure.
*
* @param argc number of input arguments
* @param argv array of input arguments
* @param self this object
* @return self
* @see Info_aref
* @see Info_define
* @see Info_undefine
*/
VALUE
Info_aset(int argc, VALUE *argv, VALUE self)
{
Info *info;
volatile VALUE value;
char *format_p, *key_p, *value_p = NULL;
long format_l, key_l;
char ckey[MaxTextExtent];
unsigned int okay;
Data_Get_Struct(self, Info, info);
switch (argc)
{
case 3:
format_p = rm_str2cstr(argv[0], &format_l);
key_p = rm_str2cstr(argv[1], &key_l);
if (format_l > MAX_FORMAT_LEN || format_l+key_l > MaxTextExtent-1)
{
rb_raise(rb_eArgError, "%.60s:%.1024s not defined - too long", format_p, key_p);
}
(void) sprintf(ckey, "%.60s:%.*s", format_p, (int)(sizeof(ckey)-MAX_FORMAT_LEN), key_p);
value = argv[2];
break;
case 2:
strncpy(ckey, StringValuePtr(argv[0]), sizeof(ckey)-1);
ckey[sizeof(ckey)-1] = '\0';
value = argv[1];
break;
default:
rb_raise(rb_eArgError, "wrong number of arguments (%d for 2 or 3)", argc);
break;
}
if (NIL_P(value))
{
(void) RemoveImageOption(info, ckey);
}
else
{
/* Allow any argument that supports to_s */
value = rm_to_s(value);
value_p = StringValuePtr(value);
(void) RemoveImageOption(info, ckey);
okay = SetImageOption(info, ckey, value_p);
if (!okay)
{
rb_warn("`%s' not defined - SetImageOption failed.", ckey);
return Qnil;
}
}
return self;
}
/**
* Get the attenuate attribute.
*
* Ruby usage:
* - @verbatim Info#attenuate @endverbatim
*
* @param self this object
* @return the attenuate
*/
VALUE
Info_attenuate(VALUE self)
{
return get_dbl_option(self, "attenuate");
}
/**
* Set the attenuate attribute.
*
* Ruby usage:
* - @verbatim Info#attenuate= @endverbatim
*
* @param self this object
* @param value the attenuate
* @return self
*/
VALUE
Info_attenuate_eq(VALUE self, VALUE value)
{
return set_dbl_option(self, "attenuate", value);
}
/**
* Get the authenticate attribute.
*
* Ruby usage:
* - @verbatim Info#authenticate @endverbatim
*
* @param self this object
* @return the authenticate
*/
VALUE
Info_authenticate(VALUE self)
{
Info *info;
Data_Get_Struct(self, Info, info);
if (info->authenticate)
{
return rb_str_new2(info->authenticate);
}
else
{
return Qnil;
}
}
/**
* Set the authenticate attribute.
*
* Ruby usage:
* - @verbatim Info#authenticate= @endverbatim
*
* @param self this object
* @param passwd the authenticating password
* @return self
*/
VALUE
Info_authenticate_eq(VALUE self, VALUE passwd)
{
Info *info;
char *passwd_p = NULL;
long passwd_l = 0;
Data_Get_Struct(self, Info, info);
if (!NIL_P(passwd))
{
passwd_p = rm_str2cstr(passwd, &passwd_l);
}
if (info->authenticate)
{
magick_free(info->authenticate);
info->authenticate = NULL;
}
if (passwd_l > 0)
{
magick_clone_string(&info->authenticate, passwd_p);
}
return self;
}
/**
* Return the name of the background color as a String
*
* Ruby usage:
* - @verbatim Info#background_color @endverbatim
*
* @param self this object
* @return the name of the background color
* @see Image_background_color
*/
VALUE
Info_background_color(VALUE self)
{
Info *info;
Data_Get_Struct(self, Info, info);
return rm_pixelpacket_to_color_name_info(info, &info->background_color);
}
/**
* Set the background color.
*
* Ruby usage:
* - @verbatim Info#background_color= @endverbatim
*
* Notes:
* - Color should be a string
*
* @param self this object
* @param bc_arg the background color
* @return self
* @throw ArgumentError
*/
VALUE
Info_background_color_eq(VALUE self, VALUE bc_arg)
{
Info *info;
//char colorname[MaxTextExtent];
Data_Get_Struct(self, Info, info);
Color_to_PixelPacket(&info->background_color, bc_arg);
//SetImageOption(info, "background", pixel_packet_to_hexname(&info->background_color, colorname));
return self;
}
/**
* Return the name of the border color as a String.
*
* Ruby usage:
* - @verbatim Info#border_color @endverbatim
*
* @param self this object
* @return the border color
* @see Image_border_color
*/
VALUE
Info_border_color(VALUE self)
{
Info *info;
Data_Get_Struct(self, Info, info);
return rm_pixelpacket_to_color_name_info(info, &info->border_color);
}
/**
* set the border color
*
* Ruby usage:
* - @verbatim Info#border_color= @endverbatim
*
* Notes:
* - Color should be a string
*
* @param self this object
* @param bc_arg the border color
* @return self
* @throw ArgumentError
*/
VALUE
Info_border_color_eq(VALUE self, VALUE bc_arg)
{
Info *info;
//char colorname[MaxTextExtent];
Data_Get_Struct(self, Info, info);
Color_to_PixelPacket(&info->border_color, bc_arg);
//SetImageOption(info, "bordercolor", pixel_packet_to_hexname(&info->border_color, colorname));
return self;
}
/**
* Emulate the -caption option.
*
* Ruby usage:
* - @verbatim Info#caption @endverbatim
*
* @param self this object
* @return the caption
*/
VALUE
Info_caption(VALUE self)
{
return get_option(self, "caption");
}
/**
* Emulate the -caption option.
*
* Ruby usage:
* - @verbatim Info#caption= @endverbatim
*
* @param self this object
* @param caption the caption
* @return self
*/
VALUE
Info_caption_eq(VALUE self, VALUE caption)
{
return set_option(self, "caption", caption);
}
/**
* Set the channels
*
* Ruby usage:
* - @verbatim Info#channel @endverbatim
* - @verbatim Info#channel(channel) @endverbatim
* - @verbatim Info#channel(channel, ...) @endverbatim
*
* Notes:
* - Default channel is AllChannels
* - Thanks to Douglas Sellers.
*
* @param argc number of input arguments
* @param argv array of input arguments
* @param self this object
* @return self
*/
VALUE
Info_channel(int argc, VALUE *argv, VALUE self)
{
Info *info;
ChannelType channels;
channels = extract_channels(&argc, argv);
// Ensure all arguments consumed.
if (argc > 0)
{
raise_ChannelType_error(argv[argc-1]);
}
Data_Get_Struct(self, Info, info);
info->channel = channels;
return self;
}
/**
* Get the colorspace type.
*
* Ruby usage:
* - @verbatim Info#colorspace @endverbatim
*
* @param self this object
* @return the colorspace type
*/
VALUE
Info_colorspace(VALUE self)
{
Info *info;
Data_Get_Struct(self, Info, info);
return ColorspaceType_new(info->colorspace);
}
/**
* Set the colorspace type
*
* Ruby usage:
* - @verbatim Info#colorspace= @endverbatim
*
* @param self this object
* @param colorspace the colorspace type
* @return self
* @throw ArgumentError
*/
VALUE
Info_colorspace_eq(VALUE self, VALUE colorspace)
{
Info *info;
Data_Get_Struct(self, Info, info);
VALUE_TO_ENUM(colorspace, info->colorspace, ColorspaceType);
return self;
}
OPTION_ATTR_ACCESSOR(comment, Comment)
/**
* Get the compression type.
*
* Ruby usage:
* - @verbatim Info#compression @endverbatim
*
* @param self this object
* @return the compression type
*/
VALUE
Info_compression(VALUE self)
{
Info *info;
Data_Get_Struct(self, Info, info);
return CompressionType_new(info->compression);
}
/**
* Set the compression type
*
* Ruby usage:
* - @verbatim Info#compression= @endverbatim
*
* @param self this object
* @param type the compression type
* @return self
* @throw ArgumentError
*/
VALUE
Info_compression_eq(VALUE self, VALUE type)
{
Info *info;
Data_Get_Struct(self, Info, info);
VALUE_TO_ENUM(type, info->compression, CompressionType);
return self;
}
/**
* Call SetImageOption
*
* Ruby usage:
* - @verbatim Info#define(format, key) @endverbatim
* - @verbatim Info#define(format, key, value) @endverbatim
*
* Notes:
* - Default value is the empty string
* - This is the only method in Info that is not an attribute accessor.
*
* @param argc number of input arguments
* @param argv array of input arguments
* @param self this object
* @return self
*/
VALUE
Info_define(int argc, VALUE *argv, VALUE self)
{
Info *info;
char *format, *key;
const char *value = "";
long format_l, key_l;
char ckey[100];
unsigned int okay;
volatile VALUE fmt_arg;
Data_Get_Struct(self, Info, info);
switch (argc)
{
case 3:
/* Allow any argument that supports to_s */
fmt_arg = rb_String(argv[2]);
value = (const char *)StringValuePtr(fmt_arg);
case 2:
key = rm_str2cstr(argv[1], &key_l);
format = rm_str2cstr(argv[0], &format_l);
break;
default:
rb_raise(rb_eArgError, "wrong number of arguments (%d for 2 or 3)", argc);
}
if (2 + format_l + key_l > (long)sizeof(ckey))
{
rb_raise(rb_eArgError, "%.20s:%.20s not defined - format or key too long", format, key);
}
(void) sprintf(ckey, "%s:%s", format, key);
(void) RemoveImageOption(info, ckey);
okay = SetImageOption(info, ckey, value);
if (!okay)
{
rb_warn("%.20s=\"%.78s\" not defined - SetImageOption failed.", ckey, value);
return Qnil;
}
return self;
}
/**
* Get the delay attribute.
*
* Ruby usage:
* - @verbatim Info#delay @endverbatim
*
* Notes:
* - Convert from string to numeric
*
* @param self this object
* @return the delay
*/
VALUE
Info_delay(VALUE self)
{
Info *info;
const char *delay;
char *p;
long d;
Data_Get_Struct(self, Info, info);
delay = GetImageOption(info, "delay");
if (delay)
{
d = strtol(delay, &p, 10);
if (*p != '\0')
{
rb_raise(rb_eRangeError, "failed to convert %s to Numeric", delay);
}
return LONG2NUM(d);
}
return Qnil;
}
/**
* Will raise an exception if `arg' can't be converted to an int.
*
* No Ruby usage (internal function)
*
* @param arg the argument
* @return arg
*/
static VALUE
arg_is_integer(VALUE arg)
{
int d = NUM2INT(arg);
d = d; // satisfy icc
return arg;
}
/**
* Set the delay attribute.
*
* Ruby usage:
* - @verbatim Info#delay= @endverbatim
*
* Notes:
* - Convert from numeric value to string.
*
* @param self this object
* @param string the delay
* @return self
*/
VALUE
Info_delay_eq(VALUE self, VALUE string)
{
Info *info;
int delay;
int not_num;
char dstr[20];
Data_Get_Struct(self, Info, info);
if (NIL_P(string))
{
(void) RemoveImageOption(info, "delay");
}
else
{
not_num = 0;
(void) rb_protect(arg_is_integer, string, ¬_num);
if (not_num)
{
rb_raise(rb_eTypeError, "failed to convert %s into Integer", rb_class2name(CLASS_OF(string)));
}
delay = NUM2INT(string);
sprintf(dstr, "%d", delay);
(void) RemoveImageOption(info, "delay");
(void) SetImageOption(info, "delay", dstr);
}
return self;
}
/**
* Get the density attribute
*
* Ruby usage:
* - @verbatim Info#density @endverbatim
*
* @param self this object
* @return the density
*/
DEF_ATTR_READER(Info, density, str)
/**
* Set the text rendering density
*
* Ruby usage:
* - @verbatim Info#density= @endverbatim
*
* Notes:
* - density should be a string, e.g., "72x72"
*
* @param self this object
* @param density_arg the density
* @return self
* @throw ArgumentError
*/
VALUE
Info_density_eq(VALUE self, VALUE density_arg)
{
Info *info;
volatile VALUE density;
char *dens;
Data_Get_Struct(self, Info, info);
if (NIL_P(density_arg))
{
magick_free(info->density);
info->density = NULL;
return self;
}
density = rm_to_s(density_arg);
dens = StringValuePtr(density);
if (!IsGeometry(dens))
{
rb_raise(rb_eArgError, "invalid density geometry: %s", dens);
}
magick_clone_string(&info->density, dens);
return self;
}
/**
* Get the depth attribute
*
* Ruby usage:
* - @verbatim Info#depth @endverbatim
*
* @param self this object
* @return the depth
*/
DEF_ATTR_READER(Info, depth, int)
/**
* Set the depth (8, 16, 32).
*
* Ruby usage:
* - @verbatim Info#depth= @endverbatim
*
* @param self this object
* @param depth the depth
* @return self
* @throw ArgumentError
*/
VALUE
Info_depth_eq(VALUE self, VALUE depth)
{
Info *info;
unsigned long d;
Data_Get_Struct(self, Info, info);
d = NUM2ULONG(depth);
switch (d)
{
case 8: // always okay
#if QuantumDepth == 16 || QuantumDepth == 32 || QuantumDepth == 64
case 16:
#if QuantumDepth == 32 || QuantumDepth == 64
case 32:
#if QuantumDepth == 64
case 64:
#endif
#endif
#endif
break;
default:
rb_raise(rb_eArgError, "invalid depth (%lu)", d);
break;
}
info->depth = d;
return self;
}
/** A dispose option */
static struct
{
const char *string; /**< the argument given by the user */
const char *enum_name; /**< the enumerator name */
DisposeType enumerator; /**< the enumerator itself */
} Dispose_Option[] = {
{ "Background", "BackgroundDispose", BackgroundDispose},
{ "None", "NoneDispose", NoneDispose},
{ "Previous", "PreviousDispose", PreviousDispose},
{ "Undefined", "UndefinedDispose", UndefinedDispose},
{ "0", "UndefinedDispose", UndefinedDispose},
{ "1", "NoneDispose", NoneDispose},
{ "2", "BackgroundDispose", BackgroundDispose},
{ "3", "PreviousDispose", PreviousDispose},
};
/** Number of dispose options */
#define N_DISPOSE_OPTIONS (int)(sizeof(Dispose_Option)/sizeof(Dispose_Option[0]))
/**
* Retrieve a dispose option string and convert it to a DisposeType enumerator.
*
* No Ruby usage (internal function)
*
* @param name the dispose string
* @return the DisposeType enumerator
*/
DisposeType rm_dispose_to_enum(const char *name)
{
DisposeType dispose = UndefinedDispose;
int x;
for (x = 0; x < N_DISPOSE_OPTIONS; x++)
{
if (strcmp(Dispose_Option[x].string, name) == 0)
{
dispose = Dispose_Option[x].enumerator;
break;
}
}
return dispose;
}
/**
* Retrieve the dispose option string and convert it to a DisposeType
* enumerator.
*
* Ruby usage:
* - @verbatim Info#dispose @endverbatim
*
* @param self this object
* @return a DisposeType enumerator
*/
VALUE
Info_dispose(VALUE self)
{
Info *info;
int x;
ID dispose_id;
const char *dispose;
Data_Get_Struct(self, Info, info);
dispose_id = rb_intern("UndefinedDispose");
// Map the dispose option string to a DisposeType enumerator.
dispose=GetImageOption(info, "dispose");
if (dispose)
{
for (x = 0; x < N_DISPOSE_OPTIONS; x++)
{
if (strcmp(dispose, Dispose_Option[x].string) == 0)
{
dispose_id = rb_intern(Dispose_Option[x].enum_name);
break;
}
}
}
return rb_const_get(Module_Magick, dispose_id);
}
/**
* Convert a DisposeType enumerator into the equivalent dispose option string.
*
* Ruby usage:
* - @verbatim Info#dispose= @endverbatim
*
* @param self this object
* @param disp the DisposeType enumerator
* @return self
*/
VALUE
Info_dispose_eq(VALUE self, VALUE disp)
{
Info *info;
DisposeType dispose;
const char *option;
int x;
Data_Get_Struct(self, Info, info);
if (NIL_P(disp))
{
(void) RemoveImageOption(info, "dispose");
return self;
}
VALUE_TO_ENUM(disp, dispose, DisposeType);
option = "Undefined";
for (x = 0; x < N_DISPOSE_OPTIONS; x++)
{
if (dispose == Dispose_Option[x].enumerator)
{
option = Dispose_Option[x].string;
break;
}
}
(void) SetImageOption(info, "dispose", option);
return self;
}
DEF_ATTR_ACCESSOR(Info, dither, bool)
/**
* Get the endian attribute.
*
* Ruby usage:
* - @verbatim Info#endian @endverbatim
*
* @param self this object
* @return the endian (Magick::MSBEndian or Magick::LSBEndian)
*/
VALUE
Info_endian(VALUE self)
{
Info *info;
Data_Get_Struct(self, Info, info);
return EndianType_new(info->endian);
}
/**
* Set the endian attribute.
*
* Ruby usage:
* - @verbatim Info#endian= @endverbatim
*
* @param self this object
* @param endian the endian (Magick::MSBEndian or Magick::LSBEndian)
* @return self
*/
VALUE
Info_endian_eq(VALUE self, VALUE endian)
{
Info *info;
EndianType type = UndefinedEndian;
if (endian != Qnil)
{
VALUE_TO_ENUM(endian, type, EndianType);
}
Data_Get_Struct(self, Info, info);
info->endian = type;
return self;
}
/**
* Get the extract string, e.g. "200x200+100+100"
*
* Ruby usage:
* - @verbatim Info#extract @endverbatim
*
* Notes:
* - Defined for ImageMagick 5.5.6 and later
*
* @param self this object
* @return the extract string
*/
DEF_ATTR_READER(Info, extract, str)
/**
* Set the extract string, e.g. "200x200+100+100"
*
* Ruby usage:
* - @verbatim Info#extract= @endverbatim
*
* Notes:
* - Defined for ImageMagick 5.5.6 and later
*
* @param self this object
* @param extract_arg the extract string
* @return self
* @throw ArgumentError
*/
VALUE
Info_extract_eq(VALUE self, VALUE extract_arg)
{
Info *info;
char *extr;
volatile VALUE extract;
Data_Get_Struct(self, Info, info);
if (NIL_P(extract_arg))
{
magick_free(info->extract);
info->extract = NULL;
return self;
}
extract = rm_to_s(extract_arg);
extr = StringValuePtr(extract);
if (!IsGeometry(extr))
{
rb_raise(rb_eArgError, "invalid extract geometry: %s", extr);
}
magick_clone_string(&info->extract, extr);
return self;
}
/**
* Get the "filename".
*
* Ruby usage:
* - @verbatim Info#filename @endverbatim
*
* Notes:
* - Only used for Image_capture
*
* @param self this object
* @return the filename ("" if filename not set)
* @see Image_capture
*/
VALUE
Info_filename(VALUE self)
{
Info *info;
Data_Get_Struct(self, Info, info);
return rb_str_new2(info->filename);
}
/**
* Set the "filename".
*
* Ruby usage:
* - @verbatim Info#filename= @endverbatim
*
* Notes:
* - Only used for Image_capture
*
* @param self this object
* @param filename the filename
* @return self
* @see Image_capture
*/
VALUE
Info_filename_eq(VALUE self, VALUE filename)
{
Info *info;
char *fname;
Data_Get_Struct(self, Info, info);
// Allow "nil" - remove current filename
if (NIL_P(filename) || StringValuePtr(filename) == NULL)
{
info->filename[0] = '\0';
}
else
{
// Otherwise copy in filename
fname = StringValuePtr(filename);
strncpy(info->filename, fname, MaxTextExtent);
}
return self;
}
/**
* Return the fill color as a String.
*
* Ruby usage:
* - @verbatim Info#fill @endverbatim
*
* @param self this object
* @return the fill color
*/
VALUE
Info_fill(VALUE self)
{
return get_option(self, "fill");
}
/**
* Set the fill color
*
* Ruby usage:
* - @verbatim Info#fill= @endverbatim
*
* @param self this object
* @param color the fill color (as a String)
* @return self
* @throw ArgumentError
*/
VALUE
Info_fill_eq(VALUE self, VALUE color)
{
return set_color_option(self, "fill", color);
}
/**
* Get the text font.
*
* Ruby usage:
* - @verbatim Info#font @endverbatim
*
* @param self this object
* @return the font
*/
DEF_ATTR_READER(Info, font, str)
/**
* Set the text font.
*
* Ruby usage:
* - @verbatim Info#font= @endverbatim
*
* @param self this object
* @param font_arg the font (as a String)
* @return self
*/
VALUE
Info_font_eq(VALUE self, VALUE font_arg)
{
Info *info;
char *font;
Data_Get_Struct(self, Info, info);
if (NIL_P(font_arg) || StringValuePtr(font_arg) == NULL)
{
magick_free(info->font);
info->font = NULL;
}
else
{
font = StringValuePtr(font_arg);
magick_clone_string(&info->font, font);
}
return self;
}
/**
* Return the image encoding format.
*
* Ruby usage:
* - @verbatim Info#format @endverbatim
*
* @param self this object
* @return the encoding format
*/
VALUE Info_format(VALUE self)
{
Info *info;
const MagickInfo *magick_info ;
ExceptionInfo exception;
Data_Get_Struct(self, Info, info);
if (*info->magick)
{
GetExceptionInfo(&exception);
magick_info = GetMagickInfo(info->magick, &exception);
(void) DestroyExceptionInfo(&exception);
return magick_info ? rb_str_new2(magick_info->name) : Qnil;
}
return Qnil;
}
/**
* Set the image encoding format.
*
* Ruby usage:
* - @verbatim Info#format= @endverbatim
*
* @param self this object
* @param magick the encoding format
* @return self
*/
VALUE
Info_format_eq(VALUE self, VALUE magick)
{
Info *info;
const MagickInfo *m;
char *mgk;
ExceptionInfo exception;
Data_Get_Struct(self, Info, info);
GetExceptionInfo(&exception);
mgk = StringValuePtr(magick);
m = GetMagickInfo(mgk, &exception);
CHECK_EXCEPTION()
(void) DestroyExceptionInfo(&exception);
if (!m)
{
rb_raise(rb_eArgError, "unknown format: %s", mgk);
}
strncpy(info->magick, m->name, MaxTextExtent-1);
return self;
}
/**
* Get the fuzz.
*
* Ruby usage:
* - @verbatim Info#fuzz @endverbatim
*
* @param self this object
* @return the fuzz
* @see Image_fuzz
*/
DEF_ATTR_READER(Info, fuzz, dbl)
/**
* Set the fuzz.
*
* Ruby usage:
* - @verbatim Info#fuzz=number @endverbatim
* - @verbatim Info#fuzz=NN% @endverbatim
*
* @param self this object
* @param fuzz the fuzz
* @return self
* @see Image_fuzz_eq
*/
VALUE Info_fuzz_eq(VALUE self, VALUE fuzz)
{
Info *info;
Data_Get_Struct(self, Info, info);
info->fuzz = rm_fuzz_to_dbl(fuzz);
return self;
}
/** A gravity option */
static struct
{
const char *string; /**< the argument given by the user */
const char *enum_name; /**< the enumerator name */
GravityType enumerator; /**< the enumerator itself */
} Gravity_Option[] = {
{ "Undefined", "UndefinedGravity", UndefinedGravity},
{ "None", "UndefinedGravity", UndefinedGravity},
{ "Center", "CenterGravity", CenterGravity},
{ "East", "EastGravity", EastGravity},
{ "Forget", "ForgetGravity", ForgetGravity},
{ "NorthEast", "NorthEastGravity", NorthEastGravity},
{ "North", "NorthGravity", NorthGravity},
{ "NorthWest", "NorthWestGravity", NorthWestGravity},
{ "SouthEast", "SouthEastGravity", SouthEastGravity},
{ "South", "SouthGravity", SouthGravity},
{ "SouthWest", "SouthWestGravity", SouthWestGravity},
{ "West", "WestGravity", WestGravity},
{ "Static", "StaticGravity", StaticGravity}
};
/** Number of gravity options */
#define N_GRAVITY_OPTIONS (int)(sizeof(Gravity_Option)/sizeof(Gravity_Option[0]))
/**
* Return the value of the gravity option as a GravityType enumerator.
*
* No Ruby usage (internal function)
*
* @param name the name of the gravity option
* @return the enumerator for name
*/
GravityType rm_gravity_to_enum(const char *name)
{
GravityType gravity = UndefinedGravity;
int x;
for (x = 0; x < N_GRAVITY_OPTIONS; x++)
{
if (strcmp(name, Gravity_Option[x].string) == 0)
{
gravity = Gravity_Option[x].enumerator;
break;
}
}
return gravity;
}
/**
* Return the value of the gravity option as a GravityType enumerator.
*
* Ruby usage:
* - @verbatim Info#gravity @endverbatim
*
* @param self this object
* @return the gravity enumerator
*/
VALUE Info_gravity(VALUE self)
{
Info *info;
const char *gravity;
int x;
ID gravity_id;
Data_Get_Struct(self, Info, info);
gravity_id = rb_intern("UndefinedGravity");
// Map the gravity option string to a GravityType enumerator.
gravity=GetImageOption(info, "gravity");
if (gravity)
{
for (x = 0; x < N_GRAVITY_OPTIONS; x++)
{
if (strcmp(gravity, Gravity_Option[x].string) == 0)
{
gravity_id = rb_intern(Gravity_Option[x].enum_name);
break;
}
}
}
return rb_const_get(Module_Magick, gravity_id);
}
/**
* Convert a GravityType enum to a gravity option name and store in the Info
* structure.
*
* Ruby usage:
* - @verbatim Info#gravity= @endverbatim
*
* @param self this object
* @param grav the gravity enumerator
* @return self
*/
VALUE
Info_gravity_eq(VALUE self, VALUE grav)
{
Info *info;
GravityType gravity;
const char *option;
int x;
Data_Get_Struct(self, Info, info);
if (NIL_P(grav))
{
(void) RemoveImageOption(info, "gravity");
return self;
}
VALUE_TO_ENUM(grav, gravity, GravityType);
option = "Undefined";
for (x = 0; x < N_GRAVITY_OPTIONS; x++)
{
if (gravity == Gravity_Option[x].enumerator)
{
option = Gravity_Option[x].string;
break;
}
}
(void) SetImageOption(info, "gravity", option);
return self;
}
DEF_ATTR_ACCESSOR(Info, group, long)
/**
* Get the classification type.
*
* Ruby usage:
* - @verbatim Info#image_type @endverbatim
*
* @param self this object
* @return the classification type
*/
VALUE
Info_image_type(VALUE self)
{
Info *info;
Data_Get_Struct(self, Info, info);
return ImageType_new(info->type);
}
/**
* Set the classification type.
*
* Ruby usage:
* - @verbatim Info#image_type= @endverbatim
*
* @param self this object
* @param type the classification type
* @return self
* @throw ArgumentError
*/
VALUE
Info_image_type_eq(VALUE self, VALUE type)
{
Info *info;
Data_Get_Struct(self, Info, info);
VALUE_TO_ENUM(type, info->type, ImageType);
return self;
}
/**
* Get the interlace type.
*
* Ruby usage:
* - @verbatim Info#interlace @endverbatim
*
* @param self this object
* @return the interlace type
*/
VALUE
Info_interlace(VALUE self)
{
Info *info;
Data_Get_Struct(self, Info, info);
return InterlaceType_new(info->interlace);
}
/**
* Set the interlace type
*
* Ruby usage:
* - @verbatim Info#interlace= @endverbatim
*
* @param self this object
* @param inter the interlace type
* @return self
* @throw ArgumentError
*/
VALUE
Info_interlace_eq(VALUE self, VALUE inter)
{
Info *info;
Data_Get_Struct(self, Info, info);
VALUE_TO_ENUM(inter, info->interlace, InterlaceType);
return self;
}
OPTION_ATTR_ACCESSOR(label, Label)
/**
* Return the name of the matte color as a String.
*
* Ruby usage:
* - @verbatim Info#matte_color @endverbatim
*
* @param self this object
* @return the name of the matte color
* @see Image_matte_color
*/
VALUE
Info_matte_color(VALUE self)
{
Info *info;
Data_Get_Struct(self, Info, info);
return rm_pixelpacket_to_color_name_info(info, &info->matte_color);
}
/**
* Set the matte color.
*
* Ruby usage:
* - @verbatim Info#matte_color= @endverbatim
*
* @param self this object
* @param matte_arg the name of the matte as a String
* @return self
* @throw ArgumentError
*/
VALUE
Info_matte_color_eq(VALUE self, VALUE matte_arg)
{
Info *info;
//char colorname[MaxTextExtent];
Data_Get_Struct(self, Info, info);
Color_to_PixelPacket(&info->matte_color, matte_arg);
//SetImageOption(info, "mattecolor", pixel_packet_to_hexname(&info->matte_color, colorname));
return self;
}
/**
* Establish a progress monitor.
*
* Ruby usage:
* - @verbatim Info#monitor= @endverbatim
*
* @param self this object
* @param monitor the monitor
* @return self
* @see Image_monitor_eq
*/
VALUE
Info_monitor_eq(VALUE self, VALUE monitor)
{
Info *info;
Data_Get_Struct(self, Info, info);
if (NIL_P(monitor))
{
info->progress_monitor = NULL;
}
else
{
(void) SetImageInfoProgressMonitor(info, rm_progress_monitor, (void *)monitor);
}
return self;
}
DEF_ATTR_ACCESSOR(Info, monochrome, bool)
DEF_ATTR_ACCESSOR(Info, number_scenes, ulong)
/**
* Return the orientation attribute as an OrientationType enum value.
*
* Ruby usage:
* - @verbatim Info#orientation @endverbatim
*
* @param self this object
* @return the orientation
*/
VALUE
Info_orientation(VALUE self)
{
Info *info;
Data_Get_Struct(self, Info, info);
return OrientationType_new(info->orientation);
}
/**
* Set the Orientation type.
*
* Ruby usage:
* - @verbatim Info#Orientation= @endverbatim
*
* @param self this object
* @param inter the orientation type as an OrientationType enum value
* @return self
* @throw ArgumentError
*/
VALUE
Info_orientation_eq(VALUE self, VALUE inter)
{
Info *info;
Data_Get_Struct(self, Info, info);
VALUE_TO_ENUM(inter, info->orientation, OrientationType);
return self;
}
/**
* Return origin geometry.
*
* Ruby usage:
* - @verbatim Info#origin @endverbatim
*
* @param self this object
* @return the origin geometry
*/
VALUE
Info_origin(VALUE self)
{
Info *info;
const char *origin;
Data_Get_Struct(self, Info, info);
origin = GetImageOption(info, "origin");
return origin ? rb_str_new2(origin) : Qnil;
}
/**
* Set origin geometry. Argument may be a Geometry object as well as a geometry
* string.
*
* Ruby usage:
* - @verbatim Info#origin=+-x+-y @endverbatim
*
* @param self this object
* @param origin_arg the origin geometry
* @return self
*/
VALUE
Info_origin_eq(VALUE self, VALUE origin_arg)
{
Info *info;
volatile VALUE origin_str;
char *origin;
Data_Get_Struct(self, Info, info);
if (NIL_P(origin_arg))
{
(void) RemoveImageOption(info, "origin");
return self;
}
origin_str = rm_to_s(origin_arg);
origin = GetPageGeometry(StringValuePtr(origin_str));
if (IsGeometry(origin) == MagickFalse)
{
rb_raise(rb_eArgError, "invalid origin geometry: %s", origin);
}
(void) SetImageOption(info, "origin", origin);
return self;
}
/**
* Get the Postscript page geometry.
*
* Ruby usage:
* - @verbatim Info_page @endverbatim
*
* @param self this object
* @return the page geometry
*/
VALUE
Info_page(VALUE self)
{
Info *info;
Data_Get_Struct(self, Info, info);
return info->page ? rb_str_new2(info->page) : Qnil;
}
/**
* Store the Postscript page geometry. Argument may be a Geometry object as well
* as a geometry string.
*
* Ruby usage:
* - @verbatim Info#page= @endverbatim
*
* @param self this object
* @param page_arg the geometry
* @return self
*/
VALUE
Info_page_eq(VALUE self, VALUE page_arg)
{
Info *info;
volatile VALUE geom_str;
char *geometry;
Data_Get_Struct(self, Info, info);
if (NIL_P(page_arg))
{
magick_free(info->page);
info->page = NULL;
return self;
}
geom_str = rm_to_s(page_arg);
geometry=GetPageGeometry(StringValuePtr(geom_str));
if (*geometry == '\0')
{
magick_free(info->page);
info->page = NULL;
return self;
}
magick_clone_string(&info->page, geometry);
return self;
}
DEF_ATTR_ACCESSOR(Info, pointsize, dbl)
DEF_ATTR_ACCESSOR(Info, quality, ulong)
/**
* Get sampling factors used by JPEG or MPEG-2 encoder and YUV decoder/encoder.
*
* Ruby usage:
* - @verbatim Info#sampling_factor @endverbatim
*
* @param self this object
* @return the sampling factors
*/
VALUE
Info_sampling_factor(VALUE self)
{
Info *info;
Data_Get_Struct(self, Info, info);
if (info->sampling_factor)
{
return rb_str_new2(info->sampling_factor);
}
else
{
return Qnil;
}
}
/**
* Set sampling factors used by JPEG or MPEG-2 encoder and YUV decoder/encoder.
*
* Ruby usage:
* - @verbatim Info#sampling_factor= @endverbatim
*
* @param self this object
* @param sampling_factor the sampling factors
* @return self
*/
VALUE
Info_sampling_factor_eq(VALUE self, VALUE sampling_factor)
{
Info *info;
char *sampling_factor_p = NULL;
long sampling_factor_len = 0;
Data_Get_Struct(self, Info, info);
if (!NIL_P(sampling_factor))
{
sampling_factor_p = rm_str2cstr(sampling_factor, &sampling_factor_len);
}
if (info->sampling_factor)
{
magick_free(info->sampling_factor);
info->sampling_factor = NULL;
}
if (sampling_factor_len > 0)
{
magick_clone_string(&info->sampling_factor, sampling_factor_p);
}
return self;
}
/**
* Get the scene number.
*
* Ruby usage:
* - @verbatim Info#scene @endverbatim
*
* @param self this object
* @return the scene number
*/
VALUE
Info_scene(VALUE self)
{
Info *info;
Data_Get_Struct(self, Info, info);
return ULONG2NUM(info->scene);
}
/**
* Set the scene number.
*
* Ruby usage:
* - @verbatim Info#scene= @endverbatim
*
* @param self this object
* @param scene the scene number
* @return self
*/
VALUE
Info_scene_eq(VALUE self, VALUE scene)
{
Info *info;
char buf[25];
Data_Get_Struct(self, Info, info);
info->scene = NUM2ULONG(scene);
#if defined(HAVE_SNPRINTF)
(void) snprintf(buf, sizeof(buf), "%-ld", info->scene);
#else
(void) sprintf(buf, "%-l", info->scene);
#endif
(void) SetImageOption(info, "scene", buf);
return self;
}
/**
* Get the server name.
*
* Ruby usage:
* - @verbatim Info#server_name @endverbatim
*
* @param self this object
* @return the server name
*/
DEF_ATTR_READER(Info, server_name, str)
/**
* Set the server name.
*
* Ruby usage:
* - @verbatim Info#server_name= @endverbatim
*
* @param self this object
* @param server_arg the server name as a String
* @return self
*/
VALUE
Info_server_name_eq(VALUE self, VALUE server_arg)
{
Info *info;
char *server;
Data_Get_Struct(self, Info, info);
if (NIL_P(server_arg) || StringValuePtr(server_arg) == NULL)
{
magick_free(info->server_name);
info->server_name = NULL;
}
else
{
server = StringValuePtr(server_arg);
magick_clone_string(&info->server_name, server);
}
return self;
}
/**
* Get ths size
*
* Ruby usage:
* - @verbatim Info#size @endverbatim
*
* @param self this object
* @return the size as a Geometry object
*/
DEF_ATTR_READER(Info, size, str)
/**
* Set the size (either as a Geometry object or a Geometry string, i.e.
* WxH{+-}x{+-}y)
*
* Ruby usage:
* - @verbatim Info#size= @endverbatim
*
* @param self this object
* @param size_arg the size
* @return self
* @throw ArgumentError
*/
VALUE
Info_size_eq(VALUE self, VALUE size_arg)
{
Info *info;
volatile VALUE size;
char *sz;
Data_Get_Struct(self, Info, info);
if (NIL_P(size_arg))
{
magick_free(info->size);
info->size = NULL;
return self;
}
size = rm_to_s(size_arg);
sz = StringValuePtr(size);
if (!IsGeometry(sz))
{
rb_raise(rb_eArgError, "invalid size geometry: %s", sz);
}
magick_clone_string(&info->size, sz);
return self;
}
/**
* Return the stroke color as a String.
*
* Ruby usage:
* - @verbatim Info#stroke @endverbatim
*
* @param self this object
* @return the stroke color
*/
VALUE
Info_stroke(VALUE self)
{
return get_option(self, "stroke");
}
/**
* Set the stroke color
*
* Ruby usage:
* - @verbatim Info#stroke= @endverbatim
*
* @param self this object
* @param color the stroke color as a String
* @return self
* @throw ArgumentError
*/
VALUE
Info_stroke_eq(VALUE self, VALUE color)
{
return set_color_option(self, "stroke", color);
}
/**
* Support for caption: format.
*
* Ruby usage:
* - @verbatim Info#stroke_width @endverbatim
*
* Notes:
* - Supported in ImageMagick >= 6.3.2-6
*
* @param self this object
* @return the stroke width
*/
VALUE
Info_stroke_width(VALUE self)
{
return get_dbl_option(self, "strokewidth");
}
/**
* Support for caption: format.
*
* Ruby usage:
* - @verbatim Info#stroke_width= @endverbatim
*
* Notes:
* - Supported in ImageMagick >= 6.3.2-6
*
* @param self this object
* @param stroke_width the stroke width
* @return self
*/
VALUE
Info_stroke_width_eq(VALUE self, VALUE stroke_width)
{
return set_dbl_option(self, "strokewidth", stroke_width);
}
/**
* Set name of texture to tile onto the image background.
*
* Ruby usage:
* - @verbatim Image::Info#texture= @endverbatim
*
* @param self this object
* @param texture the name of the texture image
* @return self
*/
VALUE
Info_texture_eq(VALUE self, VALUE texture)
{
Info *info;
Image *image;
char name[MaxTextExtent];
Data_Get_Struct(self, Info, info);
// Delete any existing texture file
if (info->texture)
{
rm_delete_temp_image(info->texture);
magick_free(info->texture);
info->texture = NULL;
}
// If argument is nil we're done
if (texture == Qnil)
{
return self;
}
// Create a temp copy of the texture and store its name in the texture field
image = rm_check_destroyed(texture);
rm_write_temp_image(image, name);
magick_clone_string(&info->texture, name);
return self;
}
/**
* info.tile_offset = [+/-]x[+/-]y.
*
* Ruby usage:
* - @verbatim Image::Info#tile_offset= @endverbatim
*
* @param self this object
* @param offset the offset
* @return self
*/
VALUE
Info_tile_offset_eq(VALUE self, VALUE offset)
{
Info *info;
volatile VALUE offset_str;
char *tile_offset;
offset_str = rm_to_s(offset);
tile_offset = StringValuePtr(offset_str);
if (!IsGeometry(tile_offset))
{
rb_raise(rb_eArgError, "invalid tile offset geometry: %s", tile_offset);
}
Data_Get_Struct(self, Info, info);
(void) DeleteImageOption(info, "tile-offset");
(void) SetImageOption(info, "tile-offset", tile_offset);
return self;
}
/**
* Return the name of the transparent color as a String.
*
* Ruby usage:
* - @verbatim Info#transparent_color @endverbatim
*
* @param self this object
* @return the name of the transparent color
* @see Image_transparent_color
*/
VALUE
Info_transparent_color(VALUE self)
{
Info *info;
Data_Get_Struct(self, Info, info);
return rm_pixelpacket_to_color_name_info(info, &info->transparent_color);
}
/**
* Set the transparent color.
*
* Ruby usage:
* - @verbatim Info#transparent_color= @endverbatim
*
* @param self this object
* @param tc_arg the transparent color as a String
* @return self
* @throw ArgumentError
*/
VALUE
Info_transparent_color_eq(VALUE self, VALUE tc_arg)
{
Info *info;
//char colorname[MaxTextExtent];
Data_Get_Struct(self, Info, info);
Color_to_PixelPacket(&info->transparent_color, tc_arg);
//SetImageOption(info, "transparent", pixel_packet_to_hexname(&info->transparent_color, colorname));
return self;
}
/**
* Return tile_offset attribute values.
*
* Ruby usage:
* - @verbatim Image::Info#tile_offset @endverbatim
*
* @param self this object
* @return the tile offset
*/
VALUE
Info_tile_offset(VALUE self)
{
Info *info;
const char *tile_offset;
Data_Get_Struct(self, Info, info);
tile_offset = GetImageOption(info, "tile-offset");
if (!tile_offset)
{
return Qnil;
}
return rb_str_new2(tile_offset);
}
/**
* Undefine image option.
*
* Ruby usage:
* - @verbatim Info#undefine(format,key) @endverbatim
*
* @param self this object
* @param format the format
* @param key the key
* @return self
*/
VALUE
Info_undefine(VALUE self, VALUE format, VALUE key)
{
Info *info;
char *format_p, *key_p;
long format_l, key_l;
char fkey[MaxTextExtent];
format_p = rm_str2cstr(format, &format_l);
key_p = rm_str2cstr(key, &key_l);
if (format_l > MAX_FORMAT_LEN || format_l + key_l > MaxTextExtent)
{
rb_raise(rb_eArgError, "can't undefine %.60s:%.1024s - too long", format_p, key_p);
}
sprintf(fkey, "%.60s:%.*s", format_p, (int)(MaxTextExtent-61), key_p);
Data_Get_Struct(self, Info, info);
/* Depending on the IM version, RemoveImageOption returns either */
/* char * or MagickBooleanType. Ignore the return value. */
(void) RemoveImageOption(info, fkey);
return self;
}
/**
* Return the undercolor color as a String.
*
* Ruby usage:
* - @verbatim Info#undercolor @endverbatim
*
* @param self this object
* @return the undercolor
*/
VALUE
Info_undercolor(VALUE self)
{
return get_option(self, "undercolor");
}
/**
* Set the undercolor color.
*
* Ruby usage:
* - @verbatim Info#undercolor= @endverbatim
*
* @param self this object
* @param color the undercolor color as a String
* @return self
* @throw ArgumentError
*/
VALUE
Info_undercolor_eq(VALUE self, VALUE color)
{
return set_color_option(self, "undercolor", color);
}
/**
* Get the resolution type.
*
* Ruby usage:
* - @verbatim Info#units @endverbatim
*
* @param self this object
* @return the resolution type
*/
VALUE
Info_units(VALUE self)
{
Info *info;
Data_Get_Struct(self, Info, info);
return ResolutionType_new(info->units);
}
/**
* Set the resolution type
*
* Ruby usage:
* - @verbatim Info#units= @endverbatim
*
* @param self this object
* @param units the resolution type
* @return self
* @throw ArgumentError
*/
VALUE
Info_units_eq(VALUE self, VALUE units)
{
Info *info;
Data_Get_Struct(self, Info, info);
VALUE_TO_ENUM(units, info->units, ResolutionType);
return self;
}
/**
* Get FlashPix viewing parameters.
*
* Ruby usage:
* - @verbatim Info#view @endverbatim
*
* @param self this object.
* @return the viewing parameters
*/
DEF_ATTR_READER(Info, view, str)
/**
* Set FlashPix viewing parameters.
*
* Ruby usage:
* - @verbatim Info#view= @endverbatim
*
* @param self this object
* @param view_arg the viewing parameters
* @return self
*/
VALUE
Info_view_eq(VALUE self, VALUE view_arg)
{
Info *info;
char *view;
Data_Get_Struct(self, Info, info);
if (NIL_P(view_arg) || StringValuePtr(view_arg) == NULL)
{
magick_free(info->view);
info->view = NULL;
}
else
{
view = StringValuePtr(view_arg);
magick_clone_string(&info->view, view);
}
return self;
}
/**
* If there is a texture image, delete it before destroying the ImageInfo
* structure.
*
* No Ruby usage (internal function)
*
* @param infoptr pointer to the Info object
*/
static void
destroy_Info(void *infoptr)
{
Info *info = (Info *)infoptr;
if (info->texture)
{
rm_delete_temp_image(info->texture);
magick_free(info->texture);
info->texture = NULL;
}
(void) DestroyImageInfo(info);
}
/**
* Create an ImageInfo object.
*
* No Ruby usage (internal function)
*
* @param class the Ruby class to use
* @return a new ImageInfo object
*/
VALUE
Info_alloc(VALUE class)
{
Info *info;
volatile VALUE info_obj;
info = CloneImageInfo(NULL);
if (!info)
{
rb_raise(rb_eNoMemError, "not enough memory to initialize Info object");
}
info_obj = Data_Wrap_Struct(class, NULL, destroy_Info, info);
return info_obj;
}
/**
* Provide a Info.new method for internal use.
*
* No Ruby usage (internal function)
*
* Notes:
* - Takes no parameters, but runs the parm block if present
*
* @return a new ImageInfo object
*/
VALUE
rm_info_new(void)
{
volatile VALUE info_obj;
info_obj = Info_alloc(Class_Info);
return Info_initialize(info_obj);
}
/**
* If an initializer block is present, run it.
*
* Ruby usage:
* - @verbatim Info#initialize @endverbatim
*
* @param self this object
* @return self
*/
VALUE
Info_initialize(VALUE self)
{
if (rb_block_given_p())
{
// Run the block in self's context
(void) rb_obj_instance_eval(0, NULL, self);
}
return self;
}
|