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
|
Imager release history. Older releases can be found in Changes.old
Imager 1.005 - 16 Apr 2016
============
It's now been ten years since I switched to the new Changes file in
release 0.55.
- revert the ivdformat probes, they don't work as is and trying to
fix them is too much work for now.
Imager 1.004_004 - 15 Apr 2016
================
- test that the ivdformat from Config is correct and look for a valid
one if it isn't.
For the strange Win32 failures.
- fix a copy and paste error in pod in samples/samp-form.cgi
Imager 1.004_003 - 23 Mar 2016
================
- add some extra error reporting to the I/O layers tests, this might
help catch a failure seen on Win32.
http://cpantesters.org/cpan/report/99781689-6bf5-1014-897a-75cb4eee1325
Imager 1.004_002 - 20 Mar 2016
================
- don't use the seek() method on opened() handles in
t/200-file/400-basic.t. In older versions of perl such handles are
only IO::Handle objects, not IO::File, and don't have a seek()
method.
Imager 1.004_001 - 16 Mar 2016 (Birthday release - but not my birthday)
================
- re-work the t/200-file/400-basic.t to correctly handle failures
It's custom ok() function didn't have a prototype and didn't use scalar().
This caused ok() to use the note instead of the value being tested when
the method called returned an empty list. For an example of the problem
caused see: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=812093
- remove some noise from when Imager tried to work with bugs in old
versions of giflib. I can't do much about the new bugs.
- the new autolevels filter (Imager 0.99) used an integer for the
sample scaling factor which caused the top output level to be too
low (depending on the scaling required.) It now uses a double.
https://rt.cpan.org/Ticket/Display.html?id=111871
- the new autolevels filter had off-by-one errors calculating the
minimum and maximum luminance from the histogram. This slightly
reduced the contrast of the output image.
https://rt.cpan.org/Ticket/Display.html?id=111871
- the new autolevels filter now uses a lookup table for 8-bit images
to avoid a floating point multiply for each sample.
https://rt.cpan.org/Ticket/Display.html?id=111871
- fixed several memory leaks detected by valgrind:
- addcolors() leaked the temporary array of colors supplied to the
internal API
- make_palette() leaked the temporary image array (not the images
themselves) passed to the internal API.
- combine()/i_combine() leaked its working row buffers
- getcolorusage()/i_get_anonymous_color_histo() leaked the sample
buffer if there were too many colors
- getcolorcount()/i_count_colors() leaked the sample buffer if
there were too many colors.
- the nearest_color filter (undocumented until I find a use for it)
leaked both temporaries passed to the API and internal buffers
- the internal process of upgrading a paletted image to a direct
color image would leak a context object reference count.
- a write failure when writing to a GIF file could leak memory.
- failing to write to a 1-bit/pixel ICO image could leak memory.
- Imager no longer deliberately leaks the context object from the
initial thread. This was done to ensure there was always a context
object available, but the code that needed that now handles the
lack correctly,
- fixed some uninitialized memory usage detected by valgrind:
- rotate()/i_rotate_exact()/i_rotate_exact_bg()/i_matrix_transform()/
i_matrix_transform_bg() didn't initialize a working color value
if there was zero pixel coverage.
- i_ft2_cp() didn't initialize the complete color when producing an
intermediate image. This caused uninitialized value usage when
logging the color.
Imager 1.004 - 8 Nov 2015
============
- Imager::Color::Table is now pre-loaded by the preload() method.
https://rt.cpan.org/Ticket/Display.html?id=104896
- fix an assertion triggered under perl 5.23.4.
Thanks to A. Sinan Unur for the report and the patch.
- Imager->new can now be used to read raw image files.
https://rt.cpan.org/Ticket/Display.html?id=106836
Thanks to Richard Kelsch for reporting this.
- deal with output changes from Pod::Spell
https://github.com/perl-pod/Pod-Spell/issues/21
Imager 1.003 - 12 May 2015
============
- update 1.002 release notes to include the center change for filled
circle drawing.
- flood_fill() would escape beyond a 4-connected space under some
circumstances.
Added many more flood_fill() tests.
https://rt.cpan.org/Ticket/Display.html?id=103786
Imager 1.002 - 3 Apr 2015
============
- drawing anti-aliased filled circles is now 10 to 50 times faster
depending on the size of the circle.
This also changed the center from being the center of the pixel to
being the top left of the pixel to match the filled arcs drawn by
arc().
https://rt.cpan.org/Ticket/Display.html?id=101682
- enhancements to polygon filling:
- added a mode parameter to control how overlapping regions behave
- added a polypolygon() method to fill more than one polygon at a
time
- polygon filling is now exposed through the API.
- added colormodel(), alphachannel() and colorchannels() methods.
These were added for two reasons:
- a future version of Imager may allow the number of channels in
an image to not directly represent the color model of an image.
eg. a greyscale TIFF image with multiple alpha channels.
- a future version of Imager may allow an image to be read without
translation, for example a TIFF file that contains measurements
from an instrument. Currently Imager transforms the samples into
the range 0.0 ... 1.0 which may means the user has to translates
the value back.
An untranslated image would be unusable as image data, so
colormodel() would return "unknown" in this case.
Similarly a CMYK image might be returned as an "unknown" color
model image, if the caller chooses to disable translation to
RGB.
Imager 1.001 - 2 Jan 2015
============
- both Imager and perl 5.21.3 define my_strerror(), prevent a conflict
Thanks to Slaven Rezic for the report and the patch.
https://rt.cpan.org/Public/Bug/Display.html?id=98234
- GIF: clean-up a test file if the test for the giflib 4.2.0 file
version bug fails.
- fix Imager::Matrix2d::rotate()'s centre point handling
https://rt.cpan.org/Public/Bug/Display.html?id=99959
- ICO: don't apply the icon mask to images with an alpha channel by
default
https://rt.cpan.org/Public/Bug/Display.html?id=99507
- make verbose probing output more verbose
- use Imager::Probe to probe for freetype 1.x
https://rt.cpan.org/Ticket/Display.html?id=100502
- The --enable and --disable parameters to the top-level Makefile.PL
work again.
- update the bundled/modified Devel::CheckLib to handle the gcc-4
symlink on Cygwin
Imager 1.000 - 28 Jul 2014
============
There's nothing special about Imager 1.000, it's just another release.
- fix the skip check for the iolayer qr// buffer test
- improve error reporting for the iolayer test failing on a small
number of Win32 CPAN testers
Imager 0.99_02 - 21 Jul 2014
==============
- Imager::Filter::Mandelbrot (and dynfilt/mandelbrot.c) - initialize
the blue channel in the generated palette, and allow each color
component to be in the range 100..255 instead of just 100..254.
Thanks to Ralf Neubauer.
https://rt.cpan.org/Ticket/Display.html?id=97086
- revert "improved the XS for i_io_read() and i_io_raw_read()"
This caused problems with older perls and didn't provide much of a
performance improvement.
- support Inline 0.57 and later.
Inline 0.57 changed the "with" interface.
https://rt.cpan.org/Ticket/Display.html?id=97108
- don't define our own MAXINT macro, it conflicts with windows header
files and in a few places it was the wrong value to use anyway.
https://rt.cpan.org/Ticket/Display.html?id=96425
Imager 0.99_01 - 29 Jun 2014
==============
- GIF: add support for giflib 5.1.0, which added error code pointer
parameters to EGifCloseFile() and DGifCloseFile().
https://rt.cpan.org/Ticket/Display.html?id=96756
- GIF: avoid a double-free when do_write() fails.
- fix SV type probing to work on perl before 5.12. Broken in 0.99.
https://rt.cpan.org/Ticket/Display.html?id=96761
- PNG: skip the benign error test before libpng 1.6.0, since the
error we're testing didn't exist before 1.6.0.
https://rt.cpan.org/Ticket/Display.html?id=94717 (continued)
Imager 0.99 - 25 Jun 2014
===========
- Imager::IO->new_buffer() (and hence Imager->read()'s data
parameter) now accepts a reference to a scalar as well as just a
plain scalar.
https://rt.cpan.org/Ticket/Display.html?id=92785
- Imager::IO->new_buffer() now always makes a copy of the passed in
buffer to avoid problems with temporary objects used for the return
value of SvPVbyte().
https://rt.cpan.org/Ticket/Display.html?id=92785
- improved the XS for i_io_read() and i_io_raw_read()
https://rt.cpan.org/Ticket/Display.html?id=92738
- load plugins from absolute paths on Android
Thanks to Brian Fraser.
https://rt.cpan.org/Ticket/Display.html?id=93272
- added the jpeg_optimize parameter for writing JPEG files. This can
significantly reduce file sizes, but uses more memory and time.
https://rt.cpan.org/Ticket/Display.html?id=94292
- the autolevels filter now works on the luminosity of the image
rather then working per channel. The old autolevels filter is
still available as "autolevels_skew".
https://rt.cpan.org/Ticket/Display.html?id=94413
- Imager::File::PNG now supports libpng 1.6.10.
1.6.10 changed CRC errors from benign errors to normal errors,
which broke the test which used CRC errors to check for benign
error support. Switched to using a 1-bit grey-scale image with a
palette to test for benign errors.
https://rt.cpan.org/Ticket/Display.html?id=94717
Imager 0.98 - 3 Jan 2014
===========
Incompatible changes:
- the return value of setpixel() has changed.
Previously the return values for undrawable pixels vs caller errors
changed depending on whether you used the multiple pixel calling
mechanism, or the single pixel mechanism.
Now:
- for an invalid parameter, such as an unknown colour, or missing
parameter, an empty list (or undef in scalar context) is
returned, and errstr() is set,
- otherwise the number of pixels drawn is returned. If none of
the pixels could be drawn (they were all outside the image), "0
but true" is returned.
https://rt.cpan.org/Ticket/Display.html?id=87650
Other changes:
- when drawing on an image with an alpha channel where the source
minimum is greater than zero, Imager would read from beyond the end
of a malloc() allocated buffer. In rare circumstances this could
lead to some of the source image not being written to the target
image, or possibly to a segmentation fault.
I don't believe this has any security concerns beyond that.
- if the first text drawn with Imager::Font::T1 is not anti-aliased,
text drawn would be nonsense. This would also read beyond the end
of a malloced buffer.
- non-AA text drawn with an Imager::Font::TT (Truetype 1) font would be
truncated early.
https://rt.cpan.org/Ticket/Display.html?id=88993
- Imager::Font::Wrap no longer requires the image parameter.
https://rt.cpan.org/Ticket/Display.html?id=87338
- a documentation typo fix in Imager::Transformations
Thanks to Adrian Yee.
https://rt.cpan.org/Ticket/Display.html?id=88598
- Image::Probe, Imager's internal module for probing library
locations now searches the directories specified by LD_RUN_PATH,
LD_LIBRARY_PATH, DYLD_LIBRARY_PATH and LIBRARY_PATH for libraries,
and the corresponing s/\blib$/include/ directories for header
files.
https://rt.cpan.org/Ticket/Display.html?id=86428
Imager 0.97 - 15 Jul 2013
===========
No changes from 0.96_02.
Imager 0.96_02 - 8 Jul 2013
==============
- PNG: treat a version mismatch between headers and library as a
probe failure.
https://rt.cpan.org/Ticket/Display.html?id=86659
- PNG: the check for benign error support is more complex than a
simple library version check, check for the appropriate macro.
Thanks for Slaven Rezic for following up on my CPAN Testers result
queries.
https://rt.cpan.org/Ticket/Display.html?id=86659
- W32: add a missing head1 AUTHORS to the old Win32.pm
https://rt.cpan.org/Ticket/Display.html?id=86658
Imager 0.96_01 - 1 Jul 2013
==============
- TIFF: handle SampleFormat = 2 by translating the signed integer
values to unsigned by flipping their sign bits.
Handle SampleFormat = 3 where possible.
SampleFormat is ignored for paletted images.
Mixed SampleFormat are handled incorrectly, since libtiff returns
only the first SampleFormat value, and an image with both an alpha
channel and SampleFormat = 2 for color channels probably has a
different SampleFormat for the alpha channel.
https://rt.cpan.org/Ticket/Display.html?id=74540
- XS clean up:
https://rt.cpan.org/Ticket/Display.html?id=69243
- Imager::Color's rgba() method now returns its values as integers
instead of floating point. (IV instead of NV).
- The XS for i_map() and i_matrix_transform() now use the AV *
typemap instead of rolling their own.
- The XS for DSO_call() now uses the HV * typemap instead of
rolling it's own.
- The XS for i_poly_aa(), i_poly_aa_cfill(), i_transform() and
i_gradgen() now use a new T_AVARRAY typemap that greatly
simplifies the XS code.
- many other minor XS changes
- some XS code formatting
- TT (Freetype 1.x) and FT2 (Freetype 2.x) non-antialiased rendering
now renders in alpha-combining mode, to match antialiased output.
https://rt.cpan.org/Ticket/Display.html?id=73359
- add sample code and cookbook notes for drawing a blurred drop-shadow.
- add support for libpng 1.6, which changed the defaults for
reporting some types of error.
https://rt.cpan.org/Ticket/Display.html?id=85746
- FT2: use gsamp/psamp() to transfer pixels from the work image to
the output image instead of gpix/ppix.
https://rt.cpan.org/Ticket/Display.html?id=83478
- eliminate various GCC warnings, mostly initialized but otherwise
unused variables.
Imager 0.96 - 19 May 2013
===========
- rearrange Imager's test files.
https://rt.cpan.org/Ticket/Display.html?id=84596
- Imager::Probe::_gcc_lib_paths now forces C locale.
A sufficiently recent gcc prints localized keys for the search
paths, which avoids that localization.
https://rt.cpan.org/Ticket/Display.html?id=84963
- fix a pod error detected by Pod::Simple 3.27 and laterm and skip
pod tests unless AUTOMATED_TESTING or IMAGER_AUTHOR_TESTING is set
and true.
https://rt.cpan.org/Ticket/Display.html?id=85262
reported by Andreas König
- add a test for unclosed POD in C source, and fix the errors it
found.
https://rt.cpan.org/Ticket/Display.html?id=74875
- fix some spelling errors detected by the newer aspell in Debian
Wheezy.
- remove a trailing ' from lib/Imager/Font/Test.pm's POD
thanks to gregor herrmann <gregoa@debian.org>
https://rt.cpan.org/Ticket/Display.html?id=85413
- add a test for standard =head1 commands and fix the errors found
Imager 0.95 - 19 Apr 2013
===========
- handle the SVf_UTF8 flag correctly on magic strings passed to
Imager::IO's write() and raw_write() methods.
This may misbehave in perl 5.6.x since the UTF8 flag may not be
visible in the main SV after SvGETMAGIC().
https://rt.cpan.org/Ticket/Display.html?id=83438
- document that bounding_box() ignores the transformation matrix
supplied to tranform() for fonts.
https://rt.cpan.org/Ticket/Display.html?id=84106
Imager 0.94_02 - 5 Apr 2013
==============
- enable debug logging for the standard font tests
- skip the overloaded UTF-8 text output checks on 5.6.x and earlier,
due to a bug in that version of perl.
- don't test for read() failing on a write-only handle in 5.8.x and
earlier, this was fixed in change 862083f7e4 in perl.
- report the version of Inline found during testing (an attempt to
diagnose some intermittent failures.)
Imager 0.94_01 - 2 Mar 2013
==============
- NOTE: possibly backward incompatible:
support reading from/writing to perl filehandes that aren't raw
files.
This allows Imager's I/O to honour handles with layers such as
gzip, scalar file handles or tied file handles.
This is backward incompatible in that previous Imager would simply
use fileno() to retrieve the fd for the file and call write(2) etc
on it directly.
https://rt.cpan.org/Ticket/Display.html?id=78843
- moved most of README to lib/Imager/Install.pod which should make it
more accessible to the "web" generation, also significantly updated
and re-worked it.
- updated README's for the separately distributed modules to refer to
Imager::Install, and that they need -dev versions of packages
https://rt.cpan.org/Ticket/Display.html?id=81265
- the JPEG test code now reports the compile-time library version
- avoid a possible compiler optimization issue on CentOS 5.9 i386 by
rearranging (and mildly optimizing) some code.
https://rt.cpan.org/Ticket/Display.html?id=83212
- fix a POD error in Imager::Fill (detected on new Pod-Simple)
https://rt.cpan.org/Ticket/Display.html?id=83434
- fix a broken link to Graphics::Magick
https://rt.cpan.org/Ticket/Display.html?id=82743
- drawing text to a channel with FT2 would draw with random coverage
due to an uninitialized alpha channel.
- marked the function pointer underlying the mm_log() API with the
correct gcc magic and fixed the resulting warnings.
- fixed some other compiler warnings
- Imager::Font::W32 now properly reports text drawing errors
https://rt.cpan.org/Ticket/Display.html?id=70098
- handle the SVf_UTF8 flag correctly on magic (eg. overloaded)
strings passed as text to draw(), bounding_box(), has_chars(),
glyph_names() (where supported) in each of the font drivers.
This may misbehave in perl 5.6.x since the UTF8 flag may not be
visible in the main SV after SvGETMAGIC().
https://rt.cpan.org/Ticket/Display.html?id=83438 (partial)
Imager 0.94 - 15 Dec 2012
=========================
Variations on some of these changes were included in development
releases.
- improved thread safety
- the internal error stack and log file handle are now in a per-thread
context object
- JPEG now captures IPTC information in a thread-safe way
- avoid globals where possible for warning capture in libtiff
- use a mutex to avoid re-entering thread-unsafe giflib
- use a mutex to avoid re-entering thread-unsafe tifflib
- use a mutex to avoid re-entering thread-unsafe T1Lib
- use a library handle per thread for freetype 2.
- use an engine handle per thread for freetype 1.x.
- originally these changes broke ABI compatibility, this has been
restored.
- clarify the return value of getpixel();
https://rt.cpan.org/Ticket/Display.html?id=81198
- fixed a race condition in parallel testing for T1
- fixed a bug in handling yoff for untransformed image-based fills
- documentation improvements for Imager::Fill
- FT2: report the library version while testing.
Imager 0.93 - 15 Oct 2012
===========
Bug fixes:
- previously a transparency enabled GIF write (the default) would
always use a GIF89a header even if none of the images were
transparent.
- previously the probe step for freetype-config would fail on cygwin
- catch an invalid matrix parameter to convert() instead of crashing
https://rt.cpan.org/Ticket/Display.html?id=79922
- remove the 16-bit/sample limitation from the documentation for
setsamples(), it hasn't applied for many releases.
https://rt.cpan.org/Ticket/Display.html?id=79989
- don't copy setsamples() data parameter, it may be a large scalar
https://rt.cpan.org/Ticket/Display.html?id=79990
- clean up .dSYM directories generated performing probes on OS X
Mountain Lion.
- pass the --verbose command-line option through to Imager::Probe in
sub-module's Makefile.PLs
https://rt.cpan.org/Ticket/Display.html?id=75878
Enhancements:
- support for giflib 5.0. (5.0.1 and later)
https://rt.cpan.org/Ticket/Display.html?id=79029
The giflib API Imager uses doesn't have a mechanism to set the
header version in 5.0.0.
- update the GIF library probe code to check for the new giflib 5.0.1
EGifSetGifVersion() function, and to check for the giflib 4.2.0
uninitialized gif89 bug.
https://rt.cpan.org/Ticket/Display.html?id=79679
http://sourceforge.net/tracker/?func=detail&aid=3574283&group_id=102202&atid=631304
- avoid static variables when capturing IPTC data from JPEG files
- match Imager::Font;:T1's error message translations to those from
later versions of T1Lib.
- for libtiff versions that support extended warning handlers (3.8.0
or later), use them to avoid some global variables.
- note Image::ExifTool for better metadata support.
https://rt.cpan.org/Ticket/Display.html?id=79251
Imager 0.92 - 14 Aug 2012
===========
- giflib 4.2 eliminates the GIF_LIB_VERSION macro, handle that
correctly for both probing and runtime.
https://rt.cpan.org/Ticket/Display.html?id=77672
- allow building JPEG/imexif.c on C89 compilers.
- allow building GIF/imgif.c on C89 compilers.
Imager 0.91 - 4 Jun 2012
===========
Bug fixes:
- The size of rotated images is no longer rounded up so aggressively.
Added rounding to the linear interpolation done for rotate() and
matrix_transform() for 1 and 3 channel 8-bit images.
Adjusted the two tranlate matrices used to build the final rotation
matrix to use the distance between the outlier pixels rather than
the pixel dimensions (ie. dimension-1).
With all of this the output of rotate(degrees => 270) on an 8-bit
image exactly matches the output of rotate(right => 270).
https://rt.cpan.org/Ticket/Display.html?id=77063
Other changes:
- eliminate the old IIM_new(), IIM_DESTROY() names from Imager's
internals, those names only matter for the XS interface.
- improve error reporting when PERL_INITIALIZE_IMAGER_CALLBACKS finds
the API level compiled into a loadable module such as
Imager::File::GIF doesn't match that of Imager. Previously it
could be difficult to determine exactly which module was failing to
load.
https://rt.cpan.org/Ticket/Display.html?id=77173
- added Imager->check_file_limits() as an interface to the
i_int_check_image_file_limits() API.
- Imager->set_file_limits(reset => 1) now resets the limits to the
defaults rather than setting them all to unlimited.
- wrote a brief security note as Imager::Security
https://rt.cpan.org/Ticket/Display.html?id=68910
Imager 0.90 - 30 Apr 2012
===========
Bug fixes:
- Imager::Test::is_imaged() attempted to process an "epsilon"
parameter but the prototype didn't allow for the extra parameter.
Corrected the prototype.
- when downconverting samples (eg. from floating point to 8 bit)
Imager now rounds the sample value rather than attempting to
allocate input values over output values equally. The old
behaviour had the probably surprising effect of converting a
floating point 2.1/255.0 into an 8-bit 3 rather than the expected
2.
This may result in slightly different 8 or 16-bit output images.
- BI_BITFIELD BMP images were handled incorrectly, both in
incorrectly calculating the space required for the masks and in
processing the image data itself.
https://rt.cpan.org/Ticket/Display.html?id=76736
- some odd width BMP BI_RLE4 images use run lengths that run one off
the edge of the image. Imager now allows this, discarding the
extra column.
- odd length RLE4 runs in BMP images were decoded incorrectly.
- pkg-config could sometimes return a library that was in a directory
EU::MM / $Config{libpth} doesn't know about, but the compiler did.
If no -L is included in the pkg-config library information check if
EU::MM can find the library, and if not, search our configured
directories and insert that into the library flags.
https://rt.cpan.org/Ticket/Display.html?id=75869
- Imager::Probe can now probe for libraries with dependent libraries,
common for static linking, eg. libpng requires libz.
https://rt.cpan.org/Ticket/Display.html?id=74043
- libpng 1.5 specific probes were looking for libpng 1.4 filenames.
- added alternative probe configurations that try to link libz, to
handle a statically linked libpng.
https://rt.cpan.org/Ticket/Display.html?id=74043
- if a probe includes testcode, Imager::Probe now checks that code as
part of the process of checking each configuration rather than as a
post test of the found configuration. This allows alternate
configurations to be checked if a matching but non-working
configuration is found.
https://rt.cpan.org/Ticket/Display.html?id=74043
Other changes:
- when reading or writing images via callbacks, the default callbacks
now push an error message indicating that a required callback was
called but not supplied.
https://rt.cpan.org/Ticket/Display.html?id=76782
- clarify which callbacks are required for reading and writing TIFF
images.
- improve logging for creation of callback I/O layers.
- a little more documentation for Imager::Probe.
- the i_get_file_background() and i_get_file_backgroundf() APIs now
return int to indicate whether the i_background tag was found.
- PNG rework
- improve error reporting
- add png_interlace, png_bits tags
- read paletted images as paletted images, including transparency
- read 1 bit greyscale images as a type suitable for other file
handlers to write as bilevel
- read 16 bit/sample PNG as 16-bit/sample Imager images
- write "bilevel" paletted images as 1 bit grayscale images
- write paletted images as paletted images
- write 16-bit (or higher)/sample images as 16-bit/sample PNG
images
- improved metadata support
https://rt.cpan.org/Ticket/Display.html?id=29268
Imager 0.89 - 18 Mar 2012
===========
Bug fixes:
- getpixel(..., type => "float") and the API i_gpixf() have been
broken on paletted images since they were implemented.
https://rt.cpan.org/Ticket/Display.html?id=75258
Other changes:
- links in the METHOD INDEX now point at the method documentation
rather than the heading you can find them under.
https://rt.cpan.org/Ticket/Display.html?id=71495
- Imager (and the bundled dynamic modules) no longer fallback to
using DynaLoader if loading via XSLoader fails.
For the bundled modules this could hide useful error messages.
https://rt.cpan.org/Ticket/Display.html?id=75560
- IM_DEBUG_MALLOC mymalloc() no longer sn?printfs() a string to a
buffer in the array of allocations, but just stores the filename
pointer and line number.
https://rt.cpan.org/Ticket/Display.html?id=70388
Imager 0.88 - 22 Feb 2012
===========
- describe how to build libgif etc on OS X in such a way as to be
compatible with a fat binary perl (such as the system perl), in
README.
https://rt.cpan.org/Ticket/Display.html?id=73371
- update the change notes for 0.77_01 to indicate that libungif
support was removed.
- add some other imaging modules to SEE ALSO
https://rt.cpan.org/Ticket/Display.html?id=73906
- note that the generator of the apparently non-DFSG-free postscript
in MMOne.pfb is a Debian package.
- setsamples() is now a true complement to getsamples() - it can
write 8-bit or floating point samples from a scalar or array
reference. This adds i_psamp() and i_psampf() to the C level API.
- the XS interfaces to i_gsamp(), i_gsampf() and i_gsamp_bits() have
changed to make better use of the typemap, but these aren't part of
the perl level API anyway. There were no changes to the C level
interfaces to these functions.
- getpixel() and setpixel() now accept a mix of scalar and array
references for the x and y parameters, and unequal array lengths is
no longer an error.
https://rt.cpan.org/Ticket/Display.html?id=73697
Bug fixes:
- correctly calculate the size of a rotated image
https://rt.cpan.org/Ticket/Display.html?id=69261
- fix incorrect rounding of color values for matrix_transform() and
rotate().
https://rt.cpan.org/Ticket/Display.html?id=69261
- Win32 text output is now done in normal combine mode, the alpha
component of the color is now significant.
https://rt.cpan.org/Ticket/Display.html?id=70014
- remove long unused gif case from read()
https://rt.cpan.org/Ticket/Display.html?id=69244 (partial)
- the getsamples() target parameter was being treated as a hashref
when it's meant to be an array reference.
https://rt.cpan.org/Ticket/Display.html?id=74882
- getpixel() and setpixel() now returns an empty list when invalid
parameters are supplied.
Invalid values for type now result in an error for getpixel().
https://rt.cpan.org/Ticket/Display.html?id=73697
Imager 0.87 - 03 Jan 2012
===========
- document the return value of the filter() method.
https://rt.cpan.org/Ticket/Display.html?id=72369
- document i_gsamp_bits() and i_psamp_bits().
https://rt.cpan.org/Ticket/Display.html?id=68815
- properly increment the Imager::Matrix2d $VERSION.
- actually include the Imager::Test tests in the dist
- correctly read and write 256x256 pixel ICO files
https://rt.cpan.org/Ticket/Display.html?id=69599
- make the error message from read() or read_multi() when they can't
identify the file type match reality.
https://rt.cpan.org/Ticket/Display.html?id=72475
- read() now uses $FORMATGUESS if it can't determine the file type
based on the file header, to match read_multi().
- re-work and add tests for def_guess_type(). def_guess_type() no
longer returns any random file extension as the file type.
- add gray4, gray16 and gray as presets for make_colors.
https://rt.cpan.org/Ticket/Display.html?id=67911
- add make_palette() method that produces a palette from one or more
images.
- fix the Imager dependency for the separately distributed font
drivers.
https://rt.cpan.org/Ticket/Display.html?id=72643
- fix i_render_color() to properly draw in "normal" mode - ie. when
writing to a 1 or 3 channel image the second or fourth channel of
the source color was being ignored, it is now significant.
https://rt.cpan.org/Ticket/Display.html?id=71564
Imager 0.86 - 31 Oct 2011
===========
- improve error reporting for W32 tests
Imager 0.85_02 - 24 Oct 2011
==============
Bug fixes:
- eliminate unused i_gif_opts type (clean-up)
https://rt.cpan.org/Ticket/Display.html?id=69245
- fix combine=0 fill color anti-aliasing on the double/sample path
https://rt.cpan.org/Ticket/Display.html?id=71309
- make default text color non-transparent
https://rt.cpan.org/Ticket/Display.html?id=71469
- apply the last of the Debian unforwarded spelling fixes
https://rt.cpan.org/Ticket/Display.html?id=70656
- the log() method used its message parameter as a C level format
string.
https://rt.cpan.org/Ticket/Display.html?id=71653
- provide our own STRLEN typemap entry for older perls.
https://rt.cpan.org/Ticket/Display.html?id=71641
- add extra ppport.h configuration to support older perls.
- depend on Scalar::Util, since we use it and older perls don't have
it.
- add overloaded eq to Imager::Matrix2d, since older perls don't seem
to synthesize it from overloaded "".
- use T1_StrError() for error messages on modern libt1
https://rt.cpan.org/Ticket/Display.html?id=69879
- actually load the font rather than just adding it to the catalog on
creation.
- Imager::Font->new now produces better error messages for the T1
engine.
- the font has_chars() method now returns perl's true and false
values in list context rather than integers, which should be more
efficient.
https://rt.cpan.org/Ticket/Display.html?id=69158
- the btm data structure used by the flood_fill code is now
initialized more efficiently.
https://rt.cpan.org/Ticket/Display.html?id=68994
- updated the Thanks list in README
https://rt.cpan.org/Ticket/Display.html?id=71607
- check there's at least one coefficient for the convolution filter
https://rt.cpan.org/Ticket/Display.html?id=68993
- make the APIRef synopsis ordering consistent, older versions of
perl could order it differently.
https://rt.cpan.org/Ticket/Display.html?id=71675
- we rely on Config.pm's d_vsnprintf as to whether we use
vsnprintf/snprintf, which is defined in the Win32 Config.pm even
though it only has _ prefixed versions of these. Define our own
prefixed names on Win32.
https://rt.cpan.org/Ticket/Display.html?id=71642
- fix library detection with MSVC
- search a few more library directories, so EU::MM doesn't discard
them. Hopefully fixes:
https://rt.cpan.org/Ticket/Display.html?id=71643
Imager 0.85_01 - 10 Oct 2011
==============
- add simple tests for the Imager::Test test_image generators
- io_glue I/O buffering re-work:
- reorganize io_glue to do it's own buffering by default
- the unbuffered functions are available as i_io_raw_read() (or
raw_read() from perl) etc but are not recommended for typical
use.
- use the new i_io_peekn() when checking for file magic to avoid
seek, allowing Imager to detect the file type and read the file
from an unseekable stream (for formats that don't use random
access)
- added several new I/O layer API functions.
- fix the TGA performance problem, most noticably on Win32
https://rt.cpan.org/Ticket/Display.html?id=70037
- TIFF now uses wrapper functions of the correct types to avoid casts
https://rt.cpan.org/Ticket/Display.html?id=69912
- the callback IO object did its own buffering, controlled by the
maxbuffer parameter supplied to the read() and write() methods.
This buffering has been removed, to avoid redundancy with the
common io_glue buffering. This also avoids a bug in that code
which could rarely pass a zero length to the read callback and
then panic about the result.
- the callback IO object now tests the result of calling the close
callback, which should return true for success.
- the PNM reader did its own buffering. This buffering has been
removed to avoid redundancy with the common io_glue buffering.
- previously the read handlers for fd and callback I/O layers would
call the underlying interface (POSIX read or your supplied callback)
until it filled the buffer. It now only makes one call.
- added public constructors for I/O layer objects (see Imager::IO)
- all core file handlers now use the i_io_foo() wrappers to gain
access to buffered I/O rather than calling the I/O layer
callbacks directly.
- all core file handlers now check for error on close.
- Backward compatibility: if you hava custom file handlers, you can
use i_io_write() etc since they're available as macros in older
versions of Imager.
- eliminate the final remnants of io_glue_commit_types().
- bump IMAGER_API_VERSION, since the above may break assumptions.
- removed the long unused i_gen_reader() and i_gen_writer() utility
functions.
Imager 0.85 - 29 Aug 2011
===========
The main changes in the release versus 0.84 are:
- on 64-bit systems, 64-bit types are consistently used for image
dimensions and co-ordinated, and for memory block sizes.
- handle IFD loops in TIFF files correctly. Previously this would
lead to an infinite loop.
Bug fixes:
- fix the link in the getheight() entry in the method index
Imager 0.84_02 - 22 Aug 2011
==============
Development release, this will become 0.85 if CPAN testers is
favourable.
Bug fixes:
- the image file limits set by set_file_limits() weren't being
checked when reading TIFF files.
https://rt.cpan.org/Ticket/Display.html?id=69915
- Provide more information about file format module load errors on a
failed image file read() or write().
https://rt.cpan.org/Ticket/Display.html?id=69194
- use TIFFReadDirectory() instead of TIFFSetDirectory() to iterate
through TIFF images, since it checks for IFD loops.
https://rt.cpan.org/Ticket/Display.html?id=69914
- don't leak memory when out of range palette indexes are supplied to
setscanline().
https://rt.cpan.org/Ticket/Display.html?id=69242
- require a later version of CPAN::Meta to ensure JSON::PP and
CPAN::Meta::YAML are available.
https://rt.cpan.org/Ticket/Display.html?id=69008
- hoist the per-line calculations for the flines implementations, and
modernize the tests a bit.
https://rt.cpan.org/Ticket/Display.html?id=70126
- detect snprintf()/vsnprintf() (cheat by using Config.pm) and use
them when available.
https://rt.cpan.org/Ticket/Display.html?id=69147
- if t1lib failed to reinitialize it would be left as marked
initialized.
https://rt.cpan.org/Ticket/Display.html?id=69877
- update the bundled (and still modified) Devel::CheckLib
https://rt.cpan.org/Ticket/Display.html?id=69170
Imager 0.84_01 - 8 Aug 2011
==============
Development release as a sanity check for the types re-work.
Massive types re-work:
- the type used internally for pixel co-ordinates and image sizes is
now 64-bit on 64-bit platforms (at least sane ones).
- size_t is now used consistently for memory block sizes.
- since this changes the binary interface, the Imager API version has
been incremented. Any module that uses the API will need to be
rebuilt. In most cases that will be enough, but calls to any APIs
that take a pointer to image sizes may need source changes.
- you should be able to create very large images on 64-bit systems,
if you have enough memory. Successfully created a 32768 x 49192 x
3 channel image, filled with a tiled image and scaled it. The
unscaled image was also successfully saved to a JPEG.
- check the image size before attempting to write BMP, GIF, JPEG,
PNG, SGI, TGA, TIFF images.
- correctly handle reading TGA images over 32767 pixels wide or tall.
Incidental changes:
- the gif_left and gif_top tags are now clamped to non-negative
values when writing a GIF image.
- removed dead callback read/write code
The default maximum memory size when reading files is now 1G.
Imager 0.84 - 20 Jun 2011
===========
- Imager no longer inherits from Exporter (unless you're running an
old, old perl.
- Imager can now write progressive JPEGs (it could always read them).
https://rt.cpan.org/Ticket/Display.html?id=68691
Bug fixes:
- re-work, document and test Imager's logging facility.
https://rt.cpan.org/Ticket/Display.html?id=65227
- fix META.yml testing and the generated META.yml
https://rt.cpan.org/Ticket/Display.html?id=65235
- test and add error reporting to to_*() family methods
- add to_rgb_double() method.
https://rt.cpan.org/Ticket/Display.html?id=65101
- Imager no longer exports anything by default
https://rt.cpan.org/Ticket/Display.html?id=65228
- convert colors to grayscale if the supplied (or generated) palette
contains only grays when performing error diffusion color
translation.
https://rt.cpan.org/Ticket/Display.html?id=68508
- writing a paletted image to GIF wouldn't always use the colors
supplied (or generated, eg. via make_colors => "mono"), which was
confusing at best.
https://rt.cpan.org/Ticket/Display.html?id=67912
- replace (imager|tony)@imager.perl.org in the doc, since I don't
plan to continue receiving mail at that address.
https://rt.cpan.org/Ticket/Display.html?id=68591
Imager 0.83 - 21 May 2011
===========
Bug fixes:
- diag() the error message on failure for some TIFF tests that are
failing on a Solaris smoker.
http://www.cpantesters.org/cpan/report/6396db1e-8090-11e0-9682-112b785ebe45
Imager 0.82_01 - 17 May 2011
==============
Dev release, in case the compose tests are too sensitive.
Bug fixes:
- Imager::Font::T1 incorrectly checked for absolute filename under
Win32. Thanks to kmx for the report and fix.
https://rt.cpan.org/Ticket/Display.html?id=67963
- compose() with the target, source or mask position off the top or
left of the target image didn't clip the source image correctly.
https://rt.cpan.org/Ticket/Display.html?id=67220
- compose() now returns a useful error message on a non-positive
opacity.
- compose.im now at 100% test coverage. (As opposed to, umm, much,
much less.)
Imager 0.82 - 14 Mar 2011
===========
Bug fixes:
- eliminate calls to i_has_format() from the test suite, since it's
no longer a useful way to check for file format support. Eliminate
i_has_format() from the functions exposed via XS.
https://rt.cpan.org/Ticket/Display.html?id=65863
- eliminate calls to note(), which isn't in the (very old) version of
Test::More we have as a pre-requisite. note() is modern enough
that I don't feel a need to require a Test::More upgrade for it.
https://rt.cpan.org/Ticket/Display.html?id=65864
- skip the threads tests on Test::More 2.00_*
https://rt.cpan.org/Ticket/Display.html?id=65812
- add an (unshipped) test to check Imager's internal POD links
https://rt.cpan.org/Ticket/Display.html?id=65749
- improve the library detection summary
https://rt.cpan.org/Ticket/Display.html?id=9675
- increase the version of Imager::Font::Type1 so that upgrades don't
downgrade the version in this file.
https://rt.cpan.org/Ticket/Display.html?id=66250
- if we see an -rpath (or -R) option in $Config{lddlflags} supply
that option for the directories that would normally go in
LD_RUN_PATH. Typically an explicit -rpath overrides LD_RUN_PATH.
https://rt.cpan.org/Ticket/Display.html?id=65955
Imager 0.81 - 14 Feb 2011
===========
- added coverage tests for masked images (maskimg.c @100% test coverage)
- add hsv() method to Imager::Color
Thanks to Leolo (Philip Gwyn)
https://rt.cpan.org/Ticket/Display.html?id=65385
- split libt1 Type 1 font support into a sub-module
https://rt.cpan.org/Ticket/Display.html?id=49616 (partial)
- add a preload() class method for use in forking servers, and to
work around limitations in PAR.
https://rt.cpan.org/Ticket/Display.html?id=65665
Bug fixes:
- paletted writes to a masked image are now masked correctly.
Revealed by new coverage tests.
- update the filter plugin documentation.
https://rt.cpan.org/Ticket/Display.html?id=56513
- add the matrix() method to Imager::Matrix2d to allow creation of a
matrix with specified co-efficients. You can now multiple an
Imager::Matrix2d object by a 9 element array ref or a number.
https://rt.cpan.org/Ticket/Display.html?id=29938
- really fix loading TTF fonts with FT2 when FT1 isn't available.
Thanks to Leolo (Philip Gwyn)
https://rt.cpan.org/Ticket/Display.html?id=65386
https://rt.cpan.org/Ticket/Display.html?id=62855
- make sure each test script that needs testout/ creates it.
https://rt.cpan.org/Ticket/Display.html?id=65088
- handle a slightly different warning from libtiff 4.x
https://rt.cpan.org/Ticket/Display.html?id=65268
- the sat transform2() op returned an incorrect saturation.
https://rt.cpan.org/Ticket/Display.html?id=65391
Imager 0.80 - 17 Jan 2011
===========
- added coverage tests for Imager::Fountain and Imager::Color::Float
- Imager is now maintained in git
http://git.imager.perl.org/imager.git
git://git.imager.perl.org/imager.git
Bug fixes:
- images with an translucent alpha channel were not scaled correctly
by the default (qtype=normal) scaling method.
https://rt.cpan.org/Public/Bug/Display.html?id=63922
- Imager::Color::Float now translates "#FFFFFF" to white instead of
just a little darker.
- make the default color map build algorithm "mediancut". This
changes the default color map builder for writing GIFs back to what
it was in 0.77, reverting a performance regression.
https://rt.cpan.org/Ticket/Display.html?id=64785
- handle failure to create a masked image correctly
Imager 0.79 - 10 Dec 2010
===========
- add Imager::Test to the POD coverage tests and document the missing
functions.
- the convert() method now optimizes the case where all output
channels are either 0, sourced from a single input channel or 1.
This significantly speeds up presets like "addalpha", "green".
https://rt.cpan.org/Ticket/Display.html?id=51254
- add wiggle.pl sample, as suggested by Dan Oppenheim.
- add the combine() method to combine channels from multiple source
images into a new image
https://rt.cpan.org/Ticket/Display.html?id=11872
Bug fixes:
- treat the co-efficients for convert() as doubles instead of floats.
- If a higher (earlier) priority font handler failed to load, that
would crash preventing loading of later font handlers.
https://rt.cpan.org/Ticket/Display.html?id=62855
- parse defines from the options returned by pkg-config --cflags
https://rt.cpan.org/Ticket/Display.html?id=63223
- a regen of the MANIFEST revealed that GIF and FT2 tests weren't
included in the tarball. They are now included.
Imager 0.78 - 4 Oct 2010
===========
Bug fixes:
- don't access deprecated members of the png_structp.
https://rt.cpan.org/Ticket/Display.html?id=60242
- document that using color objects is faster than supplying colors
by name, etc.
https://rt.cpan.org/Ticket/Display.html?id=61047
- Imager::Probe now accepts array references for incpath and libpath.
https://rt.cpan.org/Ticket/Display.html?id=60244
Imager 0.77_02 - 27 Sep 2010
==============
- moved Win32, FreeType 2 font support into sub-modules.
https://rt.cpan.org/Ticket/Display.html?id=49616 (partial)
Uses Imager::Probe now.
https://rt.cpan.org/Public/Bug/Display.html?id=61328
- tested successfully with jpeg-8b
https://rt.cpan.org/Ticket/Display.html?id=60221
Bug fixes:
- from _01: look for missing file support test files in the right
places.
- flood_fill() wouldn't fill the right side of a single scan-line
fill area.
Thanks to Nicolas Roggli for reporting this.
- flood_fill wouldn't fill to the left edge of the image if the
starting line didn't reach the left edge.
Thanks to Nicolas Roggli for reporting this.
Imager 0.77_01 - 13 Sep 2010
==============
- add each library-directory/pkgconfig/ to the pkg-config search path
in Imager::Probe.
Thanks to Justin Davis.
https://rt.cpan.org/Ticket/Display.html?id=60491
- moved GIF, TIFF, JPEG file handling code into sub-modules in
preparation for separate distribution.
https://rt.cpan.org/Ticket/Display.html?id=49616 (partial)
Note: this removed support for libungif from Imager.
- optimize filled box drawing (color, not fill)
Bug fixes:
- Imager::Probe was calling ExtUtils::Liblist to initialize
LD_RUN_PATH supplying an undefined value rather than the found
directory. Thanks to Justin Davis.
https://rt.cpan.org/Ticket/Display.html?id=60491
- only prepend ./ to font filenames when passing them to T1Lib and
then only when it would use its search mechanisms.
https://rt.cpan.org/Ticket/Display.html?id=60509
- fix the cache check for the X rgb.txt loader. This is typically
used for color translation on Unix-like systems, and the fix
improves performance of supplying colors by name by about 80 times.
Test code that managed 3400 10x10 pixel boxes/second sped up to
25700 boxes/second.
- clarify that Imager doesn't write EXIF metadata to images.
https://rt.cpan.org/Ticket/Display.html?id=60637
- Imager::Probe can now search subdirectories under its include path.
Used by the PNG Makefile.PL to find headers and libraries when they
aren't in the base directory, as in cygwin.
https://rt.cpan.org/Ticket/Display.html?id=60635
Imager 0.77 - 11 Aug 2010
===========
I don't want Imager::File::PNG indexed as part of Imager, but forgot
to update the META.yml before updating the version.
- don't index Imager::File::PNG as part of Imager
- add resources to META.yml
Imager 0.76 - not released
===========
Bug fixes:
- the align_string() method would ignore a string of "0" due to a
mis-use of C< ||= >.
Thanks to Maurice Height for reporting this.
https://rt.cpan.org/Ticket/Display.html?id=60199
Imager 0.75_03 - 09 Aug 2010
==============
Bug fixes:
- read_types() and write_types() would include png when it wasn't
available due to a problem with the %formats tie
- handle dependent libraries correctly (eg -lpng requiring -lz) in
the code run phase of library probing.
Imager 0.75_02 - 07 Aug 2010
==============
Bug fixes:
- add file missing from MANIFEST, which was causing TIFF failures.
Imager 0.75_01 - 06 Aug 2010
==============
Test release for the new PNG probe.
- added the ability to read multiple-image PNM files.
Note that unlike the pbm/pgm/ppm specification this accepts mixed
format files and allows white space padding between files.
Thanks to Philip Gwyn (Leolo) for this patch.
- moved the PNG file handling code into a sub-module in preparation
for separate distribution.
https://rt.cpan.org/Ticket/Display.html?id=49616 (partial)
Also helps avoid complications from -I/-L compile/link options from
other libraries.
Bugs:
- Imager->new(data => $data) didn't try to process image file data in
$data
https://rt.cpan.org/Ticket/Display.html?id=58761
- t/t50basicoo.t no longer depends on the other tests to generate its
input files.
https://rt.cpan.org/Ticket/Display.html?id=9798
Also, it wasn't testing pnm (pnm vs ppm mix-up)
- update the documentation of hardinvert to match the change in 0.62.
https://rt.cpan.org/Ticket/Display.html?id=59785
- added hardinvertall filter which also inverts the alpha channel
(sorry for the mess)
- when probing for TIFF, set LD_RUN_PATH just as the Makefile does so
the probe can find the library for the test run.
https://rt.cpan.org/Ticket/Display.html?id=57518
Imager 0.75 - 20 Jun 2010
===========
- use PERL_NO_GET_CONTEXT to slightly improve performance on threaded
perls (not measured)
Bugs:
- an opacity fill based on a fountain fill would segfault when
filling an 8-bit/sample image.
- merge thickline branch polygon fix
https://rt.cpan.org/Ticket/Display.html?id=43518
Imager 0.74 - 7 May 2010
===========
Bug fixes:
- read_multi() didn't handle a missing file format library correctly,
aborting on failing to call i_readgif_multi_wiol() or
i_readtiff_multi_wiol().
- fix spelling errors patched by Debian
http://svn.debian.org/viewsvn/pkg-perl/trunk/libimager-perl/debian/patches/spelling.patch?revision=54839&view=markup
- add an (unshipped) author test to spellcheck Imager's POD.
- update the TIFF file format documentation
https://rt.cpan.org/Ticket/Display.html?id=56510
- lib/Imager/IO.pod was written almost 4 years ago but never shipped.
Imager 0.73 - 15 Mar 2010
===========
- implement outline circles, both anti-aliased and not
https://rt.cpan.org/Ticket/Display.html?id=19755
- a combine => "none" fill to a 1 or 3 channel image would produce
the incorrect colour.
Imager 0.72 - 09 Dec 2009
===========
Bump version for release, since 0.71_03 is stable with CPAN testers.
Imager 0.71_03 - 5 Dec 2009
==============
- further adjust the threads test so it only performs the tests on
perls where it's expected to work, and only if the threads module
can be loaded.
Imager 0.71_02 - 1 Dec 2009
==============
- adjust the way we load the threads module for the threads test so
it works with non-threaded perls
Imager 0.71_01 - 30 Nov 2009
===========
Bug fixes:
- use scanline oriented operations to flip images instead of pixel
operations
https://rt.cpan.org/Ticket/Display.html?id=39278
- use double/sample operations to flip large sample images instead of
8-bit sample operations.
https://rt.cpan.org/Ticket/Display.html?id=39280
- fix POD nits
https://rt.cpan.org/Ticket/Display.html?id=51874
- prevent double-frees when someone creates Imager objects and then
creates a thread. Note: this just handles some simple cases,
Imager doesn't support perl threads, and isn't likely to.
https://rt.cpan.org/Ticket/Display.html?id=52268
Imager 0.71 - 16 Nov 2009
===========
- add the opacity fill type - an adaptor that modifies the opacity of
another fill.
Bug fixes:
- the conv filter now enforces that the sum of the coefficients is
non-zero. Also, rather than skipping pixels off the edge off the
edge of the image, the closest edge pixel is used. Previously
dividing by the zero sum of coefficients could cause invalid
results or runtime exceptions.
Thanks to David Cantrell's Alpha-NetBSD CPAN test box for revealing
this bug.
Imager 0.70 - 21 Sep 2009
===========
Bug fixes:
- release image row and comments memory on all error returns in gif
reader
- handle zero length extensions, previously this would cause a null
pointer dereference
Thanks to Krzysztof WojtaĆ for the test data and fix for this.
- an integer division meant that preview scaling to below 1 pixel
wide or high (which isn't too useful anyway) was calculating using
NaNs on most platforms, and causing an exception on others.
Thanks to David Cantrell for producing a backtrace of the crash on
his Alpha-NetBSD CPAN test box which made it possible to track this
down.
Imager 0.69 - 08 Sep 2009
===========
Bug fixes:
- broken test fix - was attempting to call a function skip_all, when
that should be a parameter to plan().
- briefly document apidocs.perl, the tool used to build
Imager::APIRef and make some minor enhancements
- various minor documentation enhancements and fixes.
Imager 0.68 - 07 Sep 2009
===========
- Imager->new(file => $filename) and other similar incantations will
load the given file.
https://rt.cpan.org/Ticket/Display.html?id=48261
Bug fixes:
- avoid using CHECK as a label in Imager::Test
http://nntp.x.perl.org/group/perl.cpan.testers/5220921
- re-work most image file test files that require a library into
separate library present/not present files to remove stupidly long
conditionals
- don't treat rubthrough() outside the bounds of the target image as
an error.
http://nntp.x.perl.org/group/perl.cpan.testers/5185716
Imager 0.67_01 - 02 Sep 2009
==============
Bug fixes:
- correct documentation of default of raw image interleave read
parameter
https://rt.cpan.org/Ticket/Display.html?id=42074
- add raw_ prefix to raw read parameters, though the original names
still work.
- fail the read if an invalid raw_interleave parameter is supplied
- warn if no interleave or raw_interleave parameter is supplied,
since the documented default was wrong, and incompatible with the
write format
- for reading raw images, if raw_storechannels > raw_datachannels,
set the extra channels in the image to 0
- when probing for executables like freetype-config, search for .bat
and .cmd on MSWin32, as well as .exe.
https://rt.cpan.org/Ticket/Display.html?id=49275
- re-work the external libraries section of README:
- list Debian and Redhat package names for each library
- reformatting
- update URLs
- use the new EU::MM META_MERGE facility instead of generating
META.yml from scratch
https://rt.cpan.org/Ticket/Display.html?id=47888
- use Devel::CheckLib (bundled, modified) to check which release of
libtiff is installed and reject 3.9.0
http://bugzilla.maptools.org/show_bug.cgi?id=2088
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=543079
Imager 0.67 - 12 Dec 2008
===========
Bug fixes:
- fix a packaging error
Imager 0.66 - 12 Dec 2008
===========
- 24-bit color .ICO/.CUR files can now be read.
Bug fixes:
- an optimization skipping 0 src alpha values could cause the
rubthrough() to read past the end of a buffer.
http://www.nntp.perl.org/group/perl.cpan.testers/2008/05/msg1509184.html
- corrected a reference leak where writing GIFs would leak memory.
This could also happen calling to_paletted().
Also documented the underlying long existing feature where the
colors parameter is filled with the generated color table and added
tests for it.
http://rt.cpan.org/Ticket/Display.html?id=41028
- write out the image size in bytes field of a BMP correctly.
http://rt.cpan.org/Ticket/Display.html?id=41406
- add limited tests for Imager::ExtUtils
- make Imager::ExtUtils->includes use an absolute path, since
a relative path could cause failures using Inline::C.
http://rt.cpan.org/Ticket/Display.html?id=37353
- re-arrange the POD for Imager::Font::BBox:
- mark total_width(), pos_width(), end_offset() obsolete, since
they're mostly for backwards compatibility
- group width methods and height methods
https://rt.cpan.org/Ticket/Display.html?id=39999
Imager 0.65 - 20 May 2008
===========
Bug fixes:
- In some cases when an error occurs reading those parts of a JPEG
file after the image the scan-line buffer could be freed a second
time. In cases where the the error occured while reading the image
data it's possible that the buffer could have leaked.
Thanks to Gabriel Vasseur for reporting this and help in tracking
it down.
- the gif_screen_height tag was overriding the screen width and being
ignored for the screen height when present.
https://rt.cpan.org/Public/Bug/Display.html?id=35568
Imager 0.64 - 23 April 2008
===========
This is a bug fix release. This includes a fix for a possible
security issue.
Bug fixes:
- Possible security issue: The floating point sample path for image
based fills had a buffer overflow. This would overwrite the end of
a malloc()ed buffer with double precision floats.
http://rt.cpan.org/Ticket/Display.html?id=35324
CVE-2008-1928
- check that the result of fileno($fh) is defined rather than simply
true when read() or write() is supplied with an fh parameter.
http://rt.cpan.org/Ticket/Display.html?id=35139
- i_scale_axis() wasn't checking the result of i_img_new_ch()
resulting in a SIGSEGV when attempting to scale an image to a size
too large to fit in memory. This is a NULL pointer access issue,
not a buffer overflow.
Added a check for the failure.
scale_calculate() (and hence scale()) will now fail if any of the
scale size parameters are a reference.
http://rt.cpan.org/Ticket/Display.html?id=35172
- Regression: filling a greyscale image with a hatch used the wrong
color channels from the supplied fg/bg colors.
https://rt.cpan.org/Ticket/Display.html?id=35278
- fixed a related problem for image fills.
Imager 0.63 - 7 April 2008
===========
This release primarily contains changes to improve ease of use -
rather than you having to convert images to the appropriate number of
channels, Imager handles it internally. How to handle drawing colors
and the default combine mode is a thornier problem left for some other
release.
- the font libraries are now only initialized when needed.
http://rt.cpan.org/Ticket/Display.html?id=28825
- moved the imtoc.perl code into Imager::Preprocess
- paste() and rubthrough() now adapt the source image data to the
destination, so you can now safely paste/rubthrough from greyscale
images to color images or back, or from alpha channel images to
noalpha channels or back.
https://rt.cpan.org/Ticket/Display.html?id=30908
- rubthrough() now falls back to pasting when the source doesn't have
an alpha channel. This effectively treats the source as having a
max alpha channel, the right thing to do.
http://rt.cpan.org/Ticket/Display.html?id=29944
- re-worked most of the area filling code to use a common set of
functions when filling.
Corrected normal combine mode.
Rewrote most of the combine modes to match the way the SVG draft
defines them with respect to a translucent source and destination.
Added tests for translucent source and destination.
Added tests to check 8-bit/sample and double/sample combines work
similarly.
https://rt.cpan.org/Ticket/Display.html?id=29879
- writing a 2 or 4 channel image to a JPEG file will now write that
image as if composited against a background, black by default,
overridable with the i_background tag/parameter.
https://rt.cpan.org/Ticket/Display.html?id=29876
- writing a 2 or 4 channel image to a PGM/PPM file will now write
that image as if composited against a background, black by default,
overridable with the i_background tag/parameter.
http://rt.cpan.org/Ticket/Display.html?id=30074
- writing a 2 or 4 channel image to a BMP file will now write that
image as if composited against a background, black by default,
overridable with the i_background tag/parameter.
http://rt.cpan.org/Ticket/Display.html?id=30075
Bug fixes:
- Imager::Matrix2d->translate() now only requires one of the x or y
parameters.
http://rt.cpan.org/Ticket/Display.html?id=29937
- mixing qtype scaling now sets all channels of a pixel to zero if
the pixel has zero coverage (zero alpha). This should produce more
compressible output files.
http://rt.cpan.org/Ticket/Display.html?id=32324
- removed the pointless #! line from lib/Imager/Font/Wrap.pm
Noticed when I saw:
https://bugzilla.redhat.com/show_bug.cgi?id=166254
I'm not changing the #! lines of the sample code, since it's sample
code, not intended for installation.
http://rt.cpan.org/Ticket/Display.html?id=33408
- some TGA images weren't being detected correctly as TGA images
https://rt.cpan.org/Ticket/Display.html?id=32925
- handling of the left-over bit for 16-bit/pixel TGA images has been
changed to match the behaviour of the GIMP. Previously the bit
being set was treated as an opaque pixel, but one user reported a
problem with loading such an image. I haven't been able to find any
tools beyond the GIMP that handle alpha-channel 16-bit TGAs, so
I'll match it's behaviour. See issue 114913 in the GIMP's
bugzilla.
http://rt.cpan.org/Ticket/Display.html?id=32926
Imager 0.62 - 10 December 2007
===========
- Makefile.PL now expands ~/path supplied to --incpath or --libpath
to /path under your home directory.
http://rt.cpan.org/Ticket/Display.html?id=29484
- the old dynaload code used Mach API functions to load dynamic
libraries on Mac OS X. These APIs have been deprecated in OS X
10.5 and were causing some build problems.
So henceforth Imager uses the dlopen() family of functions, and you
will need version 10.3 or later of OS X.
- added the det() function to the transform2() engine.
added the sample quad_to_square.pl
Courtesy Richard Fairhurst.
http://rt.cpan.org/Ticket/Display.html?id=31244
Bug fixes:
- samples/gifscale.pl sourced the base value for gif_top from
gif_left.
Thanks to Eleneldil G. Arilou for pointing this out.
- t/t82inline.t no longer loads B at runtime, to work around a bug
in some 5.005_0[45] installations.
http://rt.cpan.org/Ticket/Display.html?id=30508
- work around Module::Depends::Intrusive bug #21229
http://rt.cpan.org/Ticket/Display.html?id=30520
- the hardinvert filter no-longer inverts the alpha channel.
http://rt.cpan.org/Ticket/Display.html?id=30002
- the hardinvert filter now supports large samples
Imager 0.61_02 - 28 November 2007
==============
- major TIFF support re-work
http://rt.cpan.org/Ticket/Display.html?id=20329
- added a C level image interface for accessing samples from 1-32
bits, exposed this at the perl level in getsamples()
- the conv filter now works at floating point precision for high bit
images
- added is_bilevel method to test whether an image should be written as
a bilevel image if the image format supports it.
- added -log-stderr as an Imager import list option
- added some important types to Imager::APIRef
- added test_image_double() to Imager::Test
Bug fixes:
- Imager::Fountain couldn't read GIMP gradient files with 10 or more
segments
- the scale() method with qtype mixing now handles images with an
alpha channel correctly.
- fixed a broken link from the "animated GIF" entry in the concept index.
Thanks to Slaven Rezic.
http://rt.cpan.org/Ticket/Display.html?id=30889
- on some perl's the infix expression parser test would fail due to
actions in the grammar returning false. Made sure all actions return
a true value.
Thanks to Richard Fairhurst for spending a lot of time in tracking
down this problem.
http://rt.cpan.org/Public/Bug/Display.html?id=29562
Imager 0.61 - 5 November 2007
===========
- added samples/gifscale.pl, which adjusts the screen size/position tags
when scaling an animated gif
http://rt.cpan.org/Ticket/Display.html?id=27591
Bug fixes:
- correct handling of sz in matrix_transform() - this should allow
perspective type transformations to work now.
http://rt.cpan.org/Ticket/Display.html?id=29936
- prevent a cast to integer warning on x64 builds in datatypes.c
also fixed some other type warnings
https://rt.cpan.org/Ticket/Display.html?id=30204
- some sub-directory tests depended on files produced by the parent
directory tests
http://rt.cpan.org/Ticket/Display.html?id=30203
- Imager::Font::Wrap doesn't correctly set savepos
thanks to Nikita Dedik and Eleneldil G. Arilou for reporting this.
http://rt.cpan.org/Ticket/Display.html?id=29771
- test 171 in t/t01introvert.t was failing on perls configured to
use long double.
http://rt.cpan.org/Ticket/Display.html?id=29413
- the code for the transform2() uminus operator was missing a break.
Added tests for better code coverage of the ops.
http://rt.cpan.org/Ticket/Display.html?id=29296
- the SGI RLE compression code could overflow its compression buffer
http://rt.cpan.org/Ticket/Display.html?id=30334
- the 32-bit output function used by the SGI code only handled values
under 0x10000. This was most noticable when writing large RLE images.
http://rt.cpan.org/Ticket/Display.html?id=30335
- validate chan_count for chans == NULL for each of the i_gsamp()
implementations.
http://rt.cpan.org/Ticket/Display.html?id=28985
- attempt to work around the test failure at
http://www.nntp.perl.org/group/perl.cpan.testers/2007/09/msg650810.html
http://rt.cpan.org/Ticket/Display.html?id=29562
- improve the error messages produced when attempting to read or write
an unknown image file format.
http://rt.cpan.org/Ticket/Display.html?id=30103
- improve the transform2() documentation
http://rt.cpan.org/Ticket/Display.html?id=29267
- correctly generate the author key in META.yml
http://rt.cpan.org/Ticket/Display.html?id=30377
- correctly blend a rotated (or matrix_transformed()) image when
performing interpolation in the presence of an alpha channel.
Also corrected the centring of the rotated image on the output
image.
Imager 0.60 - 30 August 2007
===========
- Finished/rewrote Arnar's old SGI RGB file format support, so Imager
now has full SGI RGB image format, including RLE and 16-bit/sample
images.
https://rt.cpan.org/Ticket/Display.html?id=8666
- logging functions are now available in the API
- applied Gabriel Vasseur's patch
added documentation, further tests, and support for greyscale images
Obviously problems are my fault :)
https://rt.cpan.org/Ticket/Display.html?id=28142
- the mask for ICO/CUR images is now applied as an alpha channel to
the returned image. For the old behaviour, supply ico_masked => 0
to read() or read_multi(). This should be less confusing when
using Imager as a general image processor.
https://rt.cpan.org/Ticket/Display.html?id=29001
Bug fixes:
- in some cases it's possible for giflib/libungif to return color
indexes outside the range of colors defined by the image's palette.
We now expand the palette to match the indexes used.
Thanks to Gabriel Vasseur for reporting this.
- fixed various memory leaks that could occur when failing to read png,
jpeg, bmp or tga files.
- to avoid confusion, channels not present in the image are returned as
zero by getscanline(). This has no effect on the C level i_glin()
and i_glinf() API functions which continue to not set the unused
channels.
- the convert() method now returns an image of the same sample size as
the source image.
https://rt.cpan.org/Ticket/Display.html?id=28492
- remove repeated text in Imager::Files
http://rt.cpan.org/Ticket/Display.html?id=27589
- be even more explicit that scale() and friends don't modify the source
image, but return a new image.
http://rt.cpan.org/Ticket/Display.html?id=28570
- improve the error message from errstr() when you try to load a font
for which the driver hasn't been built in Imager.
http://rt.cpan.org/Ticket/Display.html?id=27571
- transparency is now enabled by default when writing GIF images
http://rt.cpan.org/Ticket/Display.html?id=27615
- Imager would not load on Windows 98
http://rt.cpan.org/Ticket/Display.html?id=27653
Imager 0.59 - 14 June 2007
===========
Bug fixes:
- fixes a regression introduced by the fixes for RT 11972
http://rt.cpan.org/Ticket/Display.html?id=27546
- cropping outside the image would return an Imager object with
no low-level image object, instead of returning false.
Fixed by: Philip Gwyn (Leolo)
http://rt.cpan.org/Ticket/Display.html?id=27509
Imager 0.58 - 16 May 2007
===========
No significant changes from 0.57_01.
Imager 0.57_01 - 11 May 2007
==============
- added to_rgb16 to produce a 16-bit/sample version of an image
- improve freetype 1.x text output efficiency
Bug fixes:
- search another place for rgb.txt, and check all the places
Imager::Color checks when deciding whether to skip testing it
http://rt.cpan.org/Ticket/Display.html?id=26064
- use a convolution kernel size based on the stddev rather than a
fixed size when performing a gaussian blur
http://rt.cpan.org/Ticket/Display.html?id=25645
- document the difference() method's mindist parameter, and debug it.
- put the Imager release number in the Inline::C generated code to
regenerate Inline code when a new release of Imager is installed.
http://rt.cpan.org/Ticket/Display.html?id=26278
- fix rendering on alpha channel images for the FreeType 1.x driver.
http://rt.cpan.org/Ticket/Display.html?id=11972
- fix rendering on alpha channel images for the T1lib driver.
http://rt.cpan.org/Ticket/Display.html?id=11972
- reworked library probing, we can now set more than one probe
function for a library. Disabled the default (non-freetype-config)
library probe and added an extra probe function that searches for
both ft2build.h and whatever it includes, and adds -I as needed.
Hopefully this will fix build problems like
http://www.nntp.perl.org/group/perl.cpan.testers/2007/05/msg472281.html
http://rt.cpan.org/Ticket/Display.html?id=26086
Imager 0.57 - 30 Apr 2007
===========
This is a maintenence release fixing a security issue in Imager.
- CRITICAL: a specially crafted compressed BMP file can cause a buffer
overflow in malloced memory. There will be further discussion of
this issue in the ticket below.
http://rt.cpan.org/Ticket/Display.html?id=26811
CVE-2007-2459 CVE-2007-2413
The descriptions at cve.mitre.org varied in quality, please see the
ticket at rt.cpan.org for a more accurate description of the issue.
Imager 0.56 - 1 Apr 2007
===========
- added support for reading 16-bit/sample PGM/PPM images
- added support for writing 16-bit/sample PGM/PPM images
- improved performance of reading PBM/PGM/PPM images
- added support for writing PBM images if the image is paletted and
contains only black and white
- added a new make_colors value - "mono"
- switched from the svn log Changes to a manual Changes to reduce
noise
- new sample code - samples/flasher.pl
Bug fixes:
- CRITICAL: the "Imager" typemap entry (not used by Imager itself)
was returning an image object with an extra reference, this
resulted in a memory leak.
http://rt.cpan.org/Ticket/Display.html?id=24992
- fix rendering on alpha channel images for the FreeType 2.x driver
http://rt.cpan.org/Ticket/Display.html?id=11972
- reading bmp files now consitently handles short reads. You can now
supply a parameter to treat a short read as successful and set
i_incomplete
http://rt.cpan.org/Ticket/Display.html?id=8426
- previously, reading ASCII PBM files required spaces between samples,
even though the format doesn't require that
- improved documentation of the unsharpmask filter (I hope)
http://rt.cpan.org/Ticket/Display.html?id=25531
- force flushing of the output from i_tt_dump_names() and test output
in t/t35ttfont.t to prevent output from being mixed up.
https://rt.cpan.org/Ticket/Display.html?id=24859
- rewrite a conditional expression as an if() to hopefully work around
a bug in the pre-4.0 GCC Apple shipped with OS X 10.4.
https://rt.cpan.org/Ticket/Display.html?id=25561
- avoid Data::Dumper in regops.perl to support older releases of perl
https://rt.cpan.org/Ticket/Display.html?id=24391
Imager 0.55 - 16 Dec 2006
===========
This is primarily a bug fix release.
Note: Test::More is now a pre-requisite for Imager and is no longer bundled.
There is one new feature:
- the Win32 font driver now supports UTF8 (RT 22166)
http://www.cpanforum.com/threads/3276
http://rt.cpan.org/Ticket/Display.html?id=22166
Several bugs were fixed:
- the string() method would not output the string "0"
http://rt.cpan.org/Public/Bug/Display.html?id=21770
- fills.c was failing to compile on Solaris 10 (compiler unknown)
http://rt.cpan.org/Public/Bug/Display.html?id=21944
- the gif_disposal and gif_user_input tags weren't being read from
the file correctly
http://rt.cpan.org/Public/Bug/Display.html?id=22192
- gif.c was failing to build under MSVC
http://rt.cpan.org/Ticket/Display.html?id=23922
- in some cases strings passed to the string() method were treated as
terminated by NUL (chr 0)
http://rt.cpan.org/Public/Bug/Display.html?id=21770
- on "MSWin32" perl builds we now link to -lzlib instead of -lz since
that's the default build name for zlib on Win32.
http://rt.cpan.org/Ticket/Display.html?id=23064
- search $Config{incpath} for headers too, which we should have been
doing all along.
Win32 font driver fixes:
- the global descent value from bounding box was the wrong sign
http://www.cpanforum.com/threads/3276
- if the first or last glyph overflowed the left or right side of the
advance width they would be clipped
Imager 0.54 - 14 Sep 2006
===========
This is primarily a feature release:
- a new qtype value 'mixing' has been added to the scale()
method. This is faster than 'normal', slower than 'preview'. This
is based on the method used by pnmscale, and seems to produce less
blurry results than normal.
http://rt.cpan.org/Public/Bug/Display.html?id=20677
- the rubthrough() method can now render onto images with an alpha
channel.
http://rt.cpan.org/Ticket/Display.html?id=20678
- the read_multi() method now falls back to calling doing a single
image read via the read() method and write_multi() will now fall
back to calling write() if a single image is supplied. This means
you can simply call the read_multi() or write_multi() functions
without having to check if the type is formatted by that method.
http://rt.cpan.org/Ticket/Display.html?id=19457
http://rt.cpan.org/Ticket/Display.html?id=19458
- the GIF loop extension can now be written. If you don't have
libungif/giflib 4.1.4 (or some distribution's bugfixed equivalent) you
should upgrade.
http://rt.cpan.org/Ticket/Display.html?id=21185
- getscanline() and setscanline() can now read/write palette index
based data from/to the image for paletted images, by setting type to
'index'.
http://rt.cpan.org/Ticket/Display.html?id=20338
- we no longer hassle you to disable GIF support
http://rt.cpan.org/Ticket/Display.html?id=20687
- minor documentation fixes
Imager 0.53 - 26 Jul 2006
===========
This is a bugfix release.
Some test code was left in a code path not covered by the test
suite. A test was added to cover this code path and the test code was
removed.
http://rt.cpan.org/Public/Bug/Display.html?id=20705
Imager 0.52 - 25 Jul 2006
===========
This is primarily a feature release, but contains a fair few bug
fixes, new features:
- ability to read and write MS Windows ICO and CUR files
- you can now add file format plugins to support new file formats
- add POD coverage tests
- setcolors() and addcolors() now accept color names and so on
instead of requiring Imager::Color objects.
http://rt.cpan.org/Ticket/Display.html?id=20056
- flood_fill() can now fill to a specified border color instead of
just to the area the same color as the seed.
http://rt.cpan.org/Ticket/Display.html?id=19618
Bug fixes:
- bounding_box for the T1 driver wasn't converting UTF8 to ascii when
calculating the advance width.
http://rt.cpan.org/Public/Bug/Display.html?id=20554
- bounding_box for the T1 driver wasn't including leading and
trailing spaces in the bounding box as the other drivers did, it also
produced strange results for empty strings or strings containing only
spaces
- when reading CMYK jpeg images they were being transferred to the
image object as is, producing a four channel image. It only looked ok
due to an old still unfixed Photoshop bug. We now convert from the
inverted CMYK that photoshop (and Corel for example) produce into RGB.
http://rt.cpan.org/Ticket/Display.html?id=20416
- reading a CYMK TIFF would result in a 4 channel image, reading any
image with more than 4 channels (eg. RGB with 2 alpha channels) would
result in an error.
http://rt.cpan.org/Ticket/Display.html?id=20415
- added /usr/local/include to the default include search path, since
we were already searching /usr/local/lib for libraries.
And various minor fixes and documentation updates.
Imager 0.51 - 23 Apr 2006
===========
- fix a validation bug when processing JPEG EXIF data that can cause
a crash
http://rt.cpan.org/Public/Bug/Display.html?id=18496
- fix mis-processing of the src_maxx and src_maxy parameters of the
paste() method
http://rt.cpan.org/Public/Bug/Display.html?id=18712
- fix a problem in Imager's "smart" handling of the color parameter
to various methods.
http://rt.cpan.org/Public/Bug/Display.html?id=18561
Imager 0.50 - 29 Mar 2006
===========
- CRITICAL: fixes a segmentation fault from attempting to write a 2
or 4 channel image to jpeg or a 2 channel image to tga where the
output is an in-memeory buffer.
http://rt.cpan.org/Public/Bug/Display.html?id=18397
- fixes an incorrect pointer parameter in the PNG code
http://rt.cpan.org/Public/Bug/Display.html?id=18051
- skip Inline::C tests when building in a directory with spaces
http://rt.cpan.org/Public/Bug/Display.html?id=18049
|