File: changelog.html

package info (click to toggle)
imagemagick 8%3A6.9.11.60%2Bdfsg-1.6%2Bdeb12u3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 76,816 kB
  • sloc: ansic: 349,503; cpp: 21,804; xml: 11,029; perl: 6,417; sh: 5,877; makefile: 3,042; tcl: 459
file content (5144 lines) | stat: -rw-r--r-- 476,497 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144




<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8"  />
  <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"  />
  <title>ImageMagick - Changelog</title>
  <meta name="application-name" content="ImageMagick" />
  <meta name="description" content="Use ImageMagick® to create, edit, compose, and convert bitmap images. Resize an image, crop it, change its shades and colors, add captions, and more." />
  <meta name="application-url" content="https://legacy.imagemagick.org" />
  <meta name="generator" content="PHP" />
  <meta name="keywords" content="changelog, image converter, image resizer, image editor, photo editor, jpg converter, png converter, tiff converter, vector images, online, free, swiss army" />
  <meta name="rating" content="GENERAL" />
  <meta name="robots" content="INDEX, FOLLOW" />
  <meta name="generator" content="ImageMagick Studio LLC" />
  <meta name="author" content="ImageMagick Studio LLC" />
  <meta name="revisit-after" content="2 DAYS" />
  <meta name="resource-type" content="document" />
  <meta name="copyright" content="Copyright (c) 1999-2020 ImageMagick Studio LLC" />
  <meta name="distribution" content="Global" />
  <meta name="magick-serial" content="P131-S030410-R485315270133-P82224-A6668-G1245-1" />
  <meta property='og:url' content='https://legacy.imagemagick.org/' />
  <meta property='og:title' content='ImageMagick Legacy' />
  <meta property='og:image' content='https://legacy.imagemagick.org/images/logo.png' />
  <meta property='og:type' content='website' />
  <meta property='og:site_name' content='ImageMagick Legacy' />
  <meta property='og:description' content="Create, Edit, Compose, or Convert Bitmap Images" />
  <meta name="google-site-verification" content="_bMOCDpkx9ZAzBwb2kF3PRHbfUUdFj2uO8Jd1AXArz4" />
  <meta name="msvalidate.01" content="103012B23499FEB70AEA89C83C274AC7" />
  <link href="changelog.html" rel="canonical" />
  <link href="../images/wand.png" rel="icon" />
  <link href="../images/wand.ico" rel="shortcut icon" />
  <link href="assets/magick.css" rel="stylesheet" />
</head>
<body>
  <nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
    <a class="navbar-brand" href="../index.html"><img class="d-block" id="wand" alt="ImageMagick" width="32" height="32" src="../images/wand.ico"/></a>
    <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsMagick" aria-controls="navbarsMagick" aria-expanded="false" aria-label="Toggle navigation">
      <span class="navbar-toggler-icon"></span>
    </button>

    <div class="navbar-collapse collapse" id="navbarsMagick" style="">
    <ul class="navbar-nav mr-auto">
      <li class="nav-item ">
        <a class="nav-link" href="../index.html">Home <span class="sr-only">(current)</span></a>
      </li>
      <li class="nav-item ">
        <a class="nav-link" href="download.html">Download</a>
      </li>
      <li class="nav-item ">
        <a class="nav-link" href="command-line-tools.html">Tools</a>
      </li>
      <li class="nav-item ">
        <a class="nav-link" href="command-line-processing.html">Command-line</a>
      </li>
      <li class="nav-item ">
        <a class="nav-link" href="develop.html">Develop</a>
      </li>
      <li class="nav-item">
        <a class="nav-link" target="_blank" href="https://github.com/ImageMagick/ImageMagick6/discussions">Community</a>
      </li>
      <li class="nav-item">
        <iframe src="https://github.com/sponsors/ImageMagick/button" title="Sponsor ImageMagick" height="35" width="107" style="border: 0;"></iframe>
      </li>
    </ul>
    </div>
    <form class="form-inline my-2 my-lg-0" action="https://legacy.imagemagick.org/script/search.php">
      <input class="form-control mr-sm-2" type="text" name="q" placeholder="Search" aria-label="Search" />
      <button class="btn btn-outline-success my-2 my-sm-0" type="submit" name="sa">Search</button>
    </form>
  </nav>
  <div role="main" class="container">
   <script async="async" src="https://localhost/pagead/js/adsbygoogle.js"></script>    <ins class="adsbygoogle"
         style="display:block"
         data-ad-client="ca-pub-3129977114552745"
         data-ad-slot="6345125851"
         data-full-width-responsive="true"
         data-ad-format="horizontal"></ins>
    <script>
      (adsbygoogle = window.adsbygoogle || []).push({});
    </script>
  </div>

  <main class="container">
    <div class="magick-template">
<div class="magick-header"><dl><dt>2021-01-24  6.9.11-59  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-59 GIT revision 16399:3614d5e0a:20210124</li>
<dt>2021-01-20  6.9.11-59  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> strip EXIF marker from profile (reference    https://github.com/ImageMagick/ImageMagick/issues/3140).</li>
  <li> add --enable-opencl to the configure command-line to enable OpenCL    support.</li>
  <li> generate histograms by comparing pixel components rather than color    (reference https://github.com/ImageMagick/ImageMagick/discussions/3142).</li>
  <li> revert annotation performance optimization (reference    https://github.com/ImageMagick/ImageMagick6/issues/130).</li>
<dt>2021-01-16  6.9.11-58  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-58 GIT revision 16343:f38ca0d37:20210116</li>
<dt>2021-01-11  6.9.11-58  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> properly identify SVG images (reference    https://github.com/ImageMagick/ImageMagick/issues/3117).</li>
  <li> duplicate operator: inverse range parameter working again (reference    https://github.com/ImageMagick/ImageMagick/issues/3113).</li>
  <li> Fix rounding error for CSS colors on i686 (reference    https://tracker.debian.org/pkg/imagemagick).</li>
<dt>2021-01-09  6.9.11-57  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-57 GIT revision 16301:c2f75ef89:20210109</li>
<dt>2021-01-08  6.9.11-57  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> update automake/autoconf configuration files.</li>
  <li> additional checks to prevent integer overflow.</li>
<dt>2021-01-05  6.9.11-56  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-56 GIT revision 16272:007db884f:20210105</li>
<dt>2021-01-05  6.9.11-56  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix rounding error for CSS colors (reference    https://github.com/ImageMagick/ImageMagick6/issues/129).</li>
<dt>2021-01-03  6.9.11-55  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-55 GIT revision 16266:c3350670f:20210103</li>
<dt>2021-01-03  6.9.11-55  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> revert changes to the default max width/height of image.</li>
<dt>2021-01-02  6.9.11-54  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-54 GIT revision 16244:6b93d4529:20210102 </li>
<dt>2020-12-25  6.9.11-54  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> enable reading of a certain grayscale TIFF image.</li>
  <li> validate pixel cache offsets (reference    https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=29039).</li>
<dt>2020-12-24  6.9.11-53  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-53 GIT revision 16203:1449d6ede:20201224</li>
<dt>2020-12-20  6.9.11-53  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> CSS colors no longer require commas.</li>
  <li> eliminate possible arthimetic overflow (reference    https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=28849)</li>
<dt>2020-12-19  6.9.11-52  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-52 GIT revision 16185:710d7811d:20201219</li>
<dt>2020-12-19  6.9.11-52  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> return alpha bytes with stream utility (reference    https://github.com/ImageMagick/ImageMagick/discussions/2862).</li>
  <li> percentage -border in x no longer adds one pixel border in y (reference    https://github.com/ImageMagick/ImageMagick/issues/2978).</li>
<dt>2020-12-18  6.9.11-51  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-51 GIT revision 16180:7d116a3bb:20201218</li>
<dt>2020-12-17  6.9.11-51  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> reduce time to identify PDF/PS/XPS/PCL image width/height (reference    https://github.com/ImageMagick/ImageMagick/discussions/2993).</li>
<dt>2020-12-16  6.9.11-50  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-50 GIT revision 16174:7cd364a33:20201216</li>
<dt>2020-12-15  6.9.11-50  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> revert patch to ready gray alpha TIFF image.</li>
<dt>2020-12-14  6.9.11-49  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-49 GIT revision 16165:749185e00:20201214</li>
<dt>2020-12-13  6.9.11-49  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> correct previous patch to read planar RGB TIFF images.</li>
<dt>2020-12-10  6.9.11-48  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-48 GIT revision 16156:573d57764:20201210</li>
<dt>2020-12-09  6.9.11-48  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Repair unit test failures (reference    https://github.com/ImageMagick/ImageMagick/issues/2959).</li>
  <li> assert failure when loading a PSD file, patch from Hanisch.</li>
<dt>2020-12-09  6.9.11-47  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-47 GIT revision 16151:77fc4f32d:20201209</li>
<dt>2020-12-06  6.9.11-47  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> use generic TIFF read method for LZW-compressed strips (reference    https://github.com/ImageMagick/ImageMagick/discussions/2935).</li>
<dt>2020-12-05  6.9.11-46  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-46 GIT revision 16139:f0234de70:20201205</li>
<dt>2020-11-30  6.9.11-46  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> possible TIFF related-heap buffer overflow (alert &amp; POC by Hardik Shah).</li>
  <li> set default system font in policy.xml configuration file.</li>
<dt>2020-11-30  6.9.11-45  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-45 GIT revision 16125:85c3464d7:20201130</li>
<dt>2020-11-27  6.9.11-44  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-44 GIT revision 16114:2fdb8e8f7:20201127</li>
<dt>2020-11-26  6.9.11-44 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> correct reading of first row in TIFF decoder.</li>
<dt>2020-11-24  6.9.11-44  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> correct rotation parameter for SVG transform.</li>
<dt>2020-11-23  6.9.11-43  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-43 GIT revision 16093:d3ad47f10:20201123</li>
<dt>2020-11-23  6.9.11-43  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> add padding to AcquirePolicyString().</li>
<dt>2020-11-22  6.9.11-42  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-42 GIT revision 16089:ae9803730:20201122</li>
<dt>2020-11-21  6.9.11-42  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> restore passphrase support when rendering PDF's.</li>
  <li> revert memory patch to avert possible thread lock.</li>
<dt>2020-11-20  6.9.11-40  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-40 GIT revision 16071:661c8a58a:20201120 </li>
<dt>2020-11-19  6.9.11-40  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> remove Linux shell artifact from Windows delegate configuration file.</li>
  <li> fix shell injection vulnerability via the -authenticate option (reference    alex@cure...).</li>
<dt>2020-11-17  6.9.11-39  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-39 GIT revision 16053:6095d7b94:20201117</li>
<dt>2020-11-07  6.9.11-39  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> support DPX 4:2:2 sampling.</li>
<dt>2020-11-14  6.9.11-38  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-38 GIT revision 16032:cb7355b0a:20201114</li>
<dt>2020-11-07  6.9.11-38  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> add image settings support to -fx.</li>
  <li> better support for TIFF YCbCr photometric.</li>
  <li> verify TTF glyph format before dereferencing (reference    https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=26932).</li>
  <li> force single HEIC image per container.</li>
<dt>2020-11-07  6.9.11-37  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-37 GIT revision 16011:4d139b73c:20201107</li>
<dt>2020-11-07  6.9.11-36  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-36 GIT revision 16008:9f3b8ffe4:20201107</li>
<dt>2020-11-02  6.9.11-36  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> do not add entropy based on mkstemp() unique filename.</li>
<dt>2020-10-31  6.9.11-35  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-35 GIT revision 16002:56875b029:20201031.</li>
<dt>2020-10-14  6.9.11-35  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> prefer ffmpeg over avconv.</li>
<dt>2020-10-08  6.9.11-34  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-34 GIT revision 15954:c4594f039:20201008</li>
<dt>2020-10-05  6.9.11-34  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> check for linux-compatible sendfile().</li>
<dt>2020-10-04  6.9.11-33  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-33 GIT revision 15943:757c9b18e:20201004</li>
<dt>2020-10-04  6.9.11-33  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> miscellaneous clean-up.</li>
<dt>2020-10-02  6.9.11-32  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-32 GIT revision 15931:ee2342eaf:20201002</li>
<dt>2020-09-27  6.9.11-32  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> enable WMF for module build.</li>
<dt>2020-09-26  6.9.11-31  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-31 GIT revision 15914:f6814fe52:20200926</li>
<dt>2020-09-20  6.9.11-31  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add support for APNG (specify explicitly, e.g. apng:animate.png).</li>
  <li> Add support for WEBM.</li>
<dt>2020-09-17  6.9.11-30  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-30 GIT revision 15904:67d1d4293:20200919</li>
<dt>2020-09-07  6.9.11-30  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add endian support to JSON coder.</li>
  <li> Regression: MapCache type cache allocation skipped (reference    https://github.com/ImageMagick/ImageMagick6/issues/97).</li>
  <li> Some DCM images include a thumbnail (reference    https://github.com/ImageMagick/ImageMagick/pull/2558).</li>
<dt>2020-09-05  6.9.11-29  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-29 GIT revision 15857:15b663aee:20200905.</li>
<dt>2020-08-16  6.9.11-29  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Eliminate infinite loop for certain SVG styles (reference    https://github.com/ImageMagick/ImageMagick6/issues/96).</li>
  <li> Add version element to JSON file format (reference    https://github.com/ImageMagick/ImageMagick6/issues/91).</li>
<dt>2020-08-16  6.9.11-28  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-28 GIT revision 15828:1a0a93a49:20200816</li>
<dt>2020-08-16  6.9.11-28  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Distorted clip path after -extent (reference    https://github.com/ImageMagick/ImageMagick/issues/2414).</li>
  <li> Paths in Photoshop EPS files are corrupted on conversion (reference    https://github.com/ImageMagick/ImageMagick/issues/2413).</li>
<dt>2020-08-09  6.9.11-27  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-27 GIT revision 15822:fc273882d:20200809</li>
<dt>2020-08-08  6.9.11-26  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-26 GIT revision 15819:515bf4e08:20200808</li>
<dt>2020-08-02  6.9.11-26  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Paths in Photoshop EPS files are no longer corrupted (reference    https://github.com/ImageMagick/ImageMagick/issues/2380).</li>
<dt>2020-07-31  6.9.11-25  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-25 GIT revision 15804:847957574:20200731</li>
<dt>2020-07-13  6.9.11-25  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Remove UseCIEColor setting from PDF code as its use is not recommended</li>
  <li> Update latest documentation.</li>
<dt>2020-07-18  6.9.11-24  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-24 GIT revision 15789:349d7ff34:20200718</li>
<dt>2020-07-13  6.9.11-24  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Discover hidden files when globbing (e.g. *.jpg) (reference    https://github.com/ImageMagick/ImageMagick/discussions/2239).</li>
<dt>2020-07-03  6.9.11-23  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-23 GIT revision 15762:9b6e0e045:20200704 </li>
<dt>2020-06-28  6.9.11-23  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Ensure that float is valid in ClampToQuantum() (reference    https://github.com/ImageMagick/ImageMagick/pull/2219).</li>
<dt>2020-06-26  6.9.11-22  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-22 GIT revision 15744:b14dc552e:20200626</li>
<dt>2020-06-24  6.9.11-22  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> fix wrapping of caption (reference    https://github.com/ImageMagick/ImageMagick/issues/2178).</li>
  <li> sanity check of affine matrix when drawing.</li>
<dt>2020-06-22  6.9.11-21  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-21 GIT revision 15731:0eff8c6b7:20200622</li>
<dt>2020-06-21  6.9.11-21  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> new image property, %N, only report the # of frames in an image sequence,    just once rather than on a per frame basis</li>
  <li> problems converting CMYK to RGB regression (reference    https://github.com/ImageMagick/ImageMagick6/issues/83)</li>
<dt>2020-06-20  6.9.11-20  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-20 GIT revision 15709:77849ee5a:20200620</li>
<dt>2020-06-14  6.9.11-20  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix out-of-bounds vulnerability when reading sixel images (reference    https://github.com/ImageMagick/ImageMagick/issues/2143).</li>
  <li> Fix incorrect parsing of font family list (reference    https://github.com/ImageMagick/ImageMagick/issues/2153).</li>
<dt>2020-06-12  6.9.11-19 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-19, GIT revision 15677:b26bd57:20200612</li>
<dt>2020-06-09  6.9.11-19 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Improve checking for write failures (reference    https://github.com/ImageMagick/ImageMagick/pull/2081).</li>
<dt>2020-06-08  6.9.11-18 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-18, GIT revision 15667:842c9ade8:20200608</li>
<dt>2020-06-08  6.9.11-18 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Colorspace change will remove ICC profile (reference    https://github.com/ImageMagick/ImageMagick6/issues/82).</li>
<dt>2020-06-07  6.9.11-17 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-17, GIT revision 15651:ff95d16:20200607</li>
<dt>2020-06-03  6.9.11-17 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Free up memory after a ICC profile is removed.</li>
<dt>2020-05-31  6.9.11-16 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-16, GIT revision 15639:38d3390:20200531</li>
<dt>2020-05-31  6.9.11-16 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix PDF XREF directory for image sequences with and without ICC profiles.</li>
<dt>2020-05-26  6.9.11-15 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> CCL area threshold not working correctly.</li>
  <li> Don't write a ICC profile to PDF if the image is gray (reference    https://github.com/ImageMagick/ImageMagick/issues/2070).</li>
<dt>2020-05-22  6.9.11-14 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-14, GIT revision 15618:471a07315:20200522</li>
<dt>2020-05-22  6.9.11-14 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Errant warning when reading a profile file (reference    https://github.com/ImageMagick/ImageMagick/issues/2030).</li>
  <li> Fix one off error on PDF object for images with ICC profile.</li>
<dt>2020-05-17  6.9.11-13 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-13, GIT revision 15610:9445760:20200517.</li>
<dt>2020-05-17  6.9.11-13 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Remove errant debugging statement in SVG coder.</li>
<dt>2020-05-15  6.9.11-12 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-12, GIT revision 15602:96db62d:20200515.</li>
<dt>2020-05-12  6.9.11-12 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Black artefacts during quantization (reference    https://github.com/ImageMagick/ImageMagick/discussions/2007#discussioncomment-13546).</li>
<dt>2020-04-08  6.9.11-11 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-11, GIT revision 15592:6c1c1a9:20200508</li>
<dt>2020-04-28  6.9.11-11 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Disable "random" OpenCL kernel.  Previously the work load was distributed    but each started with the same random seed.</li>
  <li> Enable threaded PNG coder.</li>
<dt>2020-04-27  6.9.11-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-10, GIT revision 15574:867252a:20200427</li>
<dt>2020-04-27  6.9.11-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Correction to allocate a colormap of the maximum colors when color    reducing an image sequence.</li>
  <li> Write to stdout for mp4:-.</li>
<dt>2020-04-26  6.9.11-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-9, GIT revision 15563:7e4286f:20200426.</li>
<dt>2020-04-25  6.9.11-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Allocate a colormap of the maximum colors when color reducing an image    sequence.</li>
  <li> Label was not centered properly (reference    https://github.com/ImageMagick/ImageMagick/issues/1879).</li>
<dt>2020-04-24  6.9.11-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-8, GIT revision 15554:1ab590d:20200424.</li>
<dt>2020-04-23  6.9.11-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Some configure --with-method-prefix methods were missing (reference    https://github.com/ImageMagick/ImageMagick/issues/1912).</li>
<dt>2020-04-20  6.9.11-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-7, GIT revision 15549:7b11069:20200420.</li>
<dt>2020-04-07  6.9.11-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix erroneous "insufficient image data" exception (reference    https://github.com/ImageMagick/ImageMagick/issues/1883).</li>
  <li> Fix an unconditional jump for the XPM coder (reference    https://github.com/ImageMagick/ImageMagick/issues/1895).</li>
<dt>2020-04-06  6.9.11-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-6, GIT revision 15539:e9e105c:20200406.</li>
<dt>2020-04-06  6.9.11-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix incomplete patch for EPT coder (reference    https://github.com/ImageMagick/ImageMagick6/issues/80).</li>
<dt>2020-04-05  6.9.11-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-5, GIT revision 15536:3689bed3a:20200405</li>
<dt>2020-04-05  6.9.11-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Default inkscape delegate to version 0.92 (reference    https://github.com/ImageMagick/ImageMagick/discussions/1880).</li>
  <li> Set monochrome image depth to 1 for Group4 compression.</li>
<dt>2020-04-05  6.9.11-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-4, GIT revision 15531:5fc7a9f:20200405.</li>
<dt>2020-03-27  6.9.11-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The X max attribute for certain fonts is zero (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=37723).</li>
  <li> Fix possible null pointer dereference in magick/property.c (reference    https://github.com/ImageMagick/ImageMagick/issues/1225).</li>
  <li> Multi-value of jp2:quality does not work (reference    https://github.com/ImageMagick/ImageMagick/issues/1873).</li>
  <li> Return EPS &amp; TIFF images from the EPT image format (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=37781).</li>
<dt>2020-03-27  6.9.11-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-3, GIT revision 15511:23bb003:20200327.</li>
<dt>2020-03-22  6.9.11-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix numerical instability issue when drawing lines.</li>
  <li> Fix off by one exception when calling QuantumImages() (reference    https://github.com/ImageMagick/ImageMagick6/issues/77).</li>
  <li> Improve mono font rendering (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=37723).</li>
<dt>2020-03-21  6.9.11-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-2, GIT revision 15500:698c610:20200321</li>
<dt>2020-03-16  6.9.11-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed another sizing issue with the label coder when pointsize is set.</li>
  <li> Respect explicit image filename modified (e.g. png24:im.png) (reference    https://github.com/ImageMagick/ImageMagick/issues/1835).</li>
  <li> Stroked dash array render properly again.</li>
<dt>2020-03-15  6.9.11-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-1, GIT revision 15487:ffac3c4:20200315.</li>
<dt>2020-03-07  6.9.11-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Do not throw exception on empty draw path (reference    https://github.com/ImageMagick/ImageMagick/issues/974).</li>
  <li> Fix possible buffer overflow in ComplexImages().</li>
<dt>2020-03-06  6.9.11-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.11-0, GIT revision 15465:f7c926d:20200306.</li>
<dt>2020-03-01  6.9.11-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Label text no longer gets cut-off (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=37621).</li>
  <li> Prevent heap overflow (reference    https://github.com/ImageMagick/ImageMagick/issues/1857).</li>
<dt>2020-02-29  6.9.10-97 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-97, GIT revision 15453:0537c847b:20200229</li>
<dt>2020-02-24  6.9.10-97 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Make sure we can grok this Fx expression: 1- -2.</li>
  <li> Do not advance when substituting a NULL string.</li>
  <li> Correct alpha for named colors in the Q32 non-HDRI build.</li>
  <li> Write Group4 compressed image as a single strip.</li>
<dt>2020-02-23  6.9.10-96 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-96, GIT revision 15438:2ef65d48e:20200223</li>
<dt>2020-02-22  6.9.10-96 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Adapt to a change in command-line options in the SVG inkscape delegate.</li>
<dt>2020-02-21  6.9.10-95 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> No percent sign in lab() color.</li>
<dt>2020-02-18  6.9.10-95 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Adapt to a change in command-line options in the SVG inkscape delegate.</li>
<dt>2020-02-16  6.9.10-94 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-94, GIT revision 15405:56d9955fc:20200217</li>
<dt>2020-02-16  6.9.10-94 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Corrected ellipse orientation when computing image moments.</li>
<dt>2020-02-14  6.9.10-93 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-93, GIT revision 15386:2d96228:20200214</li>
<dt>2020-02-08  6.9.10-93 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Report gray(127.5) as gray(50%).</li>
<dt>2020-02-07  6.9.10-92 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-92, GIT revision 15374:d468797:20200207</li>
<dt>2020-02-03  6.9.10-92 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> More work on connect components, e.g. keep-colors, remove-colors,    keep-topids </li>
  <li> Initialize mutex before locking if its not already initialized</li>
  <li> Support 24-bit TIFF images.</li>
<dt>2020-02-01  6.9.10-91 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-91, GIT revision 15346:4691fe1:20200201.</li>
<dt>2020-01-27  6.9.10-91 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support additional connected component defines.</li>
  <li> Refresh cache morphology when writing MPC images.</li>
<dt>2020-01-26  6.9.10-89 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-89, GIT revision 15318:2b12203:20200126</li>
<dt>2020-01-26  6.9.10-89 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Make png creation reproducible (reference    https://github.com/ImageMagick/ImageMagick/pull/1270).</li>
  <li> Refactor uninitialize variable for -fx "while(,)" expression.</li>
<dt>2020-01-25  6.9.10-88 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-88, GIT revision 15309:a3d1b6f:20200125</li>
<dt>2020-01-20  6.9.10-88 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support 32-bit tiles TIFF images.</li>
  <li> New -connected-component options (reference    https://legacy.imagemagick.org/www/connected-components.html).</li>
<dt>2020-01-18  6.9.10-87 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-87, GIT revision 15285:f6ba467:20200118</li>
<dt>2020-01-12  6.9.10-87 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Conditional compile for huge xml pages for RSVG delegate library.</li>
  <li> Put "width" property in the PNG namespace (reference    https://github.com/ImageMagick/ImageMagick/issues/1833).</li>
  <li> -combine -colorspace sRGB no longer returns grayscale output (reference    https://github.com/ImageMagick/ImageMagick/issues/1835).</li>
<dt>2020-01-12  6.9.10-86 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-86, GIT revision 15260:0667659:20200112.</li>
<dt>2020-01-12  6.9.10-86 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed three failing Magick.NET unit tests.</li>
<dt>2020-01-11  6.9.10-85 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-85, GIT revision 15253:1fdc999:20200111.</li>
<dt>2020-01-11  6.9.10-85 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Also support svg:xml-parse-huge when using librsvg.</li>
<dt>2020-01-07  6.9.10-85 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support Fx do() iterator.</li>
  <li> `magick -size 100x100 xc:black black.pnm` no longer creates a white image    (reference https://github.com/ImageMagick/ImageMagick/issues/1817).</li>
  <li> setjmp/longjmp in jpeg.c no longer trigger undefind behavior (reference<dt>		https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=37379).</dt>
  <li> Permit compositing in the CMYK colorspace (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=37368).</li>
<dt>2020-01-04  6.9.10-84 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-84, GIT revision 15212:a45335c:20200104.</li>
<dt>2020-01-01  6.9.10-84 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support extended Fx assignment operators (e.g. *=, /=, ++, --, etc.)</li>
  <li> Support Fx for() iterator.<dt>	* Optimize Fx performance.</dt>
  <li>	* Ensure circle.rb renders the same for IMv6 and IMv7 (reference    https://github.com/rmagick/rmagick/issues/905).</li>
<dt>2019-12-30  6.9.10-83 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-83, GIT revision 15184:9f64323:20191230.</li>
<dt>2019-12-28  6.9.10-83 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> PSD: only set the alpha channel when type is not 0.</li>
  <li> Fix Lab to custom profile (CMYK or RGB) conversion bug (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=37318).</li>
<dt>2019-12-27  6.9.10-82 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-82, GIT revision 15167:12b7f07:20191226.</li>
<dt>2019-12-26  6.9.10-82 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix Build failure with MinGW-w64 (reference    https://github.com/ImageMagick/ImageMagick6/issues/67).</li>
  <li> Inject image profile properties immediately after the image is read.</li>
<dt>2019-12-24  6.9.10-81 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-81, GIT revision 15151:1444366:20191224.</li>
<dt>2019-12-18  6.9.10-81 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Replace pseudo-random number generator with a Xoshiro generator.</li>
  <li> Define MagickAddressType (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=3729).</li>
<dt>2019-12-22  6.9.10-80 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-80, GIT revision 15135:8aa94ec27:20191222</li>
<dt>2019-12-18  6.9.10-80 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Some clang releases do not support _aligned_alloc().</li>
<dt>2019-12-07  6.9.10-79 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-79, GIT revision 15127:fa10678:20191215.</li>
<dt>2019-12-07  6.9.10-79 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Build file clean-up (reference    https://github.com/ImageMagick/ImageMagick/pull/1798).</li>
  <li> Improve semaphore handling @    https://github.com/ImageMagick/ImageMagick/pull/1798).</li>
  <li> Introduce HeapOverflowSanityCheckGetExtent() method (reference    https://github.com/ImageMagick/ImageMagick/pull/1798).</li>
<dt>2019-12-01  6.9.10-78 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-78, GIT revision 15097:0136438:20191207.</li>
<dt>2019-12-01  6.9.10-78 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> -type bilevel behavior restored, it creates a black and white image.</li>
<dt>2019-11-29  6.9.10-77 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-77, GIT revision 15087:5e6be1a:20191129.</li>
<dt>2019-11-26  6.9.10-77 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support Pocketmod image format, e.g.    convert -density 300 pages?.pdf pocketmod:organize.pdf</li>
  <li> Fixed numerous issues  posted to GitHub (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
  <li> Update documentation.</li>
    https://github.com/ImageMagick/ImageMagick/issues/1784).<dt>2019-11-26  6.9.10-75 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-75, GIT revision 15062:f23c75e:20191126.</li>
<dt>2019-11-19  6.9.10-75 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Increase the maximum number of bezier coordinates (reference    https://github.com/ImageMagick/ImageMagick/issues/1784).</li>
  <li> Santize "'" from SHOW and WIN delegates under Linux, '"\' for Windows    (thanks to Enzo Puig).</li>
  <li> Correct for TGA orientation (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=34757).</li>
  <li> The result for -compose Copy -extent on a CMYK image is CMYK (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=37118).</li>
  <li> Fix potential buffer overflow when reading a fax image (alert from    Justin).</li>
  <li> Support dng:use-camera-wb option.</li>
<dt>2019-11-17  6.9.10-74 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-74, GIT revision 15030:6efa1b6:20191117.</li>
<dt>2019-11-16  6.9.10-74 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Ensure Ascii85 compression is thread safe.</li>
  <li> Fixed numerous issues  posted to GitHub (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
<dt>2019-11-14  6.9.10-73 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-73, GIT revision 15014:bcb2b51:20191114.</li>
<dt>2019-11-14  6.9.10-73 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> HP's ANSI C/C++ compiler does not support strcasestr().</li>
<dt>2019-11-13  6.9.10-72 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-72, GIT revision 15011:4cf3857:20191113.</li>
<dt>2019-11-10  6.9.10-72 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Output exception there is an attempt to perform an operation not allowed by    the security policy</li>
  <li> Fixed numerous issues  posted to GitHub (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
<dt>2019-10-30  6.9.10-71 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-71, GIT revision 14989:8da75bd:20191030.</li>
<dt>2019-10-29  6.9.10-71 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> JPEG and JPG are aliases in coder security policy.</li>
  <li> Fixed numerous issues  posted to GitHub (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
<dt>2019-10-27  6.9.10-70 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-70, GIT revision 14970:4200095:20191027.</li>
<dt>2019-10-27  6.9.10-70 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous issues  posted to GitHub (reference    https://github.com/ImageMagick/ImageMagick/issues).<dt>2019-10-27  6.9.10-70 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-70, GIT revision 14970:4200095:20191027.</li>
<dt>2019-10-27  6.9.10-70 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous issues  posted to GitHub (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
<dt>2019-10-24  6.9.10-69 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-69, GIT revision 14962:03a9bac:20191024</li>
<dt>2019-10-06  6.9.10-69 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous issues  posted to GitHub (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
  <li> Support trim:background-color define for -trim option</li>
<dt>2019-10-05  6.9.10-68 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-68, GIT revision 14874:eb58b7e:20191005.</li>
<dt>2019-09-30  6.9.10-68 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support animated WebP encoding/decoding (reference    https://github.com/ImageMagick/ImageMagick/pull/1708).</li>
  <li> Text stroke cut off (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=36829).</li>
<dt>2019-09-29  6.9.10-67 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-67, GIT revision 14844:2a2c1b1:20190929.</li>
<dt>2019-09-28  6.9.10-67 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> line endings renedered as empty boxes (reference    https://github.com/ImageMagick/ImageMagick/issues/1704).</li>
<dt>2019-09-21  6.9.10-66 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-66, GIT revision 14834:9b20f2e:20190921.</li>
<dt>2019-09-20  6.9.10-66 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support compound statements in the FX while() expression (reference    https://github.com/ImageMagick/ImageMagick/issues/1701).</li>
<dt>2019-09-14  6.9.10-65 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-65, GIT revision 14829:1a6dc73:20190915/</li>
<dt>2019-09-09  6.9.10-65 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Eliminate fault when trace delegate is not available.</li>
  <li> Properly distinquish linear and non-linear gray colorspaces (reference    https://github.com/ImageMagick/ImageMagick/issues/1680).</li>
<dt>2019-09-07  6.9.10-64 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-64, GIT revision 14812:b27c543:20190907.</li>
<dt>2019-09-02  6.9.10-64 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support XPM symbolic (reference    https://github.com/ImageMagick/ImageMagick/issues/1684).</li>
<dt>2019-08-31  6.9.10-63 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-63, GIT revision 14796:9b9fba4:20190831.</li>
<dt>2019-08-24  6.9.10-63 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Properly identify the DNG and AI image format (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=36581).</li>
<dt>2019-08-23  6.9.10-62 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-62, GIT revision 14779:2da539a:20190823.</li>
<dt>2019-08-19  6.9.10-62 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Conditionally compile call to AcquireCLocale() (reference    https://github.com/ImageMagick/ImageMagick/issues/1669).</li>
  <li> More robust support for converting bitmap to vector.</li>
<dt>2019-08-16  6.9.10-61 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-61, GIT revision 14757:36133aa:20190816.</li>
<dt>2019-08-12  6.9.10-61 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed bug when writing MPC to PNG (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=36518).</li>
<dt>2019-08-10  6.9.10-60 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-60, GIT revision 14745:ce6bac3:20190810.</li>
<dt>2019-08-07  6.9.10-60 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Enable reading EXR image file from stdin.</li>
<dt>2019-08-03  6.9.10-59 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-59, GIT revision 14730:b2d457b:20190803.</li>
<dt>2019-08-01  6.9.10-59 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Module is a reserved keyword for C++ 20 (reference    https://github.com/ImageMagick/ImageMagick/issues/1650).</li>
<dt>2019-07-29  6.9.10-58 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-58, GIT revision 14723:fffbce8:20190729.</li>
<dt>2019-07-27  6.9.10-58 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Improve GetNextToken() performance.</li>
<dt>2019-07-26  6.9.10-57 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-57, GIT revision 14712:94d15b7:20190726.</li>
<dt>2019-07-22  6.9.10-57 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Heap-buffer-overflow in Postscript coder (reference    https://github.com/ImageMagick/ImageMagick/issues/1644).</li>
  <li> Correction to the ModulusAdd and ModulusSubtract composite op (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=36413).</li>
<dt>2019-07-20  6.9.10-56 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-56, GIT revision 14704:d0be203:20190720.</li>
<dt>2019-07-20  6.9.10-56 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Converting from PDF to PBM inverts the image (reference    https://github.com/ImageMagick/ImageMagick/issues/1643).</li>
<dt>2019-07-18  6.9.10-55 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-55, GIT revision 14700:faac202:20190718.</li>
<dt>2019-07-08  6.9.10-55 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Heap-buffer overflow (reference    https://github.com/ImageMagick/ImageMagick/issues/1641).</li>
  <li> PerlMagick test suite passes again (reference    https://github.com/ImageMagick/ImageMagick/issues/1640).</li>
<dt>2019-07-16  6.9.10-54 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-54, GIT revision 14684:41399a3:20190716</li>
<dt>2019-07-08  6.9.10-54 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Avoid divide by zero (reference    https://github.com/ImageMagick/ImageMagick/issues/1629).</li>
  <li> introducing MagickLevelImageColors() MagickWand method.</li>
  <li> Transient problem with text placement with gravity (reference    https://github.com/ImageMagick/ImageMagick/issues/1633).</li>
<dt>2019-07-05  6.9.10-53 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-53, GIT revision 14625:70fb1c6:20190705.</li>
<dt>2019-07-05  6.9.10-53 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Coder heic.c build failure  (reference    https://github.com/ImageMagick/ImageMagick6/issues/50).</li>
<dt>2019-07-05  6.9.10-52 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-52, GIT revision 14623:672ff6a:20190705.</li>
<dt>2019-07-01  6.9.10-52 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Eliminate buffer overflow in TranslateEvent() (reference    https://github.com/ImageMagick/ImageMagick/issues/1621).</li>
  <li> Fix -fx parsing issue (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=36314).</li>
<dt>2019-06-30  6.9.10-51 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-51, GIT revision 14607:cec35fb:20190630.</li>
<dt>2019-06-24  6.9.10-51 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Clone rather than copy X window name/icon.</li>
  <li> Optimize PDF reader.</li>
<dt>2019-06-23  6.9.10-50 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-50, GIT revision 14583:598f03b:20190623</li>
<dt>2019-06-16  6.9.10-50 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Heap-buffer-overflow in MagickCore/fourier.c (reference    https://github.com/ImageMagick/ImageMagick/issues/1588).</li>
  <li> Fixed a number of issues (reference    https://imagemagick.org/discourse-server//viewforum.html?f=3).</li>
  <li> Fixed a number of issues (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
<dt>2019-06-08  6.9.10-49 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-49, GIT revision 14530:19dcf6f:20190608</li>
<dt>2019-06-04  6.9.10-49 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Use user defined allocator instead of `malloc` (reference    https://github.com/ImageMagick/ImageMagick6/pull/49/).</li>
  <li> Add static decorator to accelerator kernels (reference    https://github.com/ImageMagick/ImageMagick/issues/1366).</li>
<dt>2019-05-26  6.9.10-47 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-47, GIT revision 14507:321f99ca6:20190526</li>
<dt>2019-05-19  6.9.10-47 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support 16 and 32 bit tiled float TIFF images.</li>
  <li> Text improvements to the internal SVG renderer.</li>
<dt>2019-05-14  6.9.10-46 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-46, GIT revision 14492:fb2f64950:20190518</li>
<dt>2019-05-14  6.9.10-46 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Builds under MacOS X and FreeBSD works again.</li>
  <li> Return HEIC images in the sRGB colorspace.</li>
<dt>2019-05-12  6.9.10-45 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-45, GIT revision 14473:2116be83b:20190512</li>
<dt>2019-05-06  6.9.10-45 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed a number of issues (reference    https://imagemagick.org/discourse-server//viewforum.html?f=3).</li>
  <li> Fixed a number of issues (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
<dt>2019-05-03  6.9.10-44 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-44, GIT revision 14449:d077c2e58:20190503</li>
<dt>2019-05-03  6.9.10-44 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed a number of issues (reference    https://imagemagick.org/discourse-server//viewforum.html?f=3).</li>
  <li> Fixed a number of issues (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
<dt>2019-05-01  6.9.10-43 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-43, GIT revision 14444:1580c66ba:20190502</li>
<dt>2019-05-01  6.9.10-43 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed a number of issues (reference    https://imagemagick.org/discourse-server//viewforum.html?f=3).</li>
  <li> Fixed a number of issues (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
<dt>2019-04-29  6.9.10-42 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-42, GIT revision 14417:929367bd1:20190424</li>
<dt>2019-04-20  6.9.10-42 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed a number of issues (reference    https://imagemagick.org/discourse-server//viewforum.html?f=3).</li>
  <li> Fixed a number of issues (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
<dt>2019-04-19  6.9.10-41 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-41, GIT revision 14390:6d46f0a04:20190420</li>
<dt>2019-04-14  6.9.10-41 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed a number of issues (reference    https://imagemagick.org/discourse-server//viewforum.html?f=3).</li>
  <li> Fixed a number of issues (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
  <li> Honor SOURCE_DATE_EPOCH environment variable (reference    https://github.com/ImageMagick/ImageMagick/pull/1496/).</li>
  <li> Standardize on UTC time for any image format timestamp.</li>
<dt>2019-04-12  6.9.10-40 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-40, GIT revision 14362:7e503e231:20190412</li>
<dt>2019-04-10  6.9.10-40 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed a number of issues (reference    https://imagemagick.org/discourse-server//viewforum.html?f=3).</li>
  <li> Fixed a number of issues (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
<dt>2019-04-07  6.9.10-39 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-39, GIT revision 14346:6b5a9cc87:20190406</li>
<dt>2019-04-06  6.9.10-39 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The -preview raise option now returns expected results.</li>
  <li> Initialise ghostscript instances with NULL (reference    https://github.com/ImageMagick/ImageMagick/pull/1538).</li>
<dt>2019-04-06  6.9.10-38 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-38, GIT revision 14341:09f7569e8:20190406</li>
<dt>2019-04-06  6.0.10-38 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Modulo off by one patch for -virtual-pixel option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=35789)</li>
<dt>2019-04-03  6.9.10-37 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-37, GIT revision 14329:0dc57c67b:20190403</li>
<dt>2019-04-03  6.0.10-37 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed -virtual-pixel option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=35789)</li>
<dt>2019-03-31  6.9.10-36 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-36, GIT revision 14321:3b6ba12f4:20190331</li>
<dt>2019-03-27  6.9.10-36 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed a number of issues (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
<dt>2019-03-24  6.9.10-35 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-35, GIT revision 14298:633d5a989:20190324</li>
<dt>2019-03-23  6.9.10-35 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed a number of issues (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
<dt>2019-03-15  6.9.10-34 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-34, GIT revision 14276:b0b2799a2:20190315</li>
<dt>2019-03-11  6.9.10-34 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Associate one lock with each resource.</li>
  <li> Report exception if opening TIFF did not work ou.</li>
  <li> Fixed numerous use of uninitialized values, integer overflow, memory    exceeded, and timeouts (credit to OSS Fuzz).</li>
<dt>2019-03-10  6.9.10-33 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-33, GIT revision 14266:fb9c848b1:20190310</li>
<dt>2019-03-06  6.9.10-33 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix SVG conversion infinite loop (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=35591).</li>
  <li> Initialize primitive drawing structure after resizing.</li>
<dt>2019-03-05  6.9.10-32 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-32, GIT revision 14250:4d956d2ac:20190305</li>
<dt>2019-03-05  6.9.10-32 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix out-of-boundary LocaleLowerCase() @    https://github.com/ImageMagick/ImageMagick/issues/1495</li>
<dt>2019-03-04  6.9.10-31 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-31, GIT revision 14246:6de0b115c:20190304</li>
<dt>2019-03-04  6.9.10-31 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> -trim is no longer sensitive to the image virtual canvas.</li>
<dt>2019-03-03  6.9.10-30 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-30, GIT revision 14240:d62e5fd8b:20190303</li>
<dt>2019-03-03  6.9.10-30 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support define to remove additional background from an image during a    trim, e.g. -fuzz 5% -define trim:percent-background=0% -trim.</li>
<dt>2019-02-28  6.9.10-29 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-29, GIT revision 14235:eee85cacc:20190228</li>
<dt>2019-02-28  6.9.10-29 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed a number of issues (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
  <li> Fixed numerous use of uninitialized values, integer overflow, memory    exceeded, and timeouts (credit to OSS Fuzz).</li>
<dt>2019-02-18  6.9.10-28 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-28, GIT revision 14227:580d9f9a6:20190218</li>
<dt>2019-02-12  6.9.10-28 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed a number of issues (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
<dt>2019-02-09  6.9.10-27 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-27, GIT revision 14197:4e00248f4:20190209</li>
<dt>2019-02-09  6.9.10-27 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Mod patch to properly handle subimage ranges (e.g. image.gif[2-3]).</li>
<dt>2019-02-03  6.9.10-27 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-27, GIT revision 14180:153da6bd6:20190203</li>
<dt>2019-02-02  6.9.10-26 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed a number of issues (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
<dt>2019-01-27  6.9.10-25 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-25, GIT revision 14167:183ec9d88:20190127</li>
<dt>2019-01-19  6.9.10-25 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Eliminate spurious font warning (reference    https://github.com/ImageMagick/ImageMagick/issues/1458).</li>
  <li> Support HEIC EXIF &amp; XMP profiles.</li>
<dt>2019-01-12  6.9.10-24 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-24, GIT revision 14130:70079ed45:20190112</li>
<dt>2019-01-08  6.9.10-24 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support -clahe option real clip limit (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=35292).</li>
  <li> ShadeImage() can return negative pixels, clamp to range (reference    https://github.com/ImageMagick/ImageMagick/issues/1319).</li>
  <li> Annotate with negative offsets no longer renders slanted text.</li>
<dt>2019-01-01  6.9.10-23 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-23, GIT revision 14106:df6887c14:20190101</li>
<dt>2019-01-01  6.9.10-23 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> CacheInfo destructor must be aligned in DestroyPixelStream().</li>
<dt>2018-12-30  6.9.10-22 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-22, GIT revision 14098:7054d2569:20181230</li>
<dt>2018-12-29  6.9.10-22 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support negative rotations in a geometry (e.g. -10x-10+10+10).</li>
  <li> Return expected canvas offset after a crop with gravity.</li>
  <li> Fix HEIC coder compile exception.</li>
<dt>2018-12-27  6.9.10-21 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-21, GIT revision 14088:1961662c1:20181227</li>
<dt>2018-12-27  6.9.10-21 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Check to ensure SeekBlob() offset can be represented in an off_t.</li>
<dt>2018-12-23  6.9.10-20 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-20, GIT revision 14079:0ce665411:20181223</li>
<dt>2018-12-19  6.9.10-19 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-19, GIT revision 14069:0ca60eda0:20181219</li>
<dt>2018-12-18  6.9.10-18 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-18, GIT revision 14061:2f9ab1cea:20181218</li>
<dt>2018-12-18  6.9.10-18 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Revert MagickDoubleType patch to avoid i386 ABI break (reference    https://github.com/ImageMagick/ImageMagick6/issues/31);</li>
<dt>2018-12-17  6.9.10-17 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-17, GIT revision 14057:667544c39:20181217</li>
<dt>2018-12-10  6.9.10-16 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-16, GIT revision 14039:096b7210f:20181210</li>
<dt>2018-12-02  6.9.10-16 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Check for modulo underflow.</li>
  <li> Change SVG default DPI to 86 from 90 to meet recommendation of SVG2 &amp; CSS.</li>
<dt>2018-12-01  6.9.10-15 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-15, GIT revision 14011:ddd5bd95d:20181201</li>
<dt>2018-10-23  6.9.10-14 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-14, GIT revision 13943:5f6f9f0be:20181023</li>
<dt>2018-10-21  6.9.10-13 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-13, GIT revision 13936:2379b24b8:20181021</li>
<dt>2018-09-16  6.9.10-12 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-12, GIT revision 13886:d2819c281:20180923</li>
<dt>2018-09-08  6.9.10-12 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous use of uninitialized values, integer overflow, memory    exceeded, and timeouts (credit to OSS Fuzz).</li>
<dt>2018-08-27  6.9.10-11 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-11, GIT revision 13806:cbb489883:20180828</li>
<dt>2018-08-15  6.9.10-11 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous use of uninitialized values, integer overflow, memory    exceeded, and timeouts (credit to OSS Fuzz).</li>
  <li> Add support for "module" security policy.</li>
<dt>2018-08-13  6.9.10-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-10, GIT revision 13743:8f8009715:20180813</li>
<dt>2018-08-12  6.9.10-10 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Restored thread support for the HEIC coder.</li>
<dt>2018-08-08  6.9.10-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> ThumbnailImage function no longer reveals sensitive information (reference    https://github.com/ImageMagick/ImageMagick/issues/1243).</li>
<dt>2018-08-06  6.9.10-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-9, GIT revision 13721:6fb59a954:20180805.</li>
<dt>2018-07-24  6.9.10-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> XBM coder leaves the hex image data uninitialized if hex value of the    pixel is negative.</li>
  <li> More improvements to SVG text handling.</li>
<dt>2018-07-23  6.9.10-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-8, GIT revision 13693:88aeaf9d9:20180723.</li>
<dt>2018-07-20  6.9.10-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Non-HDRI ScaleLongToQuantum() private method no longer adds a half interval.</li>
  <li> Fixed memset() negative-size-param (reference    https://github.com/ImageMagick/ImageMagick/issues/1217).</li>
<dt>2018-07-16  6.9.10-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-7, GIT revision 13676:dab6babe2:20180716.</li>
<dt>2018-07-15  6.9.10-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous use of uninitialized values, integer overflow, memory    exceeded, and timeouts (credit to OSS Fuzz).</li>
<dt>2018-07-08  6.9.10-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-6, GIT revision 13660:181df547c:20180708.</li>
<dt>2018-07-08  6.9.10-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Improve SVG support for tspan element.</li>
  <li> Add support for -fx image.extent.</li>
<dt>2018-07-04  6.9.10-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-5, GIT revision 13643:fe71cc8b2:20180704.</li>
<dt>2018-07-04  6.9.10-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed a few potential memory leaks (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
<dt>2018-07-02  6.9.10-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-4, GIT revision 13635:c1c026715:20180702.</li>
<dt>2018-06-28  6.9.10-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Small tweaks to compile under Cygwin.</li>
  <li> Fixed numerous use of uninitialized values, integer overflow, memory    exceeded, and timeouts (credit to OSS Fuzz).</li>
  <li> Support %B property, the image file size without any decorations.</li>
<dt>2018-06-24  6.9.10-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-3, GIT revision 13618:69366aab3:20180624.</li>
<dt>2018-06-18  6.9.10-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> More rovust SVG text handling.</li>
<dt>2018-06-16  6.9.10-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-1, GIT revision 13595:dafb03062:20180616.</li>
<dt>2018-06-16  6.9.10-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous use of uninitialized values, integer overflow, memory    exceeded, and timeouts (credit to OSS Fuzz).</li>
  <li> Fixed an issue with stroke and label: (reference</li>
<dt>2018-06-12  6.9.10-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.10-0, GIT revision 13585:82d7dbe0b:20180612.</li>
<dt>2018-06-11  6.9.10-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous use of uninitialized values, integer overflow, memory    exceeded, and timeouts (credit to OSS Fuzz).</li>
<dt>2018-06-11  6.9.9-51 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-51, GIT revision 13574:a58324488:20180611.</li>
<dt>2018-06-06  6.9.9-51 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous use of uninitialized values, integer overflow, memory    exceeded, and timeouts (credit to OSS Fuzz).</li>
<dt>2018-06-02  6.9.9-50 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-50, GIT revision 13539:2ae91d95c:20180602.</li>
<dt>2018-05-30  6.9.9-50 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Heap buffer overflow fix (reference    https://github.com/ImageMagick/ImageMagick/issues/1156).</li>
  <li> Fixed numerous use of uninitialized values, integer overflow, memory    exceeded, and timeouts (credit to OSS Fuzz).</li>
<dt>2018-05-29  6.9.9-49 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-49, GIT revision 13521:00f535ee9:20180529.</li>
<dt>2018-05-29  6.9.9-49 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Properly initialize SVG color style.</li>
<dt>2018-05-28  6.9.9-48 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-47, GIT revision 13518:5cef106dc:20180528.</li>
<dt>2018-05-28  6.9.9-48 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> A SVG rectangle with a width and height of 1, is a point.</li>
<dt>2018-05-21  6.9.9-47 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-47, GIT revision 13489:3ff167343:20180521.</li>
<dt>2018-05-21  6.9.9-47 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed memory corruption for MVG paths.</li>
<dt>2018-05-20  6.9.9-46 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-46, GIT revision 13483:ced03dfb8:20180520.</li>
<dt>2018-05-19  6.9.9-46 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous use of uninitialized values, integer overflow, memory    exceeded, and timeouts (credit to OSS Fuzz).</li>
  <li> Fixed errant 'not enough pixel data' (reference    https://github.com/ImageMagick/ImageMagick/issues/1133).</li>
<dt>2018-05-16  6.9.9-45 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-45, GIT revision 13456:e027e2bb4:20180513.</li>
<dt>2018-05-16  6.9.9-45 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous use of uninitialized values, integer overflow, memory    exceeded, and timeouts (credit to OSS Fuzz).</li>
<dt>2018-05-13  6.9.9-44 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-44, GIT revision 13456:e027e2bb4:20180513.</li>
<dt>2018-05-03  6.9.9-43 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous use of uninitialized values, integer overflow, memory    exceeded, and timeouts (credit to OSS Fuzz).</li>
<dt>2018-05-01  6.9.9-42 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-42, GIT revision 13394:69b3ddf2e:20180501.</li>
<dt>2018-05-01  6.9.9-42  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Missing break when checking "compliance" element.</li>
<dt>2018-04-30  6.9.9-41 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-41, GIT revision 13379:e819f52a2:20180430.</li>
<dt>2018-03-26  6.9.9-41 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous use of uninitialized values, integer overflow, memory</li>
<dt>2018-03-24  6.9.9-40 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-40, GIT revision 13136:8b7024499:20180325.</li>
<dt>2018-03-21  6.9.9-40 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous use of uninitialized values, integer overflow, memory    exceeded, and timeouts (credit to OSS Fuzz).</li>
<dt>2018-03-18  6.9.9-39 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-39, GIT revision 13067:ae2245e56:20180318.</li>
<dt>2018-03-17  6.9.9-39 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous use of uninitialized values, integer overflow, memory    exceeded, and timeouts (credit to OSS Fuzz).</li>
<dt>2018-03-11  6.9.9-38 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-38, GIT revision 13009:9f53c16ef:20180311.</li>
<dt>2018-03-09  6.9.9-38 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous use of uninitialized values, integer overflow, memory    exceeded, and timeouts (credit to OSS Fuzz).</li>
<dt>2018-03-04  6.9.9-37 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-37, GIT revision 12940:93dff0b31:20180304.</li>
<dt>2018-03-04  6.9.9-37 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous use of uninitialized values, integer overflow, memory    exceeded, and timeouts (credit to OSS Fuzz).</li>
<dt>2018-02-25  6.9.9-36 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-36, GIT revision 12898:fad4ecb37:20180225.</li>
<dt>2018-02-19  6.9.9-36 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Do not refer to page in OptimizeLayerFrames (reference    https://github.com/ImageMagick/ImageMagick/pull/987).</li>
  <li> PerlMagick unit tests pass again.</li>
  <li> Fixed numerous use of uninitialized values, integer overflow,    memory exceeded, and timeouts (credit to OSS Fuzz).</li>
<dt>2018-02-18  6.9.9-35 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-35, GIT revision 12843:46d8215af:20180218.</li>
<dt>2018-02-09  6.9.9-35 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Add support for reading the HEIC image format to the Windows build.</li>
<dt>2018-01-23  6.9.9-35 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous use of uninitialized values, integer overflow,    memory exceeded, and timeouts (credit to OSS Fuzz).</li>
  <li> Add list-length policy to limit the maximum image sequence length.</li>
<dt>2018-01-22  6.9.9-34 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-34, GIT revision 12574:5370ede60:20180122.</li>
<dt>2018-01-06  6.9.9-34 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support aspect ratio geometry, e.g. -crop 3:2.</li>
  <li> Add support for reading the HEIC image format (reference    https://github.com/ImageMagick/ImageMagick/issues/507).</li>
  <li> Fix IM build when HEIC is enabled.</li>
  <li> Fixed numerous memory leaks, credit to OSS Fuzz.</li>
<dt>2018-01-06  6.9.9-33 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-33, GIT revision 12491:5c40f3a88:20180106.</li>
<dt>2018-01-06  6.9.9-33 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Fix some enum values in the OpenCL code.</li>
<dt>2018-01-06  6.9.9-32 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-32, GIT revision 12489:33a04d3e5:20180105.</li>
<dt>2018-01-05  6.9.9-32 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous memory leaks (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
<dt>2018-01-01  6.9.9-31 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-31, GIT revision 12477:7701c8ade:20180101.</li>
<dt>2017-12-29  6.9.9-31 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Check for webpmux library version 0.4.4 (reference    https://github.com/ImageMagick/ImageMagick/issues/896).</li>
<dt>2017-12-28  6.9.9-30 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-30, GIT revision 12462:c2c8f1ab2:20171228.</li>
<dt>2017-12-28  6.9.9-30 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix error reading from pipe under Windows (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=33288).</li>
<dt>2017-12-26  6.9.9-29 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-29, GIT revision 12459:90e2b0782:20171227.</li>
<dt>2017-12-26  6.9.9-29 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix heap use after free error (reference    https://github.com/ImageMagick/ImageMagick/issues/918).</li>
<dt>2017-12-24  6.9.9-28 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-28, GIT revision 12438:b01f6cc52:20171225.</li>
<dt>2017-12-18  6.9.9-28 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix error reading multi-layer XCF image file.</li>
  <li> Fix possible stack overflow in WEBP reader (reference    https://github.com/ImageMagick/ImageMagick/issues/907)</li>
  <li> Fixed numerous memory leaks (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
<dt>2017-12-16  6.9.9-27 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-27, GIT revision 12369:82d92312a:20171216.</li>
<dt>2017-12-08  6.9.9-27 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Overall standard deviation is the average of each pixel channel (reference    https://imagemagick.org/discourse-server//viewforum.html?f=3).</li>
<dt>2017-12-06  6.9.9-26 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-26, GIT revision 12341:8f0e0897b:20171205.</li>
<dt>2017-11-30  6.9.9-26 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support Stereo composite operator.</li>
  <li> Fix build failure with --without-modules (reference    https://github.com/ImageMagick/ImageMagick/issues/890).</li>
<dt>2017-11-30  6.9.9-25 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-25, GIT revision 12329:9a5a16a1d:20171130.</li>
<dt>2017-11-30  6.9.9-25 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix build failure with libraw 0.14.8 (reference    https://github.com/ImageMagick/ImageMagick/issues/888).</li>
<dt>2017-11-29  6.9.9-24 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-24, GIT revision 12324:5ef2c5a67:20171129.</li>
<dt>2017-11-17  6.9.9-24 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support HDRI color profile management.</li>
  <li> Don't delete in-memory blob when reading an image (reference    https://github.com/ImageMagick/ImageMagick/issues/886).</li>
<dt>2017-11-11  6.9.9-23 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-23, GIT revision 12245:6dea84616:20171111.</li>
<dt>2017-11-10  6.9.9-23 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Fixed initialization of OpenCL (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=33044).</li>
<dt>2017-11-05  6.9.9-22 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-22, GIT revision 12235:27954ec10:20171105.</li>
<dt>2017-11-03  6.9.9-22 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Fixed a problem with resource bookkeeping in AcquireMatrixInfo().</li>
<dt>2017-10-31  6.9.9-21 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-21, GIT revision 12218:43b16fff0:20171031.</li>
<dt>2017-10-29  6.9.9-21 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Encode JSON control characters (reference    https://github.com/ImageMagick/ImageMagick/issues/848).</li>
<dt>2017-10-15  6.9.9-20 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-20, GIT revision 12187:fff1bee84:20171015.</li>
<dt>2017-10-08  6.9.9-20 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Return expected results for a percent 0 -chop option argument (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=32806).</li>
  <li> Tweaks to OpenMP support within ImageMagick.</li>
<dt>2017-10-07  6.9.9-19 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-19, GIT revision 12151:be787b70d:20171007.</li>
<dt>2017-10-06  6.9.9-19 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Correct handling of GIF transparency (reference    https://github.com/ImageMagick/ImageMagick/issues/831).</li>
<dt>2017-10-04  6.9.9-18 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-18, GIT revision 12147:f18d78856:20171004.</li>
<dt>2017-10-02  6.9.9-18 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Resetting the magick_list_initialized boolean when needed (reference    https://github.com/ImageMagick/ImageMagick/pull/826).</li>
<dt>2017-10-01  6.9.9-17 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-17, GIT revision 12132:c19d58e90:20171001.</li>
<dt>2017-10-01  6.9.9-17 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix broken build (reference    https://github.com/ImageMagick/ImageMagick/issues/823).</li>
<dt>2017-10-01  6.9.9-16 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-16, GIT revision 12125:723b0aa6a:20171001.</li>
<dt>2017-09-28  6.9.9-16 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous memory leaks (reference    https://github.com/ImageMagick/ImageMagick/pull/763).</li>
  <li> Support URW-base35 fonts.</li>
<dt>2017-09-23  6.9.9-15 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-15, GIT revision 12079:839a14e43:20170923.</li>
<dt>2017-09-23  6.9.9-15 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous memory leaks (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
<dt>2017-09-17  6.9.9-14 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-14, GIT revision 12050:b9c9b5fe7:20170917.</li>
<dt>2017-09-17  6.9.9-14 ADLab of Venustech</dt>
  <li> Fixed numerous memory leaks (reference    https://github.com/ImageMagick/ImageMagick/pull/763).</li>
<dt>2017-09-15  6.9.9-14 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Stop poential leaks in the JNG decoder (reference:    https://github.com/ImageMagick/ImageMagick/issues/760).</li>
  <li> Maximum valid hour is 23, not 24, in the PNG tIME chunk, and maximum    valid minute is 59, not 60.</li>
<dt>2017-09-12  6.9.9-13 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-13, GIT revision 12008:9730b86ce:20170912.</li>
<dt>2017-09-11  6.9.9-13 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Use signed integer arithmetic to calculate timezone corrections (reference    https://github.com/ImageMagick/ImageMagick/issues/685).</li>
<dt>2017-09-09  6.9.9-12 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-12, GIT revision 11996:fca0f6e33:20170909.</li>
<dt>2017-09-07  6.9.9-12 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous memory leaks (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
  <li> The 'compare' difference image now respects the -fuzz option.</li>
<dt>2017-09-03  6.9.9-11 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-11, GIT revision 11969:a12fbb873:20170903.</li>
<dt>2017-08-28  6.9.9-11 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous memory leaks (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
  <li> Don't overwrite symbolic links when the shred policy is enabled.</li>
<dt>2017-08-27  6.9.9-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-10, GIT revision 11936:a8112a821:20170827.</li>
<dt>2017-08-26  6.9.9-10 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Fixed thread safety issue inside the pango and librsvg decoder    (reference: https://github.com/dlemstra/Magick.NET/issues/91).</li>
<dt>2017-08-20  6.9.9-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-9, GIT revision 11915:5205bda17:20170820.</li>
<dt>2017-08-18  6.6.9-9 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fixed bug with writing tIME chunk when timezone has a negative offset    (reference: https://github.com/ImageMagick/ImageMagick/issues/685).</li>
<dt>2017-08-18  6.9.9-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-8, GIT revision 11906:26078285f:20170818.</li>
<dt>2017-08-18  6.9.9-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous memory leaks (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
<dt>2017-08-12  6.9.9-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-7, GIT revision 11893:8c4c56a0e:20170812    (Windows binaries out of sync).</li>
<dt>2017-08-10  6.9.9-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-6, GIT revision 11886:af2b102db:20170810.</li>
<dt>2017-08-10  6.9.9-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous memory leaks (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
<dt>2017-08-10  6.9.9-6 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> tests/validate.c: Show the reason for failures in the test logs,    if available.</li>
<dt>2017-08-03  6.9.9-6 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Put UTC time in the PNG tIME chunk instead of local time (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=32447).</li>
<dt>2017-08-02  6.9.9-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-5, GIT revision 11858:7a555e53f:20170802.</li>
<dt>2017-08-01  6.9.9-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous memory leaks (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
<dt>2017-07-29  6.9.9-5 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Properly set image-&gt;colorspace in the PNG decoder (previously    it was setting image-&gt;gamma, but only setting image-&gt;colorspace    for grayscale and gray-alpha images.  Reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=32418).</li>
  <li> Fix improper use of NULL in the JNG decoder (CVE-2017-11750, Reference    https://github.com/ImageMagick/ImageMagick/issues/632).</li>
<dt>2017-07-29  6.9.9-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Off by one error for gradient coder (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=32416).</li>
<dt>2017-07-28  6.9.9-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-4, GIT revision 11833:4e81160d6:20170728.</li>
<dt>2017-07-25  6.9.9-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous memory leaks (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
  <li> coders/png.c: Initialized quantum_scanline to prevent a bad free    (reference https://github.com/ImageMagick/ImageMagick/issues/621).</li>
<dt>2017-07-24  6.9.9-4 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Removed write_chunk_from_profile() from coders/png.c because it    has not worked at least since version 6.7.6.</li>
  <li> Removed many redundant checks before RelinquishMagickMemory(),    which is safe to call with a NULL argument.</li>
  <li> Removed vpAg chunk write support (we are now writing caNv instead).</li>
  <li> coders/png.c: Initialized quantum_info to prevent memory leakage    (reference https://github.com/ImageMagick/ImageMagick/issues/582,    CVE-2017-11539).</li>
  <li> coders/png.c: fixed NULL dereference when trying to write an empty MNG    (CVE-2017-11522, reference    https://github.com/ImageMagick/ImageMagick/issues/586).</li>
<dt>2017-07-24  6.9.9-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-3, GIT revision 11809:2bd88257b:20170724.</li>
<dt>2017-07-23  6.9.9-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous memory leaks (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
<dt>2017-07-23  6.9.9-3 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fix memory leaks when reading a malformed JNG image:    https://github.com/ImageMagick/ImageMagick/issues/600 (CVE-2017-13141),    https://github.com/ImageMagick/ImageMagick/issues/602 (CVE-2017-12565).</li>
<dt>2017-07-22  6.9.9-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-2, GIT revision 11786:21b23bf09:20170722.</li>
<dt>2017-07-22  6.9.9-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> composite -dissolve works again reference    https://github.com/ImageMagick/ImageMagick/issues/597).</li>
<dt>2017-07-21  6.9.9-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-1, GIT revision 11782:75f7e994e:20170721.</li>
<dt>2017-07-19  6.9.9-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous memory leaks (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
<dt>2017-07-15  6.9.9-1 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Don't write a hex-encoded Exif profile when writing the eXIf chunk.</li>
  <li> Added caNv, eXIf, and pHYs to the list of PNG chunks to be removed    by the "-strip" option.</li>
<dt>2017-07-15  6.9.9-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.9-0, GIT revision 11738:8903861b2:20170715.</li>
<dt>2017-07-13  6.9.9-0 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Implemented PNG eXIf chunk support.</li>
<dt>2017-07-08  6.9.9-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed numerous memory leaks (reference    https://github.com/ImageMagick/ImageMagick/issues).</li>
  <li> Don't use variable float_t / double_t, bump SO (reference    https://github.com/ImageMagick/ImageMagick/issues/510).</li>
  <li> Support DNG images with libraw delegate library.</li>
<dt>2017-06-10  6.9.8-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.8-10, GIT revision 11637:eb6f363:20170610.</li>
<dt>2017-06-10  6.9.8-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Introduce SetMagickSecurityPolicy() (MagickCore) and    MagickSetSecurityPolicy() (MagickWand) to set the ImageMagick security    policy (reference https://github.com/ImageMagick/ImageMagick/issues/407).</li>
<dt>2017-06-02  6.9.8-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.8-9, GIT revision 11625:91bb35e:20170602.</li>
<dt>2017-06-02  6.9.8-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix choppy bitmap font rendering (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=32071).</li>
  <li> Add support for 'hex:' property.</li>
<dt>2017-05-28  6.9.8-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.8-8, GIT revision 11606:8b67333:20170528.</li>
<dt>2017-05-28  6.9.8-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Transient error validating the JPEG-2000 image format (reference    https://github.com/ImageMagick/ImageMagick/issues/501).</li>
  <li> Properly allocate DCM image colormap (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=32063).</li>
<dt>2017-05-26  6.9.8-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.8-7, GIT revision 11598:07d1dee:20170526.</li>
<dt>2017-05-23  6.9.8-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Improper allocation of memory for IM instances without threads (reference    	  https://github.com/ImageMagick/ImageMagick/issues/497).</li>
  <li> Delete corrupt image from list (reference    https://github.com/ImageMagick/ImageMagick/issues/500).</li>
<dt>2017-05-19  6.9.8-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.8-6, GIT revision 11590:7ce2d38:20170519.</li>
<dt>2017-05-15  6.9.8-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support various image operators for the compare utility (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=31938).</li>
<dt>2017-05-12  6.9.8-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.8-5, GIT revision 11575:186b15d:20170512.</li>
<dt>2017-05-10  6.9.8-5 John Cupitt &lt;jcupitt@gmail.com&gt;</dt>
  <li> Revise DICOM window and rescale handling (reference    https://github.com/ImageMagick/ImageMagick/pull/484)</li>
<dt>2017-05-08  6.9.8-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix transient PDF bug (reference    https://github.com/ImageMagick/ImageMagick/issues/463).</li>
  <li> Check for EOF conditions for RLE image format.</li>
  <li> Reset histogram page geometry (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=31920).</li>
<dt>2017-04-24  6.9.8-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.8-4, GIT revision 11521:d7433aa:20170424.</li>
<dt>2017-03-26  6.9.8-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Minimize buffer copies to improve OpenCL performance.</li>
  <li> Patch a PCD writer problem, dark pixels (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=3164).</li>
  <li> Support ICC based PDF's (reference    https://github.com/ImageMagick/ImageMagick/issues/417).</li>
<dt>2017-03-24  6.9.8-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.8-3, GIT revision 11444:3f523e5:20170324.</li>
<dt>2017-03-20  6.9.8-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> MagickWand-config, use --cflags, not --clags (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=31602).</li>
  <li> Respect -loop option for animate -window (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=31619).</li>
<dt>2017-03-18  6.9.8-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.8-2, GIT revision 11436:a912791:20170318.</li>
<dt>2017-03-14  6.9.8-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support namespaces for the security policy.</li>
<dt>2017-03-11  6.9.8-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.8-1.</li>
<dt>2017-03-03  6.9.8-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.8-0, GIT revision 11408:da91a7c:20170311.</li>
<dt>2017-03-06  6.9.8-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Respect throttle policy (reference    https://github.com/ImageMagick/ImageMagick/issues/393).</li>
  <li> Support the -authenticate option for PDF (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=31530).</li>
<dt>2017-03-03  6.9.7-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.7-10, GIT revision 11396:44b1bc6:20170303.</li>
<dt>2017-02-21  6.9.7-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix Spurious memory allocation message (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=31438).</li>
  <li> Identical images should return inf for PSNR (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=31487).</li>
<dt>2017-02-18  6.9.7-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.7-9, GIT revision 11371:126c7c9:20170218.</li>
<dt>2017-02-18  6.9.7-9 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Fixed fd leak for webp coder (reference    https://github.com/ImageMagick/ImageMagick/pull/382)</li>
<dt>2017-02-15  6.9.7-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Prevent random pixel data for corrupt JPEG image (bug report from    Hirokazu Moriguchi, Sony).</li>
  <li> Support pixel-cache and shred security policies.</li>
<dt>2017-02-12  6.9.7-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.7-8.</li>
<dt>2017-02-09  6.9.7-8 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Fixed memory leak when creating nested exceptions in Magick++ (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=23&amp;p=142634)</li>
<dt>2017-02-06  6.9.7-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Eliminate bogus assertion (reference    https://github.com/ImageMagick/ImageMagick/issues/372).</li>
  <li> Unbreak build without JPEG support (reference    https://github.com/ImageMagick/ImageMagick/pull/373).</li>
<dt>2017-02-04  6.9.7-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.7-7, GIT revision 11338:cc980d1:20170204.</li>
<dt>2017-01-28  6.9.7-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Sanitize comments that include braces for the MIFF image format (reference    https://github.com/ImageMagick/ImageMagick/issues/368).</li>
<dt>2017-01-27  6.9.7-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.7-6, GIT revision 11327:6b2f052:20170127.</li>
<dt>2017-01-27  6.9.7-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Uninitialized data in MAT image format (reference    https://github.com/ImageMagick/ImageMagick/issues/362).</li>
<dt>2017-01-22  6.9.7-6 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Renamed read_vpag_chunk_callback() function to png_user_chunk_callback()    in coders/png.c</li>
  <li> Implemented a private PNG caNv (canvas) chunk for remembering the    original dimensions and offsets when an image is cropped.  Previously    we used the oFFs and vpAg chunks for this purpose, but this had potential    conflicts with other applications that also use the oFFs chunk.</li>
  <li> coders/png.c: Added support for a proposed new PNG chunk (exIf    read-write, eXIf read-only) that is currently being discussed on the    png-mng-misc at lists.sourceforge.net mailing list.</li>
<dt>2017-01-14  6.9.7-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.7-5, GIT revision 11306:cd9b64b:20170121.</li>
<dt>2017-01-18  6.9.7-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Don't set background for transparent tiled images (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=31210).</li>
<dt>2017-01-14  6.9.7-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.7-4, GIT revision 11293:c359058:20170114.</li>
<dt>2017-01-14  6.9.7-4 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Added support for RGB555, RGB565, ARGB4444 and ARGB1555 to the    BMP encoder (reference    https://github.com/ImageMagick/ImageMagick/issues/344).</li>
<dt>2017-01-10  6.9.7-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Recognize XML policy closing tags (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=31182).</li>
  <li> Fix memory leak in MPC image format.</li>
<dt>2017-01-07  6.9.7-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.7-3, GIT revision 11280:7d65a81:20170107.</li>
<dt>2017-01-04  6.9.7-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Increase memory allocation for TIFF pixels (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=31161).</li>
<dt>2017-01-03  6.9.7-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.7-2, GIT revision 11274:2faf8d7:20170103.</li>
<dt>2017-01-02  6.9.7-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Validation unit test for MNG works again.</li>
<dt>2016-12-31  6.9.7-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.7-1, GIT revision 11265:2b38406:20161231.</li>
<dt>2016-12-26  6.9.7-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Initialize draw_info alpha member to OpaqueAlpha.</li>
  <li> The TMPDIR environment variable has precedence over P_tmpdir (reference    https://github.com/ImageMagick/ImageMagick/issues/337).</li>
  <li> Monochrome images no longer have inverted colors (reference    https://github.com/ImageMagick/ImageMagick/issues/332).</li>
<dt>2016-12-10  6.9.7-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.7-0, GIT revision 11230:d5e8abc:20161218.</li>
<dt>2016-12-14  6.9.7-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Bump release to 6.9.7 to ensure coinstallability of old and new library.</li>
  <li> Lazily evaluate the image storage class and colorspace to prevent cache    allocation when pinging an image.</li>
  <li> Do not close path for linejoins of round (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=31039).</li>
<dt>2016-12-10  6.9.6-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.6-8, GIT revision 11219:11d48fe:20161210.</li>
<dt>2016-12-07  6.9.6-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Set colorspace to sRGB if -append has non-homogenous colorspaces (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=29105).</li>
  <li> Respect connected-components:area-threshold define (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=31006).</li>
  <li> Return correct offset for negative index for -fx option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=31019).</li>
  <li> ABI breakage requires an SO bump (reference    https://github.com/ImageMagick/ImageMagick/issues/320).</li>
  <li> Fixed improper scaling of certain FITS images (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=31028).</li>
  <li> Properly center text label (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=31027).</li>
<dt>2016-12-05  6.9.6-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.6-7, GIT revision 11188:668b60c:20161205.</li>
<dt>2016-12-02  6.9.6-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix possible buffer overflow when writing compressed TIFFS (vulnerability    report from Cisco Talos, CVE-2016-8707).</li>
<dt>2016-11-25  6.9.6-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.6-6, GIT revision 11169:94edafc:20161125.</li>
<dt>2016-11-20  6.9.6-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> If a convenient line break is not found, force it for caption: (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=30887).</li>
  <li> Off by 1 error when computing the standard deviation (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=30866).</li>
  <li> Apply Debian patches, (reference    https://github.com/ImageMagick/ImageMagick/issues/304).</li>
  <li> Permit EPT images with just a TIFF or EPS image, not both (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=30921).</li>
  <li> The -clone option no longer leak memory.</li>
<dt>2016-11-15  6.9.6-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.6-5, GIT revision 11139:5175b3c:20161115.</li>
<dt>2016-11-10  6.9.6-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Web pages were broken when we moved to HTTPS protocol.</li>
  <li> Restore -sharpen / -convolve options to work with CMYK (reference    https://github.com/ImageMagick/ImageMagick/issues/299).</li>
<dt>2016-11-08  6.9.6-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.6-4, GIT revision 11130:d7a7e4d:20161108.</li>
<dt>2016-11-01  6.9.6-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Off by one memory allocation (reference    https://github.com/ImageMagick/ImageMagick/issues/296).</li>
  <li> Prevent fault in MSL interpreter (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=30797).</li>
<dt>2016-10-30  6.9.6-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.6-3, GIT revision 11117:e857a26:20161030.</li>
<dt>2016-10-16  6.9.6-3 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Added layer ZIP compression to the PSD encoder.</li>
<dt>2016-10-10  6.9.6-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.6-2, GIT revision 11095:14d2cea:20161010.</li>
<dt>2016-10-10  6.9.6-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Unit test pass again after small SUN image patch.</li>
<dt>2016-10-07  6.9.6-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.6-1, GIT revision 11092:1f7ca24:20161008.</li>
<dt>2016-10-07  6.9.6-1 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Fixed incorrect RLE decoding when reading a DCM image that contains    multiple segments.</li>
<dt>2016-10-02  6.9.6-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.6-0, GIT revision 11078:9aec251:20161002.</li>
<dt>2016-09-27  6.9.6-0 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Fixed incorrect RLE decoding when reading an SGI image (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=30514)</li>
<dt>2016-09-05  6.9.5-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.5-10, GIT revision 11054:ddda572:20160920.</li>
<dt>2016-09-17  6.9.5-10 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Added layer RLE compression to the PSD encoder.</li>
  <li> Added define 'psd:preserve-opacity-mask' to preserve the opacity mask    in a PSD file.</li>
  <li> Fixed issue where the display window was used instead of the data window    when reading EXR files (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;p=137849).</li>
<dt>2016-09-05  6.9.5-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.5-9, GIT revision 11029:777f14c:20160905.</li>
<dt>2016-08-31  6.9.5-9 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Fixed incorrect padding calculation in PSD encoder.</li>
<dt>2016-08-27  6.9.5-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.5-8, GIT revision 11015:e3335b3:20160827.</li>
<dt>2016-08-27  6.9.5-8 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Added define 'psd:additional-info' to preserve the additional information    in a PSD file.</li>
<dt>2016-08-15  6.9.5-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Prevent buffer overflow in BMP &amp; SGI coders (bug report from    	  pwchen&amp;rayzhong of tencent).</li>
  <li> Fix MSVG regression (reference    https://github.com/ImageMagick/ImageMagick/issues/252).</li>
  <li> Prevent buffer overflow and other problems in SIXEL, PDB, MAP, TIFF, and	  CALS coders (bug report from Donghai Zhu).</li>
<dt>2016-08-14  6.9.5-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.5-7, GIT revision 10993:7d2fd25:20160814.</li>
<dt>2016-08-14  6.9.5-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Eliminate compiler warning.</li>
<dt>2016-08-14  6.9.5-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.5-6, GIT revision 10991:ab76b09:20160814</li>
<dt>2016-08-07  6.9.5-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Prevent spurious removal of MPC cache files (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=30256).</li>
<dt>2016-08-06  6.9.5-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.5-5, GIT revision 10980:ecc03a2:20160806.</li>
<dt>2016-08-03  6.9.5-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Prevent buffer overflow (bug report from Max Thrane).</li>
  <li> Prevent memory use after free (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=30245).</li>
<dt>2016-07-30  6.9.5-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.5-4, GIT revision 10973:a00fa93:20160729.</li>
<dt>2016-07-35  6.9.5-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Prevent buffer overflow (bug report from Ibrahim el-sayed).</li>
<dt>2016-07-15  6.9.5-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.5-3, GIT revision 18627:2b5ddbd:20160721.</li>
<dt>2016-07-13  6.9.5-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix MVG stroke-opacity (reference    https://github.com/ImageMagick/ImageMagick/issues/229).</li>
  <li> Prevent possible buffer overflow when reading TIFF images (bug report from    Shi Pu of MS509 Team).</li>
<dt>2016-07-11  6.9.5-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.5-2, GIT revision 18591:50debe5:20160710.</li>
<dt>2016-07-10  6.9.5-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> To comply with the SVG standard, use stroke-opacity for transparent strokes.</li>
<dt>2016-07-09  6.9.5-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.5-1, GIT revision 18572:28560fc:20160709.</li>
<dt>2016-07-04  6.9.5-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The histogram coder now returns the correct extent.</li>
  <li> Use CopyMagickString() rather than CopyMagickMemory() for strings.</li>
<dt>2016-06-26  6.9.5-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.5-0, GIT revision 18514:a7b5b46:20160626.</li>
<dt>2016-06-23  6.9.5-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Correct for numerical instability (reference    https://github.com/ImageMagick/ImageMagick/issues/218).</li>
<dt>2016-06-21  6.9.4-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.4-10, GIT revision 10907:a08de63:20160622.</li>
<dt>2016-06-17  6.9.4-10 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Added support for GROUP4 compression to the FAX coder.</li>
<dt>2016-06-17  6.9.4-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Don't return a zero bounding box for QueryMultilineFontMetrics() (reference    https://github.com/ImageMagick/ImageMagick/issues/222).</li>
<dt>2016-06-12  6.9.4-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.4-9, GIT revision 10884:f0e15e8:20160612.</li>
<dt>2016-06-09  6.9.4-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Backoff finite precision epsilon (reference    https://github.com/ImageMagick/ImageMagick/issues/215).</li>
  <li> Fix drawing glitch for stroke widths greater than 2 (reference    https://github.com/ImageMagick/ImageMagick/issues/218).</li>
<dt>2016-06-05  6.9.4-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.4-8, GIT revision 18406:ba4ad2d:20160607.</li>
<dt>2016-06-04  6.9.4-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> RLE check for pixel offset less than 0 (heap overflow report from Craig    Young).</li>
  <li> Properly initialze PES blocks (reference    https://github.com/ImageMagick/ImageMagick/issues/213).</li>
<dt>2016-06-03  6.9.4-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.4-7, GIT revision 10847:339f803:20160602.</li>
<dt>2016-06-02  6.9.4-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix small memory leak (patch provided by Андрей Черный).</li>
  <li> Coder path traversal is not authorized (bug report provided by    Masaaki Chida).</li>
  <li> Turn off alpha channel for the compare difference image (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=29828).</li>
<dt>2016-05-31  6.9.4-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.4-6, GIT revision 18334:97775b5:20160531.</li>
<dt>2016-05-31  6.9.4-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support configure script --enable-pipes option to enable pipes (|) in    filenames.</li>
  <li> Support configure script --enable-indirect-reads option to enable    indirect reads (@) in filenames.</li>
<dt>2016-05-30  6.9.4-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.4-5, GIT revision 18321:5511ef5:20160530.</li>
<dt>2016-05-28  6.9.4-5 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Most OpenCL operations are now executed asynchronous.</li>
<dt>2016-05-25  6.9.4-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Security improvements to TEXT coder broke it (reference</li>
  <li> Prevent possible shell command injection vulnerability through the    authenticate parameter of the PDF, PCL and XPS coders (report from    Erez Turjeman).    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=29754).</li>
  <li> Fix stroke offset problem for -annotate (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=29626).</li>
  <li> Add additional checks to DCM reader to prevent data-driven faults (bug    report from Hanno Böck).</li>
<dt>2016-05-21  6.9.4-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.4-4, GIT revision 18241:d4f277c:20160521.</li>
<dt>2016-05-20  6.9.4-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed proper placement of text annotation for east / west gravity.</li>
<dt>2016-05-15  6.9.4-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.4-4, GIT revision 10789:f7c2e89:20160518.</li>
<dt>2016-05-15  6.9.4-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix pixel cache on disk regression (reference    https://github.com/ImageMagick/ImageMagick/issues/202).</li>
<dt>2016-05-15  6.9.4-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.4-2, GIT revision 10778:52dae14:20160516.</li>
<dt>2016-05-10  6.9.4-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Quote passwords when passed to a delegate program.</li>
  <li> Can read geo-related EXIF metdata once-again (reference    https://github.com/ImageMagick/ImageMagick/issues/198).</li>
  <li> Sanitize all delegate emedded formatting characters.</li>
  <li> Don't sync pixel cache in AcquireAuthenticCacheView() (bug report from    Hanno Böck).</li>
<dt>2016-05-09  6.9.4-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.4-1, GIT revision 10755:d540dda:20160509.</li>
<dt>2016-05-07  6.9.4-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Remove https delegate.</li>
<dt>2016-05-05  6.9.4-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Release ImageMagick version 6.9.4-0, GIT revision 10741:5746147:20160507.</li>
<dt>2016-05-04  6.9.4-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Check for buffer overflow in magick/draw.c/DrawStrokePolygon().</li>
  <li> Replace show delegate title with image filename rather than label.</li>
  <li> Fix GetNextToken() off by one error.</li>
  <li> Remove support for internal ephemeral coder.</li>
<dt>2016-05-03  6.9.3-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.3-10, GIT revision 10723:9fc8a0c:20160503.</li>
<dt>2016-05-03  6.9.3-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Sanitize input filename for http / https delegates (improved patch).</li>
  <li> Fix for possible security vulnerabilities (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=4&amp;t=29588).</li>
<dt>2016-04-30  6.9.3-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.3-9, GIT revision 10716:b527bce:20160430.</li>
<dt>2016-04-12  6.9.3-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Sanitize input filename for http / https delegates.</li>
  <li> Indirect filename must be authorized by policy.</li>
  <li> The txt coder now properly reports Lab colors (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=2944).</li>
<dt>2016-04-11  6.9.3-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.3-8, GIT revision 10690:d058a53:20160411</li>
<dt>2016-03-22  6.9.3-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Respect gravity when rendering text (e.g. convert -gravity center my.txt)</li>
  <li> Return empty string for %d property and no directory (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=29365)</li>
  <li> Return filename for the %i property (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=29364).</li>
  <li> Fixed lost pixels in frequency space (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=29374).</li>
<dt>2016-03-06  6.9.3-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.3-7, GIT revision 10628:810a9fe:20160306</li>
<dt>2016-03-05  6.9.3-7 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> -size can now be used the specify the maximum width/height for the    following vector formats:</li>
  <li> SVG (when librsvg and cairo are being used).</li>
  <li> EMF (did not work on Windows).</li>
<dt>2016-02-29  6.9.3-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed text alignment issue for label: / coder: (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=29223).</li>
<dt>2016-02-27  6.9.3-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.3-6, GIT revision 10597:83584a1:20160228.</li>
<dt>2016-02-25  6.9.3-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Ensure TXT: image format survives round-trip (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=29206).</li>
<dt>2016-02-21  6.9.2-6 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Added wavelet denoise.</li>
<dt>2016-02-20  6.9.3-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.3-5, GIT revision 10572:cb24a69:20160219.</li>
<dt>2016-02-16  6.9.3-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Too many bytes when writing raw image formats (reference    https://github.com/ImageMagick/ImageMagick/issues/132).</li>
<dt>2016-02-12  6.9.3-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.3-4, GIT revision 10560:09f5f5d:20160212.</li>
<dt>2016-02-12  6.9.3-4 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Fixed memory leak when reading an SVG without width/height (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=27&amp;p=130197).</li>
<dt>2016-02-09  6.9.3-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix compiler error for complext text layout.</li>
<dt>2016-02-05  6.9.3-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.3-3, GIT revision 10540:6b4c918:20160206.</li>
<dt>2016-02-04  6.9.3-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Numerous bugs fixed from fuzzed images (reference    https://github.com/ImageMagick/ImageMagick/issues/123).</li>
  <li> The -bias option is no longer a noop (reference    https://github.com/ImageMagick/ImageMagick/issues/125).</li>
<dt>2016-01-25  6.9.3-3 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Read XCF layer name (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;p=129638).</li>
<dt>2016-01-23  6.9.3-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.3-2, GIT revision 10496:315028c:20160122.</li>
<dt>2016-01-17  6.9.3-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Don't reuse lock after free (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=29031).</li>
<dt>2016-01-21  6.9.3-2 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Fixed writing DocClass in CALS coder (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;p=129478).</li>
<dt>2016-01-17  6.9.3-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.3-1, GIT revision 10488:e4f046e:20160116.</li>
<dt>2016-01-06  6.9.3-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Pair AcquireMagickResource with calls to RelinquishMagickResource when    resource limits are hit (reference    https://github.com/ImageMagick/ImageMagick/pull/75).</li>
  <li> Return non-zero for the -format %b option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=28969).</li>
<dt>2016-01-01  6.9.3-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.3-0, GIT revision 10445:620328b:20160101.</li>
<dt>2015-12-31  6.9.3-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Don't break on euro-style numbers (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=28910).</li>
<dt>2015-12-22  6.9.3-0 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> 16-bit pnm images have a max value of 65535.</li>
<dt>2015-12-18  6.9.2-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.2-10, GIT revision 10415:e31c09d:20151219.</li>
<dt>2015-12-19  6.9.2-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed compile error when POSIX threads are not defined.</li>
    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=28791).<dt>2015-12-18  6.9.2-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.2-9, GIT revision 10402:0027295:20151219</li>
<dt>2015-12-05  6.9.2-9 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Fixed memory leak when reading incorrect PSD files (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=28791).</li>
<dt>2015-12-05  6.9.2-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Enhance PDF to properly handle unicode titles (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=28786).</li>
  <li> Fix memory leak in icon coder (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=6&amp;t=28848).</li>
<dt>2015-12-05  6.9.2-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.2-8, GIT revision 10374:ac7d144:20151205.</li>
<dt>2015-12-04  6.9.2-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Gray artifacts in large gif when using -layers optimize (reference    https://github.com/ImageMagick/ImageMagick/issues/57).</li>
<dt>2015-11-26  6.9.2-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.2-7, GIT revision 10370:eeb7d4e:20151126.</li>
<dt>2015-11-24  6.9.2-7 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> The DICOM reader now handles the rescale intercept and slope.</li>
  <li> Added 'bmp3:alpha' option for including the alpha channel when writing    an image in the BMP3 format. (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=28733).</li>
  <li> Only one thread permitted when delegating to the Ghostscript library    under Windows.</li>
<dt>2015-11-14  6.9.2-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.2-6, GIT revision 10341:f408196:20151113.</li>
<dt>2015-11-08  6.9.2-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> PixelColor off by one on i386 (reference    https://github.com/ImageMagick/ImageMagick/issues/54).</li>
  <li> Eliminate stack overflow (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=28658).</li>
<dt>2015-11-03  6.9.2-6 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Added local contrast enhancement.</li>
  <li> Fixed bug in SetPixelCacheExtent that made images all black (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=28514).</li>
  <li> Added support for reading DICOM images with implicit vr little-endian    transfer syntax.</li>
<dt>2015-11-02  6.9.2-6 Samuel Thibault &lt;samuel.thibault@...org&gt;</dt>
  <li> Added 6dot variant for unicode and iso braille formats (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;p=127111).</li>
<dt>2015-10-31  6.9.2-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.2-5, GIT revision 10316:86a76b6:20151031.</li>
<dt>2015-10-15  6.9.2-5 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Fixed alpha blending issue with semi-transparent pixels in the merged    image of PSD files. This can be disabled by setting the option    'psd:alpha-unblend' to 'off' (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=28169).</li>
  <li> Fixed issue in jpeg:extent that prevented it from working (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;p=126638).</li>
  <li> Fixed memory leak when reading Photoshop layers in a TIFF file.</li>
<dt>2015-10-12  6.9.2-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support gradient:bounding-box, gradient:vector, gradient:center, and    gradient:radius to shape the gradient rendering.</li>
  <li> Recognize label:@- as stdin (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=28501).</li>
  <li> Make commas optional for coordinates (e.g. 0,0 256,256).</li>
<dt>2015-10-10  6.9.2-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.2-4, GIT revision 10273:e00cf21:20151010</li>
<dt>2015-10-08  6.9.2-4 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Fixed accessing subimage in a TIFF photoshop layer (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=28469).</li>
  <li> Fixed out of bounds error in -splice (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=28466).</li>
<dt>2015-09-25  6.9.2-4 Eric McConville &lt;emcconville@emccon...&gt;</dt>
  <li> Created Manhattan Interpolate method for -sparse-color (reference    https://github.com/ImageMagick/ImageMagick/pull/36).</li>
<dt>2015-09-22  6.9.2-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Prevent null pointer access (reference    https://github.com/ImageMagick/ImageMagick/pull/34).</li>
  <li> Specify histogram code image format implictedly (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=28412).</li>
  <li> Don't round up for JPEG image resolution (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=28422).</li>
  <li> Read the whole image @ image.jp2[0] or an individual tile @ image.jp2[1],    image.jp2[2].</li>
  <li> The -caption option no longer fails for filenames with @ prefix (reference    https://github.com/ImageMagick/ImageMagick/issues/43).</li>
  <li> Honor $XDG_CONFIG_HOME and $XDG_CACHE_HOME (reference    https://github.com/ImageMagick/ImageMagick/issues/44).</li>
<dt>2015-09-19  6.9.2-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.2-3, GIT revision 10235:c40ee57:20150919</li>
<dt>2015-09-17  6.9.2-2 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Added extra checks to avoid out of bounds error when parsing the 8bim    profile (reference https://github.com/ImageMagick/ImageMagick/issues/31).</li>
  <li> Fixed size of memory allocation in RLE coder to avoid segfault (reference    https://github.com/ImageMagick/ImageMagick/issues/32).</li>
<dt>2015-09-16  6.9.2-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add Bootstrap MIT license to ImageMagick web CSS and JS.</li>
  <li> Use modern idiom for autoconf    Fix a forgotten dir when regenerating html doc (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=28363).</li>
  <li> The -colorspace gray option no long leaves a ghostly shadow (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=28350).</li>
<dt>2015-09-14  6.9.2-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.2-1, GIT revision 10201:5879612:20150913.</li>
<dt>2015-09-13  6.9.2-1 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Preserving image origin in TGA files (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=28310).</li>
<dt>2015-08-15  6.9.2-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support color compliance for TXT format (e.g. -define txt:compliance=css)    (bug report from Anthony).</li>
  <li> The first argument of a hsl() color is integer, not percentage (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=26072).</li>
  <li> Limit -fx recursive to avoid stack overflow (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=28200).</li>
  <li> Support inline images with data URLS.</li>
  <li> Report progress less often (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=28299).</li>
  <li> Don't set image colorspace to gray for -alpha copy option.</li>
  <li> Fixed a possible memory leak associated with the -sampling-factor option.</li>
  <li> GetImageType() no longer has side-effects to match behavior of IMv7.</li>
<dt>2015-08-15  6.9.2-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.2-0, GIT revision 10143:3534f6d:20150815.</li>
<dt>2015-08-10  6.9.2-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Swap pixels for -spread command-line option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=28043).</li>
  <li> fx logical operations short circuit (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=28179).</li>
  <li> Type cast intensity variable (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=28182).</li>
  <li> Fix ModulusAdd &amp; ModulusSubstract for HDRI compositing (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=28186).</li>
<dt>2015-07-25  6.9.2-0 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Added "-set colorspace:auto-grayscale false" that will prevent automatic    conversion to grayscale inside coders that support grayscale.</li>
  <li> Fixed -list weight and the options for -weight.</li>
  <li> Added fontFamily, fontStyle, fontWeight and textUnderColor to the Image    class of Magick++.</li>
  <li> Fixed reading Photoshop layers of LSB TIFF files (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=28045).</li>
  <li> Fixed memory leak in font cache under Windows (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=6&amp;t=28191).</li>
<dt>2015-07-25  6.9.1-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.1-10, SVN revision 19269.</li>
<dt>2015-07-20  6.9.1-10 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> coders/magick.c: added "-define h:format=FMT" and    "-define magick:format=FMT" options. FMT can be any output format    supported by ImageMagick except "H" or "MAGICK". If this define is    omitted, the encoder uses GIF by default for pseudoclass images and    PNM for directclass images, as previously.  Made "MAGICK" (read-write)    and "H" (write-only) visible in the format list.</li>
<dt>2015-07-18  6.9.1-10 Dirk lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Removed incorrect EOF check in the DDS reader (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=28065).</li>
<dt>2015-07-18  6.9.1-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed undefined behaviors (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=28067).</li>
  <li> Return exception message for unknown image properties.</li>
  <li> Color shift removed when reading transparent gray images (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=28081)</li>
<dt>2015-07-18  6.9.1-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.1-9, SVN revision 19200.</li>
<dt>2015-07-12  6.9.1-9 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Fixed issue with radial gradient in MVG (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=27995).</li>
<dt>2015-07-11  6.9.1-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.1-8, SVN revision 19167.</li>
<dt>2015-06-25  6.9.1-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Correct install location of the Magick++ headers (reference    https://github.com/ImageMagick/ImageMagick/pull/17/commits).</li>
  <li> Different gif cropping behavior between versions (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=28013).</li>
  <li> Cannot read properly simple psd file (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=28002).</li>
<dt>2015-07-04  6.9.1-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.1-7, SVN revision 19121.</li>
<dt>2015-06-27  6.9.1-7 Eric Dalquist</dt>
  <li> Fixed and escaped output of the json coder. (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;p=27894).</li>
<dt>2015-06-25  6.9.1-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support BPG image format (respects -quality option).</li>
  <li> A bordered transparent image now remains transparent (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=5&amp;t=27937).</li>
  <li> The -update option behavior restored (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=27939).</li>
<dt>2015-06-13  6.9.1-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.1-6, SVN revision 18945.</li>
<dt>2015-06-14  6.9.1-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Cache cloning on disk optimized with sendfile() (if available).</li>
  <li> Add an additional check for end-of-file for the RLE coder (reference    https://imagemagick.org/discourse-server//viewforum.html?f=3&amp;t=27870).</li>
  <li> Respect resource limits in AVS coder.</li>
<dt>2015-06-13  6.9.1-6 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Reverted change to 6.9.1-3 that skipped palette-building.</li>
<dt>2015-06-13  6.9.1-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.1-5, SVN revision 18882.</li>
<dt>2015-06-03  6.9.1-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Use correct scale when interpretting alpha (e.g. rgba(0,0,0,1)).</li>
  <li> DrawGetVectorGraphics() now returns proper XML (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=27751).</li>
  <li> Support writing EXR files with different color types (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=27759).</li>
  <li> Prefer PKG_CHECK_MODULES() when searching for delegate libraries.</li>
  <li> Throw exception if frame option bevel exceeds to the image width / height.</li>
  <li> Resolve undefined behaviors (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=27811).</li>
<dt>2015-06-01  6.9.1-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.1-4, SVN revision 18697.</li>
<dt>2015-06-01  6.9.1-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support 'restrict' keyword under Windows.</li>
<dt>2015-05-25  6.9.1-4 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Added support for reading a user supplied layer mask in PSD files.</li>
  <li> Added support for reading photoshop layers in TIFF files.</li>
<dt>2015-05-24  6.9.1-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.1-3, SVN revision 18623.</li>
<dt>2015-05-03  6.9.1-3 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Fixed transparency issue with 16-bit tga files (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=27469).</li>
  <li> Fixed writing label and comment in tiff images (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25516).</li>
  <li> Jpeg images no longer have pixels per inch as a default value for density    units when the density is not set (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=27589).</li>
  <li> Added support for setting the font color with -fill to the pango coder.</li>
<dt>2015-05-03  6.9.1-3 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fixed bug with "-define png:format=x" in png.c, introduced in version    6.8.9-0, that caused the define to be ignored.</li>
  <li> Replaced some dead code in ReadJNGImage with an assert().</li>
  <li> Avoid palette-building when writing a grayscale PNG (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=27580).</li>
<dt>2015-04-20  6.9.1-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support -define compose:clamp=false option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=26946).</li>
  <li> Don't extend any user supplied image buffer in SeekBlob() (bug report    from a.chernij@corp...).</li>
  <li> Improved reproducible builds (reference    https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=783933).</li>
  <li> Draw a rectangle of width &amp; height of 1 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24874).</li>
<dt>2015-04-19  6.9.1-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.1-2, SVN revision 18429.</li>
<dt>2015-04-09  6.9.1-2 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Avoid using a NULL alpha_image or color_image in the JNG decoder.</li>
<dt>2015-04-07  6.9.1-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix JPEG-2000 transparency on write (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=27304).</li>
  <li> Identify now identifies PSD (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=26948).</li>
  <li> Speed up writing to TGA (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=27369).</li>
<dt>2015-04-06  6.9.1-2 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Reduce draw epsilon to increase mathematical stability.</li>
  <li> Fixed UTF8 issue when determining the current working directory    on Windows (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=27295).</li>
<dt>2015-04-04  6.9.1-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.1-1, SVN revision 18308.</li>
<dt>2015-03-21  6.9.1-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Skip empty frames when comparing layers (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=27234).</li>
<dt>2015-03-21  6.9.1-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.1-0, SVN revision 18245.</li>
<dt>2015-03-17  6.9.1-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Grayscale DPX image files are no longer skewed (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=27209).</li>
<dt>2015-03-16  6.9.1-0 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fix integer overflow when scaling a 1-bit sample to Q64 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=27195).</li>
<dt>2015-03-01  6.9.0-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.0-10, SVN revision 18299.</li>
<dt>2015-03-03  6.9.0-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Account for differences in image size when comparing two images (bug    report from Dirk).</li>
  <li> Set an upper ceiling compression with -quality and jpeg:extent (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=27071).</li>
<dt>2015-03-01  6.9.0-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.0-9, SVN revision 18179.</li>
<dt>2015-02-22  6.9.0-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Writing histograms / mpeg working again (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=27089).</li>
  <li> The -linear-stretch option worked for Q16 but not Q32 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=27112).</li>
<dt>2015-02-22  6.9.0-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Bogus release, withdrawn.</li>
<dt>2015-02-22  6.9.0-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.0-7, SVN revision 18067.</li>
<dt>2015-02-15  6.9.0-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Line strokes appeared too thin (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=26927).</li>
  <li> Keep text in caption area (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22504).</li>
<dt>2015-02-14  6.9.0-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.0-6, SVN revision 18010.</li>
<dt>2015-02-12  6.9.0-6 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Fixed command line execution in Windows for delegates that    move files (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=27027).</li>
<dt>2015-02-10  6.9.0-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> A transient bug for the write MSL element (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=27022).</li>
<dt>2015-02-08  6.9.0-6 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Remove uninitialized, unused "p++" from coders/png.c, MNG reader.</li>
  <li> Initialize "length" in coders/png.c, WriteJNGImage().</li>
  <li> Fix signed/unsigned mismatch in coders/png.c, MNG reader.</li>
<dt>2015-02-08  6.9.0-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.0-5, SVN revision 17946.</li>
<dt>2015-01-30  6.9.0-5 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> In coders/gif.c, quiet two warnings.</li>
<dt>2015-01-24  6.9.0-5 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Fixed iccColorProfile() in Magick++ (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=26910).</li>
  <li> Fixed infinite loop in HDR reader (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=26929).</li>
<dt>2015-01-23  6.9.0-5 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Check lengths of certain MNG chunks before reading them.</li>
  <li> In the PNG codec, check status wherever a function returns it.</li>
<dt>2015-01-18  6.9.0-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Remove possible resource memory leak in a multi-threaded program (bug    report and patch from David Chapman &lt;d...@acm.org&gt;.</li>
  <li> Small optimization to pixel cache.</li>
  <li> More image sanity checks.</li>
  <li> Support writing base64-encoded images (e.g<dt>	  convert logo: inline:jpeg:logo.txt).</dt>
  <li> Repair small TIFF leak when pinging (patch provided by Andrey Cherniy).</li>
<dt>2015-01-16  6.9.0-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.0-4, SVN revision 17697.</li>
<dt>2015-01-07  6.9.0-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Additional coder sanity checks (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=26842,    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=26682).</li>
<dt>2015-01-05  6.9.0-4 Dirk Lemstra &lt;dirk@lem.....org&gt;</dt>
  <li> Report Ghostscript version when -verbose is used and when an exception    is raised.</li>
  <li> Fixed invalid path check in MagickCoreGenesis under Windows and disabled    ProvideDllMain by default (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;p=118875).</li>
<dt>2015-01-01  6.9.0-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.0-3, SVN revision 17537.</li>
<dt>2015-01-01  6.9.0-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> ImageMagick builds when HDRI is enabled (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=26803).</li>
<dt>2014-12-31  6.9.0-3 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Don't read beyond the end of a tEXt keyword when checking for Raw profile.</li>
<dt>2014-12-27  6.9.0-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.0-2, SVN revision 17468.</li>
<dt>2014-12-14  6.9.0-1 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Added support for reading EXR files to the Windows distribution.</li>
  <li> Fixed enabling alpha in 32-bit BMP files (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=26662).</li>
  <li> Added support for writing 16-bit TGA files (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=26693).</li>
  <li> Improved performance of dds:cluster-fit when OpenMP is enabled.</li>
  <li> Added support for distributed pixel cache to the Windows distribution.</li>
<dt>2014-12-04  6.9.0-1 Alexey Dolgavin &lt;dolgavin.alexey@gmail...&gt;</dt>
  <li> Fix ImageMagick crashes while read EXIF from TIFF.</li>
<dt>2014-11-20  6.9.0-1 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Don't handle a "previous" image in the PNG or JNG decoder.</li>
  <li> Don't override gamma with 1.0 when reading a grayscale PNG image (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=26576).</li>
  <li> Update progress monitor for every PNG row instead of every pass (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=26589).</li>
  <li> Reject input PNG with dimensions larger than specified with -limit width    and -limit height.</li>
<dt>2014-11-20  6.9.0-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix double free / invalid read when converting jpg to pdb (thanks to    Hanno).</li>
  <li> Maximum XWD image size is 64Kx64K (thanks to Hanno).</li>
  <li> Maximum DPX number of elements is 8 (thanks to Hanno).</li>
  <li> Transient problem with SVG (reference      https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=26587).</li>
  <li> Numerous buffer overflow fixes (thanks to Gynvael Coldwind and    Mateusz Jurczyk of the Google Security Team).</li>
  <li> Additional PNM sanity checks (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=26682).</li>
  <li> The SetImageBias() bias value is no longer ignored (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25732).</li>
  <li> Area crop now returns the expected number of tiles (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=26701).</li>
  <li> Respect TGA ColorMapIndex field (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=26738).</li>
  <li> Clang does not support __alloc_size__, fix fabs() (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=26739).</li>
  <li> Support width and height resource limits.</li>
  <li> Don't read TIFF profiles when pinging (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=26670).</li>
<dt>2014-11-16  6.9.0-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.9.0-0, SVN revision 17067.</li>
<dt>2014-11-03  6.9.0-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Check for zero-sized rendered SVG image (bug report from    Vladimir Davydov).</li>
<dt>2014-11-01  6.8.9-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.9-10, SVN revision 16910.</li>
<dt>2014-10-29  6.8.9-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> EXIF directory offsets must be greater than 0 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=26456).</li>
  <li> Accept morphology kernels from files (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=26466).</li>
  <li> Don't optimize JPEG compression by default (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=26482).</li>
<dt>2014-10-26  6.8.9-10 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Added support for reading jpeg compressed YCCK tiff files (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24412).</li>
  <li> Fixed reading DICOM files with big endian transfer syntax (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=26448).</li>
<dt>2014-10-25  6.8.9-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.9-9, SVN revision 16819.</li>
<dt>2014-10-03  6.8.9-9 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Added sixel coder created by Hayaki Saito (@kefir_).</li>
  <li> Fixed buffer overflow in PCX and DCM coder (bug report from Hanno Böck).</li>
  <li> Added support for reading/writing the tIME chunk in the PNG coder.</li>
  <li> Added eps:fit-page option to the PS coder to set -dEPSFitPage.</li>
  <li> Improved reporting tiff:alpha and allowed setting tiff:alpha to    unspecified.</li>
<dt>2014-09-30  6.8.9-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support xyY colorspace (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=26324).</li>
  <li> Reduce noise while preserving edges with the -kuwahara option.</li>
  <li> Off-by-one count when parsing an 8BIM profile.</li>
  <li> Locale.c won't build if uselocale found but strtod_l isn't (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=26362).</li>
  <li> OpenCL no longer benchmarks are run on every initialization (patch    submitted by Jan Steffens).</li>
  <li> Don't clone a 0x0 image (bug report from Hanno Böck).</li>
<dt>2014-09-21  6.8.9-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.9-8, SVN revision 16502.</li>
<dt>2014-09-16  6.8.9-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> JPEG library version &gt;= 80 is thread safe (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=25495).</li>
<dt>2014-08-31  6.8.9-8 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Added support for some legacy dds formats (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=26184).</li>
<dt>2014-08-16  6.8.9-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.9-7, SVN revision 16330.</li>
<dt>2014-08-14  6.8.9-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix off by one buglet when extracting profiles 8BIM (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=26095).</li>
<dt>2014-07-31  6.8.9-7 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Fixed bug when reading 1 bit PSD. (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=26015).</li>
<dt>2014-07-25  6.8.9-7 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Relocate initialization of "image_colors" in the PNG encoder, to avoid    a possible use of uninitialized variable.</li>
<dt>2014-07-25  6.8.9-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.9-6, SVN revision 16211.</li>
<dt>2014-07-24  6.8.9-6 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Use IsOptionMember() instead of LocaleNCompare() in coders/png.c to    parse the list of excluded and included PNG chunks.</li>
<dt>2014-07-19  6.8.9-6 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Fixed fill-rule in SVG clip path (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=25882).</li>
<dt>2014-07-14  6.8.9-6 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Removed some dead code (testing image-&gt;matte) in PNG64 encoder.</li>
<dt>2014-07-07  6.8.9-6 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Added support for R5G6B5, RGB5A1 and RGBA4 dds files.</li>
<dt>2014-07-01  6.8.9-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Write LAB pixels as percentages in the TXT image format (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25830).</li>
  <li> Throw exception when image morphology differs when comparing (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25927).</li>
  <li> Remove mogrify backup file (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25683).</li>
  <li> Read WEBP images from STDIN (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25886).</li>
<dt>2014-07-01  6.8.9-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.9-5, SVN revision 16123.</li>
<dt>2014-06-28  6.8.9-5 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Do not let libpng16 check ICC/sRGB profiles in non-debug runs; we do    it ourselves anyway.  Avoids emitting "known incorrect profile" warnings.    For strict profile checking and warning, use "-debug coder".</li>
<dt>2014-06-27  6.8.9-5 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Disabled OpenCL acceleration when image has a 'mask' or 'clip-mask'.</li>
<dt>2014-06-25  6.8.9-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Use -define profile:skip=icc, for example,  to skip color profiles on read.</li>
<dt>2014-06-23  6.8.9-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.9-4, SVN revision 16057.</li>
<dt>2014-06-15  6.8.9-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support RMS argument for -evaluate-sequence and -statistic options.</li>
  <li> Fix lseek define for a successful compile under 64-bit MinGW.</li>
  <li> Pipe image to display program no longer reports an exception (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23532).</li>
  <li> Check that profile is non-NULL in coders/tiff.c (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25770).</li>
<dt>2014-06-08  6.8.9-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.9-3, SVN revision 15975.</li>
<dt>2014-06-07  6.8.9-3 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Quiet warning about unused variable "skip_to_iend" in coders/png.c.</li>
<dt>2014-06-07  6.8.9-3 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Fixed creation of SVG from 8bim clip path. (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=25594).</li>
<dt>2014-06-02  6.8.9-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The -version option returns 0 status (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25667).</li>
  <li> The inline coder can now read from standard input (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25641).</li>
  <li> Add '=' character to the sanitize whitelist.</li>
<dt>2014-05-30  6.8.9-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.9-2, SVN revision 15932.</li>
<dt>2014-05-18  6.8.9-2 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fixed some bugs in the PNG codec discovered by coverity analysis.</li>
<dt>2014-05-14  6.8.9-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The -fx equality operator returns a proper boolean result now (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25580).</li>
  <li> Permit spaces in the gradient color specification (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25614).</li>
  <li> Fix IdentifyImage() crash when image-&gt;magick member is null (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25615).</li>
  <li> The -format M and Y channels are no longer reversed (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25633).</li>
  <li> Remove Makefile race condition where two targets attempt to install    magick-baseconfig.h (reference    http://git.buildroot.net/buildroot/commit/?id=7395ee9d3b88e45798143e05a28d6d4b51409130)</li>
  <li> Fix memory leak in BlobToStringInfo() (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25639).</li>
  <li> In certain cases, -adaptive-sharpen failed to sharpen (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23211</li>
<dt>2014-05-12  6.8.9-2 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Bump major Magick++ library version.</li>
  <li> Added support for writing RLE compressed TGA files (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=12335).</li>
  <li> Improved performance of parsing the xmp profile (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25612).</li>
  <li> Fixed detecting transparency in PSD files (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25634).</li>
<dt>2014-05-09  6.8.9-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.9-1, SVN revision 15697.</li>
<dt>2014-04-22  6.8.9-1 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fixed bug with the PNG00 subformat when the original format was PNG32.</li>
  <li> The "-strip" option now only removes profiles and comments from PNG    output.  Previously the background, density, and other metadata were    also discarded.</li>
<dt>2014-04-22  6.8.9-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support new -hough-lines option.</li>
  <li> Support new -mean-shift option.</li>
  <li> identify -units without argument no longer faults (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25542).</li>
  <li> Require OpenJP2 version 2.1.0 (opj_stream_set_user_data() method signature    change between 2.0.0 and 2.1.0).</li>
<dt>2014-04-20  6.8.9-1 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Added image moments, canny edge and hough line to Magick++.</li>
  <li> The 8bim profile will be updated when the icc/iptc/xmp profile is changed.</li>
  <li> Fix for stack overflow in DestroyXMLTree in Windows (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25457).</li>
  <li> Added new coder for VIPS image format (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=25445).</li>
  <li> Moved detection of type to a separate method in Magick++. The type() method    no longer modifies the type of the image. Use determineType() instead.</li>
  <li> Improved error messages when a coder uses Ghostscript.</li>
<dt>2014-04-11  6.8.9-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.9-0, SVN revision 15441.</li>
<dt>2014-04-03  6.8.9-0 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fixed bug with -strip failing to exclude PNG chunks (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25353).</li>
<dt>2014-03-30  6.8.9-0 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Added new coder to take a screen shot of a monitor in Windows (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=23&amp;t=25191).</li>
<dt>2014-03-24  6.8.9-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Don't transform sRGB compatible colorspaces to sRGB, doing so    inadvertently promotes colormapped images to DirectClass.</li>
  <li> Use temporary path rather then current working directory (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25313).</li>
  <li> Support -canny edge detection option.</li>
  <li> Use MAGICKCORE_LIBOPENJP2_DELEGATE instead of MAGICKCORE_JP2_DELEGATE    (reference imagemagick.org/discourse-server/viewtopic.html?f=3&amp;t=25376).</li>
<dt>2014-03-28  6.8.8-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.8-9, SVN revision 15239.</li>
<dt>2014-03-23  6.8.8-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Although they are internal methods, deprecate InitializeModuleList(),    LoadMimeLists(), and RelinquishCommandQueue() (reference   https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25263).</li>
<dt>2014-03-20  6.8.8-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.8-9, SVN revision 15192.</li>
<dt>2014-03-16  6.8.8-9 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Do not block threads in the png codec when PNG_SETJMP_SUPPORTED is not    defined (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=23&amp;t=25218).</li>
<dt>2014-03-15  6.8.8-9 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Added tiff:ignore-tags to ignore specific tags.</li>
  <li> Added orderedDither, selectiveBlur, separate, sepiaTone, sketch,    smushImages, tint, uniqueColors and vignette to Magick++.</li>
<dt>2014-03-11  6.8.8-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The -define jpeg:extent option overrides the image quality (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25200).</li>
<dt>2014-03-09  6.8.8-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.8-8, SVN revision 15097.</li>
<dt>2014-03-04  6.8.8-8 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Reset colorspace to Grayscale when reading a gray PNG image with    gamma &gt; 0.75 instead of when gamma==1.0 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25136).</li>
<dt>2014-02-22  6.8.8-8 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> The PSD reader creates a merged image if the image does not contain one.</li>
  <li> Added option pdf:fit-page to scale a pdf to the specified size (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=25044).</li>
  <li> The ResolutionInfo in the 8BIM profile will be updated when an image is    written.</li>
  <li> Fixed UTF8 issues and added support for reading files with long path names    for the Windows distribution.</li>
<dt>2014-02-21  6.8.8-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Convert linear RGB to sRGB before writing the Targa image format.</li>
  <li> Make sure we use the secure C library functions when compiling ImageMagick    on Windows.</li>
  <li> Tweak color reduction optimization to return a full color palette (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=25098).</li>
  <li> Patch configure.ac to support FlashPix under Debian (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25140).</li>
  <li> OpenCL support writes to $HOME/.config/ImageMagick, if the path does not    exist, two calls to mkdir() are required (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25080).</li>
  <li> Replace  MAGICKCORE_JP2_DELEGATE with MAGICKCORE_LIBOPENJP2_DELEGATE in    magick/static.c (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25153).</li>
  <li> Eliminate thread race condition (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=25168).</li>
<dt>2014-02-18  6.8.8-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.8-7, SVN revision 14908.</li>
<dt>2014-02-16  6.8.8-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Prevent possible buffer overflow in messaging system.</li>
<dt>2014-02-16  6.8.8-7 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Improved detection of JPEG 2000 code streams and .j2c support (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=24942).</li>
  <li> Added morphology to Magick++.</li>
<dt>2014-02-13  6.8.8-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.8-6, SVN revision 14868.</li>
<dt>2014-02-13  6.8.8-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> identify -define identify:locate=maximum locates the position of the    maximum value (stopped working in 6.8.8-5).</li>
<dt>2014-02-03  6.8.8-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.8-5, SVN revision 14838.</li>
<dt>2014-01-31  6.8.8-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix case where an image moment might have a mass of 0 or a Hu moment might    be 0.</li>
  <li> Enhance the TXT coder to read RGB percent values, e.g. 10.008% (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24934).</li>
<dt>2014-01-30  6.8.8-5 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fixed new "-define png:swap-bytes" option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=24818).</li>
<dt>2014-01-29  6.8.8-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.8-4, SVN revision 14676.</li>
<dt>2014-01-29  6.8.8-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Remove comma at end of enumerator list, magick/compare.h.</li>
<dt>2014-01-28  6.8.8-4 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Added transpose and transverse to Magick++. (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=24884).</li>
<dt>2014-01-25  6.8.8-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.8-3, SVN revision 14651.</li>
<dt>2014-01-18  6.8.8-3 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Added ResourceLimits class and text direction/gravity to Magick++.</li>
  <li> Added support for defining dimensions with icon:auto-resize (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=24796).</li>
<dt>2014-01-16  6.8.8-3 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Added "-define png:swap-bytes" option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=24818).</li>
  <li> Added image-&gt;duration to image.h, calculate duration in gif.c, and    report duration in identify.c (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=23276).</li>
<dt>2014-01-15  6.8.8-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The -type truecolor option for a grayscale image returns RGB JPEG (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24814).</li>
  <li> Support JSON coder (.e.g. convert image.jpg image.json).</li>
<dt>2014-01-10  6.8.8-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.8-2, SVN revision 14347.</li>
<dt>2014-01-09  6.8.8-2 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Added option 'icon:auto-resize' to automatically store multiple sizes    in an ico image (requires 256x256 input image).</li>
  <li> Added text kerning/spacing to Magick++. (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=23&amp;t=24716).</li>
<dt>2013-12-30  6.8.8-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The -evaluate-sequence sum returns a proper alpha channel now (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24704).</li>
  <li> Support OpenJPEG for JPEG-2000 support.</li>
  <li> Support IsMagickWandInstantiated() method (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=6&amp;t=24724).</li>
  <li> LevelColorsImageChannel() returns proper status (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24751).</li>
  <li> Generate a proper SVG clipping path (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24752).</li>
  <li> Return image moments with the identify -moments -verbose options.</li>
  <li> Perceptual hash metric for compare utility: -metric PHASH (algorithm    by Fred Wienhaus).</li>
<dt>2013-12-30  6.8.8-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.8-1, SVN revision 14087.</li>
<dt>2013-12-27  6.8.8-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support points argument for draw MSL element.</li>
  <li> Fix misplaced closing parenthesis for strncmp() call in magick/xml-tree.c.</li>
  <li> The -page option now correctly sets the image page offset (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24701).</li>
<dt>2013-12-26  6.8.8-1 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Added support for reading zip compressed PSD files. (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24676).</li>
<dt>2013-12-25  6.8.8-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.8-0, SVN revision 14027.</li>
<dt>2013-12-23  6.8.8-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Blurring with transparency no longer returns a halo (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24665).</li>
  <li> Eliminate ICC profile memory leak for JP2 coder (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=24679).</li>
<dt>2012-12-21  6.8.8-0 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Made librsvg the default svg library for the windows distribution.</li>
<dt>2013-12-10  6.8.7-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.7-10, SVN revision 13965.</li>
<dt>2013-12-10  6.8.7-10  SiuChi Chan  &lt;...&gt;</dt>
  <li> Fix crash when using -resize with GPU acceleration (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24603).</li>
<dt>2013-12-08  6.8.7-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.7-9, SVN revision 13950.</li>
<dt>2013-12-05  6.8.7-9  SiuChi Chan  &lt;...&gt;</dt>
  <li> Silence warning related to GPU memory issues.</li>
  <li> Check if OpenCL is disabled in checkOpenCLEnvironment() method.</li>
  <li> Turn off OpenCL path for Intel OpenCL to avoid crash when not enough memory.</li>
  <li> Fixed a bug for OpenCL convolution.</li>
  <li> Reduce compiler warnings.</li>
<dt>2013-12-03  6.8.7-9 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fixed bug in coders/png.c that caused -define png:color-type=0 to    fail (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=24568).</li>
<dt>2013-11-30  6.8.7-9 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Fixed bug in automatic selection of OpenCL device (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24542).</li>
  <li> Fixed transparency for 32 bits BMP.</li>
<dt>2013-11-28  6.8.7-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The -type bilevel option sometimes returned an all white image (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24444).</li>
  <li> Check blue channel threshold for -solarize option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24473).</li>
<dt>2013-11-27  6.8.7-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.7-8, SVN revision 13850.</li>
<dt>2013-11-27  6.8.7-8  SiuChi Chan  &lt;...&gt;</dt>
  <li> Add an OpenCL-accelerated analog of AddNoiseImage().</li>
<dt>2013-11-23  6.8.7-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.7-7, SVN revision 13827.</li>
<dt>2013-11-23  6.8.7-7  SiuChi Chan  &lt;...&gt;</dt>
  <li> Simplified interface to initialize the OpenCL environment.</li>
  <li> Automatic OpenCL device selection algorithm.</li>
  <li> Support ModulateImage() acceleration.</li>
  <li> Reduce the memory requirement for accelerated blur and unsharp mask.</li>
<dt>2013-11-16  6.8.7-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.7-6, SVN revision 13767.</li>
<dt>2013-11-14  6.8.7-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix possible memory corruption when writing PSD images (bug report from    Justin Grant).</li>
  <li> Constrain color reduction acceleration to positive integers (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=24459).</li>
  <li> fx:maxima.a now returns the alpha value rather than opacity (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24461).</li>
<dt>2013-11-08  6.8.7-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.7-5, SVN revision 13682.</li>
<dt>2013-11-03  6.8.7-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The jpeg:extent option no longer returns double-free exception (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24366).</li>
  <li> Turn off arch-specific optimizations (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24353).</li>
  <li> The -type bilevel option no longer returns black image (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24394).</li>
<dt>2013-11-03  6.8.7-5 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Added support for pangocairo to the windows distribution.</li>
  <li> Added /OpenCL option to configure.exe to enable OpenCL.</li>
  <li> The MIFF/PCL/PDF/PNG/PS2/PS3/TIFF coders will no longer use the quality and    compression of the source image when writing.</li>
<dt>2013-10-31  6.8.7-5 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fixed cut-and-paste error in version.c that caused the "png" delegate    to be listed twice by the "convert -version" command.</li>
<dt>2013-10-30  6.8.7-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.7-4, SVN revision 13616.</li>
<dt>2013-10-26  6.8.7-4  Siu Chi Chan &lt;...@amd.com&gt;</dt>
  <li> Major improvements to the OpenCL infrastructure.</li>
  <li> New OpenCL accelerated algorithms (function image, blur, radial blur,    unsharp mask, resize, contrast, equalize, despeckle).</li>
  <li> Added a new checkbox to enable OpenCL in the configure program.</li>
<dt>2013-10-24  6.8.7-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Color reduction acceleration from Yoya (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=24324).</li>
  <li> -intensity rec709luma -colorspace gray returns gamma 1.0/2.2 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24330).</li>
  <li> Handle 16-bit JPEG-compressed TIFF images (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24331).</li>
  <li> An image -compose ModulusAdd negate-image returns the original (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24337).</li>
  <li> Support %U escape character for resolution units (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=24140).</li>
<dt>2013-10-23  6.8.7-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.7-3, SVN revision 13557.</li>
<dt>2013-10-23  6.8.7-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The -roll option is now working when the +x coordinate is +0 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24314).</li>
<dt>2013-10-22  6.8.7-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.7-2, SVN revision 13534.</li>
<dt>2013-10-20  6.8.7-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Define cmsUInt32Number if LCMS version is &lt; 2000.</li>
  <li> Set xc:gray() intensity to Rec709Luma (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24303).</li>
<dt>2013-10-20  6.8.7-2 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> GetImageDepth() no longer returns incorrect depth when HDRI enabled.</li>
<dt>2013-10-19  6.8.7-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.7-1, SVN revision 13486.</li>
<dt>2013-10-10  6.8.7-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add support for the -complex option, perform complex mathematics on an    image sequence.</li>
  <li> Sync pixel cache for -set colorspace cmyk option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24173).</li>
<dt>2013-09-27  6.8.7-1 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fixed problem with PNG8 reduction in coders/png.c (special case where    exactly 256 colors plus one transparent color are present).</li>
  <li> Set image-&gt;intensity = Rec709LuminancePixelIntensityMethod before    setting the colorspace to Gray while reading a gray PNG (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24205).    This ensures that image-&gt;gamma will be set to 1.0 (linear).</li>
<dt>2013-09-26  6.8.7-1 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Fixed incorrect size of DICOM image (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24135).</li>
  <li> Fixed rounding in YUV coder (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24148).</li>
  <li> Fixed colorspace issue when combining images (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24173).</li>
  <li> Replaced libjpeg with libjpeg-turbo in the windows distribution.</li>
  <li> Added support for liquid rescale to the windows distribution.</li>
  <li> Set image type after syncing the pixel cache.</li>
<dt>2013-09-25  6.8.7-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.7-0, SVN revision 13290.</li>
<dt>2013-09-23  6.8.7-0 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fixed comments about the -quality value in PNG coder (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=24134).</li>
<dt>2013-09-19  6.8.7-0 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Fixed issue with colormap when reading Viff image.</li>
  <li> Added support for opening https files under windows (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24121).</li>
  <li> Fixed incorrect format when reading EPT image from a blob (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24129).</li>
<dt>2013-09-18  6.8.6-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.6-10, SVN revision 13240.</li>
<dt>2013-09-07  6.8.6-10 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Added support for writing DDS files.</li>
<dt>2013-08-29  6.8.6-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Call SVG / MSL xmlCleanupParser() / xmlInitParser() once (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23991).</li>
  <li> Support LEGO Mindstorms EV3 Robot Graphics File format (contributed    by bdwheele@ind.../</li>
  <li> Since glib-2.35.0 g_type_init() was removed (reference    https://bugs.gentoo.org/show_bug.cgi?id=481042).</li>
  <li> New identify define to output the location of the minimum, maximum, or    mean pixel of the image (e.g. identify -define identify:locate=maximum    -define identify:limit=7 rose).</li>
  <li> Column columns / rows no longer inverted for RGF image format (patch    from Brian Wheeler &lt;bdwheele@india...&gt;.</li>
  <li> 16bit PSD images might have a 65536 colormap (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24102).</li>
  <li> Ascii map is now declare as AsciiMap (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24106).</li>
  <li> Return label for identify -format "%l" (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=24105).</li>
  <li> Add option to perform Fourier normalization in either the forward or    inverse transform (e.g -define fourier:normalize=inverse). The default    remains as it was in the forward transform (i.e. -define    fourier:normalize=forward)</li>
<dt>2013-08-26  6.8.6-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.6-9, SVN revision 13087.</li>
<dt>2013-08-16  6.8.6-9  SiuChi Chan  &lt;...&gt;</dt>
  <li> Accelerate numerous image filters with OpenCL under AMD, Intel, and    NVidia.  Adapted from MulticoreWare OpenCL contribution.</li>
<dt>2013-08-10  6.8.6-9 Dirk Lemstra &lt;dirk@snakeware..&gt;</dt>
  <li> Added the following command line options to configure.exe:      /x64, set 64 bit build      /mtd, set project type to: multi threaded dll      /sts, set project type to: single threaded static      /mts, set project type to: multi threaded static      /mtsd, set project type to: multi threaded static dll      /noWizard, skip the wizard and generate the project/solution files</li>
  <li> Fixed infinite loop with jpeg:extent (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23314).</li>
  <li> Fixed performance issue when converting jpeg to png (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23922).</li>
<dt>2013-08-10  6.8.6.9 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Added "-define bmp:format=bmp2|bmp3|bmp4" option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=23875).</li>
<dt>2013-08-07  6.8.6-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Free disk resource if cache resources are exhausted (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23877).</li>
  <li> Return proper EXIF:ISOSpeedRating property value for TIFF images (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23913).</li>
  <li> Escape MIFF properties with null values (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23931).</li>
  <li> Allow negative pixel values in TXT image format (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23923).</li>
  <li> The -fx option no longer crashes for certain expressions (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23932).</li>
  <li> Add support for the -compare option (e.g. convert image.png reference.png    -metric RMSE -compare -format "%[distortion]" info:).</li>
  <li> The internal SVG renderer is now invariant for the "fill" and "opacity"    keywords.</li>
<dt>2013-08-06  6.8.6-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.6-8, SVN revision 12918.</li>
<dt>2013-08-04  6.8.6-8 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Added support for WebP to the Windows distribution (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=23856).</li>
<dt>2013-07-31  6.8.6-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Properly handle interlaced GIF images with less than 8 rows (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23812).</li>
  <li> Ensure image colorspace is sRGB when writing WebP format (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=23841).</li>
  <li> Avoid deadlock with logging subsystem (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=23849).</li>
<dt>2013-07-25  6.8.6-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.6-7, SVN revision 12752.</li>
<dt>2013-07-24  6.8.6-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Missing case for HCLpColorspace (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23811).</li>
<dt>2013-07-21  6.8.6.7 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Do not write "jpeg:" properties in a PNG output file (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23794).</li>
<dt>2013-07-17  6.8.6-7 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Fix memory leak in CloneImageArtifacts and CloneImageProfiles.</li>
  <li> Minor fix for the clipMask property in Magick++.</li>
<dt>2013-07-16  6.8.6-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.6-6, SVN revision 12718.</li>
<dt>2013-07-16  6.8.6-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> JPEG ICC color profile requires null after ICC tag (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23756).</li>
  <li> Don't sync channels for the -unsharp option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23740).</li>
  <li> Magick++ version so bump (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23752).</li>
<dt>2013-07-15  6.8.6-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.6-5, SVN revision 12684.</li>
<dt>2013-07-12  6.8.6-5 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Fixed calculation of pixel area count limit flag ('@').</li>
  <li> Added option to enable OpenMP to configure.exe and improved creation    of x64 project file</li>
<dt>2013-07-10  6.8.6-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Compare exits with a non-zero exit code when no error (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23722).</li>
  <li> Correct calculation of quantization error (reference    https://imagemagick.org/discourse-server//viewtopic.html?t=23734).</li>
  <li> Correct quantize tree walking mistake for RiemersmaDither (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=23735).</li>
<dt>2013-07-10  6.8.6-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.6-4, SVN revision 12661.</li>
<dt>2013-07-09  6.8.6-4 Dirk Lemstra &lt;dirk@snakeware...&gt;</dt>
  <li> Added combineImages, evaluateImages, mergeImageLayers, optimizeImageLayers    optimizePlusImageLayers and separateImages to STL.h (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=23699).</li>
  <li> Added support for the fill area flag ('^') and the pixel area    count limit flag ('@') to the Geometry class of Magick++ (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=23704).</li>
  <li> Enabled automatic linking for static Magick++ in Visual Studio (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=23558).</li>
<dt>2013-07-01  6.8.6-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Thumb property need Height, not height (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23661).</li>
  <li> White pixels previously were written as black for the CIP format (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23677).</li>
  <li> Rec709Luma is sRGB compatible (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23693).</li>
  <li> Colorspace RGB is linear, gamma is 1.0 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23708).</li>
<dt>2013-07-01  6.8.6-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.6-3, SVN revision 12579.</li>
<dt>2013-06-26  6.8.6-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Improve HCL to RGB roundtrip (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22384).</li>
  <li> Prefer external log configuration file to built-in (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23640).</li>
  <li> Do not log in the IsLinkedListEmpty() method to prevent overflow (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23640).</li>
  <li> Fix bug loading TGA image with 32-bit palette (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=17889).</li>
  <li> Color profiles are no longer corrupted for the JPEG format (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23651).</li>
  <li> Repair problem with -emboss / -equalize problem (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23643).</li>
<dt>2013-06-24  6.8.6-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.6-2, SVN revision 12561.</li>
<dt>2013-06-21  6.8.6-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix memory corruption in the MorphologyApply() method.</li>
<dt>2013-06-20  6.8.6.2 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Quiet two warnings about uninitialized variables in coders/png.c</li>
<dt>2013-06-20  6.8.6-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.6-1, SVN revision 12509.</li>
<dt>2013-06-16  6.8.6-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Don't decompand RGB for the -modulate option.</li>
  <li> Improve LCHab and LCHuv roundtrip to / from sRGB (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=23596).</li>
<dt>2013-06-16  6.8.6-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.6-0, SVN revision 12475.</li>
<dt>2013-06-10  6.8.6-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Clone image-&gt;intensity in CloneImageProperties() (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23569).</li>
  <li> Split test suite into smaller tests (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23577).</li>
  <li> Undercolor rectangle was off by one pixel (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23574).</li>
  <li> Don't msync() for a read-only memory-mapped mode (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23531).</li>
  <li> BlurChannelImage() no longer faults for certain CMYK images (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23581).</li>
  <li> Reduce memory requirements for large BMP images.</li>
<dt>2013-06-05  6.8.5-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.5-10, SVN revision 12419.</li>
<dt>2013-06-02  6.8.5-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Improve caption formatting (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23522).</li>
<dt>2013-06-01  6.8.5-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.5-9, SVN revision 12401.</li>
<dt>2013-05-30  6.8.5-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Caption no longer clips long words (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23504).</li>
  <li> The lightness intensity is (min(R',G',B')+max(R',G',B'))/2.0 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23517).</li>
<dt>2013-05-25  6.8.5-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.5-8, SVN revision 12362.</li>
<dt>2013-05-23  6.8.5-8 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Stopped a "-fsanitize-address" warning in the JNG coder.</li>
<dt>2013-05-20  6.8.5-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The -white-threshold option is symmetrical with -black-threshold (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23441);</li>
  <li> Fix multi-line PNM comments (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23442).</li>
  <li> The -format option should not automatically append a newline since the    user can specify a newline in the formatting expression.</li>
  <li> The -level option is no longer returning a darkened image (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23479).</li>
  <li> Identify SVG image as "SVG" (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=27654).</li>
<dt>2013-05-20  6.8.5-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.5-7, SVN revision 12310.</li>
<dt>2013-05-14  6.8.5-7 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Recognize PNG iCCP chunks that contain the sRGB profile and replace    them with the PNG sRGB chunk.  Use "-define png:preserve-iCCP" to    get the previous behavior, of simply copying the iCCP chunk.</li>
<dt>2013-05-11  6.8.5-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Sometimes an sRGB image is masquerading as grayscale (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23370).</li>
  <li> Labels no longer overflow (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22964).</li>
  <li> If more then one exception, return the highest security exception.</li>
  <li> A grayscale image returns a color JPEG for -type TrueColor (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=23421).</li>
  <li> Read PAM comment (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23442).</li>
<dt>2013-05-10  6.8.5-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.5-6, SVN revision 12257.</li>
<dt>2013-05-09  6.8.5-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The stream utility no longer faults when exporting float pixels (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23394).</li>
<dt>2013-05-08  6.8.5-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.5-5, SVN revision 12227.</li>
<dt>2013-05-07  6.8.5-5 Nicolas Robidoux &lt;nicolas.robidoux@gmail...&gt;</dt>
  <li> Change the sample JPEG quantization table xml to something that works    really well with 2x2 Chroma subsampling around quality 75.</li>
<dt>2013-05-06  6.8.5-5 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Eliminate whitespace from image properties that hold PNG chunk data.</li>
<dt>2013-05-05  6.8.5-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The -poly option treats the opacity channel as alpha (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23346).</li>
  <li> The -threshold 50% option returns a 50-50 black and white image (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23354).</li>
  <li> Let user override the TIFF rows per strip  (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=23307).</li>
  <li> Fix transient bug in the -separate option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23335).</li>
<dt>2013-05-01  6.8.5-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.5-4, SVN revision 12089.</li>
<dt>2013-05-01  6.8.5-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add DeleteImageArtifact() for jpeg:extent artifact (thanks to    Jimmy Xie @ Microsoft).</li>
  <li> Track morphology changes per thread to avoid a critical section.</li>
<dt>2013-04-28  6.8.5-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.5-3, SVN revision 12025.</li>
<dt>2013-04-29  6.8.5-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add DeleteImageArtifact() for jpeg:extent artifact (thanks to    Jimmy Xie @ Microsoft).</li>
  <li> Add support for JXR / WDP image format.</li>
<dt>2013-04-28  6.8.5-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.5-2, SVN revision 12013.</li>
<dt>2013-04-28  6.8.5-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Use GetImageOption() for webp options (e.g. webp:lossless).</li>
<dt>2013-04-27  6.8.5-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.5-1, SVN revision 12000.</li>
<dt>2013-04-26  6.8.5-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Recognize xc:gray50 is non-linear.</li>
  <li> Loop over read() until requested bytes are consumed (reference    https://imagemagick.org/discourse-server//viewtopic.html?t=23268).</li>
  <li> Don't use gamma lookup map when HDRI is enabled.</li>
<dt>2013-04-24  6.8.5-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.5-0, SVN revision 11979.</li>
<dt>2013-04-16  6.8.5-0 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Handle benign errors as warnings in the PNG coder.</li>
<dt>2013-04-16  6.8.5-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Don't modify channel values for -separate (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23193).</li>
  <li> The -adaptive-sharpen option is now sharpening properly (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23211).</li>
  <li> Sometimes an image says it's grayscale when it's not (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23217).</li>
  <li> Use malloc() to allocate X image data (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23221).</li>
  <li> If there are more components than quantization tables, the last table is    replicated.</li>
  <li> Removed the ICC profile from the logo: image definition in coders/magick.c;    libpng16 detected that it was a broken sRGB profile.</li>
  <li> Negatives raised to a non-integer power returns NaN's (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23234).</li>
<dt>2013-04-15  6.8.4-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.4-10, SVN revision 11851.</li>
<dt>2013-04-11  6.8.4-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Ensure -define jpeg:extent is restricted to at most 7 iterations (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23179).</li>
  <li> Move X11 font support from annotate.c source module to xwindow.c.</li>
<dt>2013-04-10  6.8.4-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.4-9, SVN revision 11818.</li>
<dt>2013-04-10  6.8.4-9 Bastien Roucaries  &lt;roucaries.basti...&gt;</dt>
  <li> Respect --program-suffix configure script option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23143).</li>
  <li> Update to the newest AX_CHECK_PTHREAD macro from autoconf-archive.</li>
<dt>2013-04-10  6.8.4-9 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Save the calculated angle for "deskew" as the artifact "deskew:angle"</li>
<dt>2013-04-08  6.8.4-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Pass JP2 format type to decoder (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23038).</li>
  <li> Previously tinting a grayscale image returned dark results.</li>
  <li> The -page option only affects new images (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23172).</li>
  <li> Revert 'Move binaries to lib subdirectory and link are created from binary    package' patch.  We're getting too many bug reports.</li>
<dt>2013-04-07  6.8.4-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.4-8, SVN revision 11743.</li>
<dt>2013-04-06  6.8.4-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Include intensity type in the MIFF metadata.</li>
<dt>2013-04-06  6.8.4-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.4-7, SVN revision 11720.</li>
<dt>2013-04-05  6.8.4-7 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Fix -sample sampling point to midpoints of sampling areas</li>
  <li> Add a "sample:offset=" define to allow users to adjust this    sampling point position in terms of percentage (default = 50x50)</li>
<dt>2013-04-02  6.8.4-7 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Don't write a PNG gAMA or cHRM chunk when writing the iCCP or sRGB chunk.</li>
<dt>2013-04-02  6.8.4-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Return MagickWand for the library name for Wand.pc.</li>
  <li> The LCH colorspace makes the round-trip now.</li>
  <li> Revert the default upsampling algortithm for JPEG (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23100).</li>
  <li> Prevent fault when temporary directory is not-writable (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23117).</li>
<dt>2013-04-01  6.8.4-7 Bastien Roucaries  &lt;roucaries.basti...&gt;</dt>
  <li> Prepare X11 support as a plugin.</li>
  <li> Fix compilation under HPUX of perlmagick</li>
<dt>2013-04-01  6.8.4-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.4-6, SVN revision 11640.</li>
<dt>2013-04-01  6.8.4-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The -clut option return a luma grayscale instead of the expected luminance.</li>
  <li> Add moduledir variable to MagickCore.pc to support the MagickFilter and    MagickCore kits.</li>
  <li> Caption fits the sized area (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23085).</li>
<dt>2013-03-31  6.8.4-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.4-5, SVN revision 11619.</li>
<dt>2013-03-30  6.8.4-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix transient bug when writing grayscale MIFF images.</li>
  <li> Adding noise to a gray image returns a gray image as expected.</li>
  <li> Image interlace no longer overwritten by proper cloning for GIF format.</li>
  <li> Extract the clipping path from an image file with clip:myimage.</li>
<dt>2013-03-29  6.8.4-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.4-4, SVN revision 11591.</li>
<dt>2013-03-29  6.8.4-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Update unit test signatures for Q8.</li>
  <li> Resolve send() / recv() socket problems under MinGW.</li>
<dt>2013-03-28  6.8.4-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.4-3, SVN revision 11581.</li>
<dt>2013-03-28  6.8.4-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Revert patch to ContrastStretchImage() to match results from 6.8.3-3.</li>
<dt>2013-03-27  6.8.4-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.4-2, SVN revision 11558.</li>
<dt>2013-03-27  6.8.4-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Use MorphologyApply() rather than MorphologyImage() for -sharpen / -blur.</li>
<dt>2013-03-27  6.8.4-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.4-1, SVN revision 11552.</li>
<dt>2013-03-26  6.8.4-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Sync 'intensity' option with current image.</li>
  <li> Normalize sharpen kernel to match that of 6.8.3-3.</li>
<dt>2013-03-26  6.8.4-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.4-0, SVN revision 11531.</li>
<dt>2013-03-20  6.8.4-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Do not write zero-length TIFF tags (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22957).</li>
  <li> Math library should be private for *.pc.in configuration files (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=22986).</li>
  <li> Do not split words for caption (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=17123).</li>
  <li> Modify the configure script check for the webp delegate library (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=23025).</li>
  <li> The -blur, -gaussian-blur, and -sharpen are now convenience methods    for -morphology convolve.</li>
  <li> Fix infinite loop for 'display -window' (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23028).</li>
  <li> Revert -auto-level patch to match the results of ImageMagick 6.8.3-4.</li>
  <li> Revert g_type_init() patch in svg.c (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=23035).</li>
<dt>2013-03-18  6.8.3-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.3-10, SVN revision 11413.</li>
<dt>2013-03-15  6.8.3-10 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Added IM, libpng, and zlib version info to debug output.</li>
<dt>2013-03-10  6.8.3-10 Bastien Roucaries  &lt;roucaries.basti...&gt;</dt>
  <li> Move PerlMagick arch independent part to 'default' folder.</li>
  <li> Move binaries to lib subdirectory and link are created from binary package.</li>
<dt>2013-03-10  6.8.3-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The TXT image format can now generate output compatible with the    -sparse-color option (e.g. convert image.png sparse-color:image.txt).</li>
  <li> Support -intensity option: method to generate an intensity value from a    pixel.</li>
  <li> Add -similarity-threshold option to the compare utility, the minimum    distortion for a (sub)image match.</li>
  <li> Avoid seq-fault in AcquireQuantumInfo() (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22973).</li>
  <li> Comment resource initializers in magick/resource.c.</li>
<dt>2013-03-10  6.8.3-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.3-9, SVN revision 11294.</li>
<dt>2013-03-09  6.8.3-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add a space after the LastPage option in coders/ps.c (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22940).</li>
<dt>2013-03-08  6.8.3-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.3-8, SVN revision 11283.</li>
<dt>2013-03-05  6.8.3-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> GIF comments are no longer displaced by 1 for animated GIFs (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22901).</li>
  <li> A blur kernel with a zero sigma is unity.</li>
<dt>2013-03-03  6.8.3-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.3-7, SVN revision 11249.</li>
<dt>2013-03-02  6.8.3-7 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Do not replace gAMA found in input with 1/2.2</li>
  <li> Avoid a libpng16 warning about storing unknown chunks.</li>
<dt>2013-03-01  6.8.3-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Improve performance when rendering a caption.</li>
  <li> The compare 'map' image should not be transparent.</li>
  <li> Use only major version for decorating include path.</li>
<dt>2013-02-28  6.8.3-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.3-6, SVN revision 11210.</li>
<dt>2013-02-25  6.8.3-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support built-in 1x1 and 2x1 threshold maps (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=22861).</li>
  <li> Check for webp version (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22867).</li>
<dt>2013-02-25  6.8.3-6 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Relocated png_set_bKGD(), etc., after png_set_IHDR() because they    might depend on members of info_ptr that are set by png_set_IHDR().</li>
<dt>2013-02-25  6.8.3-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.3-5, SVN revision 11170.</li>
<dt>2013-02-23  6.8.3-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Read the WebP extended file format (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=22809).</li>
  <li> Add arch annotation to include path to distinquish ImageMagick versions    6 &amp; 7.</li>
<dt>2013-02-22  6.8.3-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.3-4, SVN revision 11127.</li>
<dt>2013-02-22  6.8.3-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Reduce default memory resource limit under Windows.</li>
<dt>2013-02-19  6.8.3-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.3-3, SVN revision 11105.</li>
<dt>2013-02-19  6.8.3-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Set WEBP lossless / lossy property properly (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=22809).</li>
<dt>2013-02-18  6.8.3-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.3-2, SVN revision 11087.</li>
<dt>2013-02-17  6.8.3-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Semaphore is now unlocked when an X11 annotation exception is thrown.</li>
  <li> WEBP coder enhancement and memory leak patch (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=22809).</li>
<dt>2013-02-16  6.8.3-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.3-1, SVN revision 11060.</li>
<dt>2013-02-16  6.8.3-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Disable FORTIFY_SOURCE to fix a bug in LVVM / OpenMP support.</li>
<dt>2013-02-15  6.8.3-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.3-0, SVN revision 11045.</li>
<dt>2013-02-14  6.8.3-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Webp requires alpha, not opacity (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22793).</li>
<dt>2013-02-12  6.8.3-0 Bastien Roucaries  &lt;roucaries.basti...&gt;</dt>
  <li> Allow PerlMagick to be multi-quantum (e.g. Image::Magick::Q16).</li>
<dt>2013-02-11  6.8.2-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.2-10, SVN revision 11004.</li>
<dt>2013-02-11  6.8.2-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The XPM regression tests passes now.</li>
<dt>2013-02-09  6.8.2-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.2-9, SVN revision 10995.</li>
<dt>2013-02-09  6.8.2-9 Bastien Roucaries  &lt;roucaries.basti...&gt;</dt>
  <li> Export versioning to automake in order to use it for library prefix.</li>
  <li> So bump was incomplete due to no changing map file.</li>
  <li> Change abi name by adding major version to lib name (will simplify    next imagemagick major version release work) and reset release version    to 1 (due to changing abi name).</li>
<dt>2013-02-09  6.8.2-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The DOT coders now compiles with GraphViz 2.30 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22767).</li>
<dt>2013-02-09  6.8.2-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.2-8, SVN revision 10986.</li>
<dt>2013-02-09  6.8.2-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> MagickStatisticImage() method signature was corrected, SO bump required.</li>
<dt>2013-02-08  6.8.2-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.2-7, SVN revision 10965.</li>
<dt>2013-02-08  6.8.2-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Ensure MagickCore compiles with a C++ compiler.</li>
<dt>2013-02-07  6.8.2-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.2-6, SVN revision 10961.</li>
<dt>2013-02-07  6.8.2-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Don't destroy an image that's already destroyed (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22747).</li>
  <li> Montage is now invariant to the font when no label image label exists.</li>
<dt>2013-02-06  6.8.2-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.2-5, SVN revision 10952.</li>
<dt>2013-02-05  6.8.2-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> FITS now properly renders the 16 bit signed integer format.</li>
<dt>2013-02-04  6.8.2-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.2-4, SVN revision 10909.</li>
<dt>2013-02-02  6.8.2-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Do not subsample raw CMYK JPEG images (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22731).</li>
<dt>2013-02-02  6.8.2-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.2-3, SVN revision 10894.</li>
<dt>2013-02-01  6.8.2-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Respect endian for FITS image format.</li>
  <li> Remove artifact when drawing a circle (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22724).</li>
<dt>2013-02-01  6.8.2-3 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Deleted some code added to the PNG decoder in SVN revision 10825; it    was failing to handle transparency in paletted images (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22720).</li>
  <li> Compare alpha to "QuantumRange-OpaqueOpacity" not just "OpaqueOpacity"    when detecting transparency in the PNG encoder.</li>
<dt>2013-02-01  6.8.2-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.2-2, SVN revision 10883.</li>
<dt>2013-01-30  6.8.2-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Properly initialize new throttle resource limit.</li>
<dt>2013-01-29  6.8.2-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.2-1, SVN revision 10859.</li>
<dt>2013-01-28  6.8.2-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix 'format not a string literal' problem (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22656).</li>
<dt>2013-01-28  6.8.2-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.2-0, SVN revision 10831.</li>
<dt>2013-01-21  6.8.2-0 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Impose a 32k limit on the number of text chunks that will be read.</li>
  <li> Implemented PNG00, PNG48 and PNG64 PNG subformats.</li>
  <li> Avoid reading back PNG pixel rows while reading a transparent PNG (    by using a local "alpha" value instead of GetPixelOpacity()).</li>
<dt>2013-01-21  6.8.2-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Avoid a rare thread lock for timeout event (e.g. MAGICK_TIME_LIMIT=30).</li>
  <li> Support a distributed pixel cache.</li>
  <li> Fix numerical stability problem for convolution.</li>
  <li> Increase segment stack size for -draw option.</li>
<dt>2013-01-18  6.8.1-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.1-10, SVN revision 10667.</li>
<dt>2013-01-08  6.8.1-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add the same noise value to each channel of a grayscale image (+noise).</li>
  <li> Fix recursive descent within XGetWindowImage() (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22550).</li>
  <li> Multi-plane MatLab images now render properly (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22586).</li>
<dt>2013-01-06  6.8.1-10 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fixed LBR01 (left-bit-replication) macro in coders/png.c; problem reported    by the clang compiler.</li>
  <li> Chromaticity values were read in the wrong order in the cHRM chunk    when it accompanied the sRGB chunk. Libpng applications built with    libpng16 and later will detect this and issue a warning (PNG files    previously written with the cHRM chunk are OK).  Removed the    troublesome redundant png_set_cHRM() and png_set_sRGB() calls.</li>
  <li> Look for libpng17 and libpng16 while configuring PNG support.</li>
<dt>2013-01-06  6.8.1-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.1-9, SVN revision 10518.</li>
<dt>2013-01-06  6.8.1-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Type correction in blob code.</li>
<dt>2013-01-02  6.8.1-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.1-8, SVN revision 10481.</li>
<dt>2013-01-02  6.8.1-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Check for a density of zero when rendering with Pango (reference    https://imagemagick.org/discourse-server//viewforum.html?f=3).</li>
<dt>2013-01-01  6.8.1-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.1-7, SVN revision 10468.</li>
<dt>2013-01-01  6.8.1-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> magick-baseconfig.h is architecture dependant;    make headers quantum depth neutral (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=22509).</li>
<dt>2013-01-01  6.8.1-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.1-6, SVN revision 10461.</li>
<dt>2012-12-31  6.8.1-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Repair numerical stability issue with gradients (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22507).</li>
<dt>2012-12-30  6.8.1-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.1-5, SVN revision 10428.</li>
<dt>2012-12-29  6.8.1-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Correction to scientific notation for the -evaluate log option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=22496).</li>
<dt>2012-12-29  6.8.1-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.1-4, SVN revision 10420.</li>
<dt>2012-12-28  6.8.1-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support scientific notation for the -evaluate log option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=22496).</li>
<dt>2012-12-25  6.8.1-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.1-3, SVN revision 10394.</li>
<dt>2012-12-25  6.8.1-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Remove pow() dependency from public header.</li>
<dt>2012-12-24  6.8.1-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.1-2, SVN revision 10385.</li>
<dt>2012-12-23  6.8.1-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Magickcore headers recently used pow() in the inline functions inside    public headers.  Thus in order to avoid library depends problem, put -lm    in library depends (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22483).</li>
  <li> Negative exponentiation bug fix (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22484).</li>
<dt>2012-12-23  6.8.1-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.1-1, SVN revision 10350.</li>
<dt>2012-12-23  6.8.1-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> More large image performance tuning.</li>
<dt>2012-12-20  6.8.1-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.1-0, SVN revision 10327.</li>
<dt>2012-12-16  6.8.1-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Return non-zero exit status if two images differ for the compare utility.</li>
  <li> Large image performance tuning.</li>
<dt>2012-12-15  6.8.0-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.0-10, SVN revision 10236.</li>
<dt>2012-12-13  6.8.0-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Improve exception reporting when AcquireAuthenticCacheView() fails.</li>
<dt>2012-12-13  6.8.0-10 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Minor tweeks and commenting of Virtual Pixel shortcuts in    resampling filters.</li>
  <li> Added -define "shepards:power" to control the power setting (def=2)    for Shepards Method in -distort and  -sparse-color    https://imagemagick.org/discourse-server//viewtopic.html?t=22416</li>
<dt>2012-12-13  6.8.0-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.0-9, SVN revision 10182.</li>
<dt>2012-12-10  6.8.0-9 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Prepended "Acquire" and "Relinquish" to debugging log messages in    magick/resource.c that only showed the filename.</li>
  <li> Added temporary file-count diagnostics to tests/validate.c (this required    exporting GetPathTemplate() from magick/resource.c</li>
  <li> Eliminate file leak when writing the JNG image format.</li>
<dt>2012-12-09  6.8.0-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Further support for associating quantum depth with ABI (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22352).</li>
  <li> Check for negative square root when resampling (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22398).</li>
<dt>2012-12-07  6.8.0-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.0-8, SVN revision 10118.</li>
<dt>2012-11-28  6.8.0-8 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fixed problem with writing grayscale PNG, bug introduced in version    6.8.0-0 or 6.8.0-1 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22355).</li>
<dt>2012-11-28  6.8.0-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Allow temporary-path policy to override temporary path environment    variables (e.g. MAGICK_TMPDIR).</li>
  <li> Implement symbol versioning (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22352).</li>
  <li> ABI is incompatible if quantum depth change. Add abi indication to library    name, thanks to Bastien Roucaries (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22352).</li>
  <li> The stream utility no longer returns a black image (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22046).</li>
<dt>2012-11-26  6.8.0-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.0-7, SVN revision 10029.</li>
<dt>2012-11-25  6.8.0-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Width value is optional for label coder (e.g. -size x40 label:Magick).</li>
<dt>2012-11-20  6.8.0-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.0-6, SVN revision 10024.</li>
<dt>2012-11-21  6.8.0-6 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fixed an old bug in chromaticity decoding in coders/bmp.c (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22294).</li>
  <li> Fixed bug in coders/bmp.c that failed to read a paletted image    properly (fix by J. Summers, reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22316).</li>
<dt>2012-11-21  6.8.0-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed bug in coders/bmp.c that failed to read transparency    properly (fix by J. Summers, reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22312).</li>
<dt>2012-11-20  6.8.0-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.0-5, SVN revision 10001.</li>
<dt>2012-11-15  6.8.0-5 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Added % escape prefixes %[artifact:..] and %[option:..]    Including glob search,  EG:  -print "__Options__\n%[option:*]"    (backport from IMv7 changes)</li>
<dt>2012-11-10  6.8.0-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Revert HCL saturation strategy patch, it improperly clips white to black.</li>
  <li> Default to -dEPSCrop for Ghostscript unless eps:use-crop=false (reference    https://bugzilla.redhat.com/show_bug.cgi?id=832690#c2).</li>
  <li> Add support for -poly, build a polynomial from the image sequence and the    corresponding terms (coefficients and degree pairs).</li>
  <li> Support the OLE Macintosh image format (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=22257).</li>
<dt>2012-11-08  6.8.0-5 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Implemented faster decoding of interlaced PNG images.</li>
<dt>2012-11-03  6.8.0-5 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Skip PNG palette-building when it is not needed.</li>
  <li> Let libpng expand sub-8-bit pixels while reading a PNG file.</li>
<dt>2012-11-01  6.8.0-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.0-4, SVN revision 9832.</li>
<dt>2012-10-31  6.8.0-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> PFM images are grayscale, not sRGB (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22178).</li>
  <li> Keep YCbCR JPEG compressed TIFF images in the YCbCr colorspace (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22148).</li>
<dt>2012-10-27  6.7.9-4 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Don't write sRGB chunk if image-&gt;gamma isn't close to (1/2.2), i.e.,    (0.45 &lt;= gamma &lt;= 0.46) (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22139).</li>
<dt>2012-10-25  6.8.0-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.0-3, SVN revision 9783.</li>
<dt>2012-10-21  6.8.0-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> TIFF positional information must be positive (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22106).</li>
  <li> Set the compression quality for the Webp image format.</li>
<dt>2012-10-21  6.8.0-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.0-2, SVN revision 9738.</li>
<dt>2012-10-20  6.8.0-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Wait for more bytes if the number of returned bytes is less than    requested in ReadBlob().</li>
  <li> Prefer fullname property for font, if it exists, otherwise family + style.</li>
<dt>2012-10-17  6.8.0-2 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Added LanczosRadius filter, that blurs an EWA Lanczos to a integer    support size. Equivalent to Lanczos in tensor resize case.</li>
<dt>2012-10-16  6.8.0-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.0-1, SVN revision 9632.</li>
<dt>2012-10-12  6.8.0-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix color management for the -solarize option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22059).</li>
  <li> Some colormap unit tests failed for a quantum depth of 32 (problem    report from Glenn Randers-Pehrson).</li>
<dt>2012-10-12  6.8.0-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.8.0-0, SVN revision 9594.</li>
<dt>2012-10-07  6.8.0-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Check -fx expression early to prevent fault.</li>
  <li> Performance boost for iOS / Android requires a SO major version increment.</li>
  <li> Corrupt PNG image could cause a memory leak (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22024).</li>
<dt>2012-10-06  6.7.9-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.9-10, SVN revision 9514.</li>
<dt>2012-10-01  6.7.9-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> SVG specs says "1pt" equals "1.25px" (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21967).</li>
  <li> Support TIFF proprietary tag 34118.</li>
  <li> The define option is no longer "lazy" interpretation (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=22007).</li>
<dt>2012-10-01  6.7.9-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.9-9, SVN revision 9473.</li>
<dt>2012-09-27  6.7.9-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix memory leak in JPEG decoder when reading a corrupt image (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21948).</li>
  <li> Add exif:thumbnail namespace to distiguish orientation tag (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21938).</li>
  <li> Respect DPX data offsets (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21960).</li>
<dt>2012-09-26  6.7.9-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.9-8, SVN revision 9437.</li>
<dt>2012-09-24  6.7.9-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Off-by-one error in DrawPolygonPrimitive().</li>
  <li> Fix memory leak in WebP decoder (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21943).</li>
  <li> Certain caption phrases were cut off (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21550).</li>
<dt>2012-09-22  6.7.9-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.9-7, SVN revision 9410.</li>
<dt>2012-09-20  6.7.9-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> jpeg:sampling-factor might be an image property or an option (reference<dt>https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=21884).</dt>
  <li><dt>2012-09-15  6.7.9-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.9-6, SVN revision 9375.</li>
<dt>2012-09-14  6.7.9-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Don't compand the YCC colorspace, its already companded.</li>
<dt>2012-09-12  6.7.9-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.9-5, SVN revision 9358.</li>
<dt>2012-09-12  6.7.9-5 Nicolas Robidoux &lt;nicolas.robidoux@gmail...&gt;</dt>
  <li> Merge static inline Sigmoidal functions from IM7 to IM6.</li>
<dt>2012-09-12  6.7.8-5 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> All untapered windowing filters Welch and Cosine changed to use a 3 lobe    support (like Lanczos). These were not part of the original 'zoom' program.</li>
<dt>2012-09-11  6.7.9-5 Nicolas Robidoux &lt;nicolas.robidoux@gmail...&gt;</dt>
  <li> sigmoidal-contrast: prevent out of range argument.</li>
<dt>2012-09-09  6.7.9-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The number of default OpenMP threads is 1 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=23&amp;t=21838).</li>
  <li> Only first image of raw grayscale image was set to GRAY (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21428).</li>
  <li> Change sigmoidal-contrast define to inline method to conform with ANSI-C    requirements.</li>
<dt>2012-09-10  6.7.9-5 Nicolas Robidoux &lt;nicolas.robidoux@gmail...&gt;</dt>
  <li> enhance.c improvements:</li>
  <li> Add tanh/atanh clone of legacy sigmoidal map (faster &amp; more accurate);</li>
  <li> Add final ClampToQuantum in sigmoidal colormap loop;</li>
  <li> Remove OpenMP for threads that do not loop over rows;</li>
  <li> Immediate no-op exit from sigmoidal-contrast if contrast&lt;MagickEpsilon.</li>
<dt>2012-09-08  6.7.9-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.9-4, SVN revision 9282.</li>
<dt>2012-09-05  6.7.9-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Identify image files with embedded '%d' (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21798).</li>
  <li> Don't include TIFF header for compress.c source module    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21800).</li>
<dt>2012-09-01  6.7.9-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.9-3, SVN revision 9202.</li>
<dt>2012-08-28  6.7.9-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support -channel sync option for -equalize (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21746).</li>
  <li> Don't remove color profile when setting the image colorspace (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21747).</li>
  <li> Recognize ICO format in URL (e.g. http://www.google.com/favicon.ico).</li>
  <li> Don't define HAVE_BOOLEAN for JPEG under MinGW (reference    https://imagemagick.org/discourse-server//viewtopic.html?t=14071).</li>
<dt>2012-08-26  6.7.9-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.9-2, SVN revision 9120.</li>
<dt>2012-08-25  6.7.9-2 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fixed bug in Q32 builds that erroneously read grayscale 16-bit PNGs    as PseudoColor.</li>
<dt>2012-08-24  6.7.9-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support -channel option for -solarize (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21738).</li>
<dt>2012-08-23  6.7.9-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.9-1, SVN revision 9095.</li>
<dt>2012-08-22  6.7.9-1 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> The gAMA chunk with gamma==1.0 was ignored while deciding whether to set    the image colorspace to GRAY when reading grayscale PNG images.</li>
<dt>2012-08-16  6.7.9-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Adjust scaling for Luv colorspace conversion (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21664).</li>
  <li> Copy alpha channel of the -median option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=21694).</li>
  <li> Don't add matte channel for -coalesce if input images don't have one.</li>
  <li> Prevent memory leak in ImageToBlob() if image write fails.</li>
  <li> In rare cases, label would not auto-size properly (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21716).</li>
  <li> Identify command now reports the image colorspace for non-verbose results.</li>
  <li> Account for stroke width when rendering a caption (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=21721).</li>
  <li> Don't colorize alpha channel if it is not active (reference   https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21547</li>
<dt>2012-08-15  6.7.9-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.9-0, SVN revision 8970.</li>
<dt>2012-08-14  6.7.9-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> RGB -&gt; HCL, return correct hue when g &lt; b &lt; r (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=21646).</li>
  <li> Prefer inkscape for best SVG compliance.</li>
  <li> HCL -&gt; RGB conversion enhancement (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=21663).</li>
  <li> Utilize inkscape if it is in your execution path otherwise RSVG.  If    neither is available, revert to the internal SVG renderer.</li>
  <li> Initialize image-&gt;x_resolution and y_resolution to 0 in image.c    (previously they were initialized to DefaultResolution, which is 72.0).</li>
<dt>2012-08-12  6.7.8-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.8-10, SVN revision 8915.</li>
<dt>2012-08-10  6.7.8-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Respect the image mask for option -selective-blur (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21631).</li>
  <li> Fix multiple issues with BMPv5 colorimetry (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21640).</li>
<dt>2012-08-10  6.7.8-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.8-9, SVN revision 8902.</li>
<dt>2012-08-07  6.7.8-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Selective blur stopped working after version 6.7.4-10 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21604).</li>
  <li> Color reduction now handles transparent pixel properly (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18463).</li>
  <li> ClipImagePath() now returns a valid SVG XML for Windows x64 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21617).</li>
<dt>2012-08-05  6.7.8-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.8-8, SVN revision 8845.</li>
<dt>2012-08-03  6.7.8-8 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Added 2d named convolution kernel Binomial (for Fred Wienhaus)</li>
<dt>2012-08-01  6.7.8-8 Nicolas Robidoux &lt;nicolas.robidoux@gmail...&gt;</dt>
  <li> Clean up sigmoidal-contrast.</li>
<dt>2012-07-31  6.7.8-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Use ConcatenateString() for multi-block GIF comments.</li>
  <li> Caption no longer chops off text (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21558).</li>
  <li> Support LUV colorspace.</li>
  <li> Support HCL colorspace.</li>
  <li> Don't transform the composite image colorspace, set it instead.</li>
  <li> Interpret -border 5% as 5% of width and 5% of height (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21537).</li>
  <li> Don't normalize zero-sum kernels (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21584).</li>
  <li> Transform grayscale to linear RGB if fill color is non-gray (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21586).</li>
<dt>2012-07-30  6.7.8-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.8-7, SVN revision 8766.</li>
<dt>2012-07-28  6.7.8-7 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Update certain typecasts for libpng &lt; and &gt;= 1.4.0 to allow memory    allocation &gt; 4GB and prevent a DOS.</li>
<dt>2012-07-28  6.7.8-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Set DICOM grayscale images to the gray colorspace.</li>
  <li> Missing grestore from ps3.c (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=20445).</li>
  <li> Use GetMagickResourceLimit(ThreadResource) to set the # threads (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21543).</li>
<dt>2012-07-22  6.7.8-6 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Only report sRGB, iCCP, gAMA, cHRM chunks in "identify" output when    these chunks were actually present in input, and not when they were    inserted by the PNG decoder.</li>
<dt>2012-07-22  6.7.8-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.8-6, SVN revision 8720.</li>
<dt>2012-07-21  6.7.8-6 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Make sure "intent" is initialized in the PNG decoder.</li>
<dt>2012-07-21  6.7.8-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.8-5, SVN revision 8717.</li>
<dt>2012-07-20  6.7.8-5 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Corrected an error in the logic introduced in 6.7.8-3 to always write    a color PNG when image-&gt;colorspace is sRGB.</li>
<dt>2012-07-19  6.7.8-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Inverse YUV colorspace now produces pure red as expected.</li>
  <li> Support halted streams:    cat image.pnm | convert 'pnm:fd:0[0]' 'pnm:fd:0[0]' x:.</li>
<dt>2012-07-18  6.7.8-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.8-4, SVN revision 8697.</li>
<dt>2012-07-17  6.7.8-4 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Write ICON subimage as PNG32, only when its dimensions are 256x256    and image-&gt;compression is UndefinedCompression or ZipCompression.</li>
<dt>2012-07-16  6.7.8-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> sRGB color gradients should be in a non-linear colorspace.</li>
  <li> Fix -fx to interpret scientific notation properly.</li>
  <li> The draw epsilon was too sensitive.</li>
<dt>2012-07-15  6.7.8-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.8-3, SVN revision 8675.</li>
<dt>2012-07-14  6.7.8-3 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Always write a color PNG when image-&gt;colorspace is sRGB.</li>
<dt>2012-07-08  6.7.8-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Attenuate random noise (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21387).</li>
  <li> Return linear grayscale for gradient:white-black.</li>
  <li> Promote linear grayscale to linear RGB when compositing.</li>
  <li> gradient:white-black is sRGB whereas gradient:'icc-color(rgb,255,255,255)-    icc-color(rgb,0,0,0)' is linear RGB whereas gradient:'gray(255)-gray(0)' is    linear grayscale.</li>
  <li> Revert sigmoidal contrast define (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=22&amp;t=21415).</li>
<dt>2012-07-08  6.7.8-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.8-2, SVN revision 8621.</li>
<dt>2012-07-02  6.7.8-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Set the colorspace to linear gray when reading intensity values (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21362).</li>
  <li> Don't overrun pixel buffer on inverse fourier for odd image widths.</li>
  <li> Change LAB encoding to permit blurring, resize, etc.    (signed A and B channel values now stored using a 50% bias)</li>
    Additional.. This removes a non-linear discontinuity from stored LAB space    values. As a result you can now Blur, Compose, Resize and Distort in LAB    colorspace, without problems that previously existed.</li>
<dt>2012-07-04  6.7.8-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.8-1, SVN revision 8595.</li>
<dt>2012-07-02  6.7.8-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> A single argument -stereo option now works as documented (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21348).</li>
  <li> The -separate option returns channels as linear grayscale.</li>
  <li> Remove the sRGB color profile when converting to grayscale (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=21355).</li>
<dt>2012-06-29  6.7.8-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.8-0, SVN revision 8554.</li>
<dt>2012-06-28  6.8.0-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Increase epsilon value, smallest difference between two points (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=15870).</li>
<dt>2012-06-28  6.7.7-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.7-10, SVN revision 8534.</li>
<dt>2012-06-26  6.7.7-10 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Don't attempt to use Z_RLE compression strategy with old zlib (prior to    zlib-1.2.0) that does not support it.</li>
  <li> Increase PLTE chunk length to accommodate background color in indexed PNG    (reference imagemagick.org/discourse-server/viewtopic.html?f=1&amp;t=21288).</li>
  <li> Added png:PLTE.number_colors to verbose output.</li>
<dt>2012-06-25  6.7.7-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Permit linear RGB for PNM and TIFF image formats.</li>
  <li> Fix conflicting types for 'GenerateDifferentialNoise' (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21286).</li>
  <li> Fix cast to pointer from integer of different size (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21286).</li>
  <li> Fix broken MSL profile tag (reference    https://imagemagick.org/discourse-server//viewforum.html?f=9).</li>
  <li> Better recognition of a CMYK PDF.</li>
<dt>2012-06-24  6.7.7-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.7-9, SVN revision 8460.</li>
<dt>2012-06-23  6.7.7-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Some options were incorrectly promoting linear gray to sRGB.</li>
<dt>2012-06-22  6.7.7-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.7-8, SVN revision 8432.</li>
<dt>2012-06-15  6.7.7-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support the -features option in convert / mogrify.</li>
  <li> Add support for the %[type] property.</li>
<dt>2012-06-15  6.7.7-8 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Geometry arguments accept multiple sign character for offsets    EG: "-10-10", "-+10-+10", or "+-10+-10" generate negative offsets    while "+10+10", "++10++10", or "--10--10" generate positive offsets,    that is, you can not only optionally have a sign in offset variable    substitutions, but can negate that substitution if you so desire.</li>
<dt>2012-06-12  6.7.7-8 Nicolas Robidoux &lt;nicolas.robidoux@gmail...&gt;</dt>
  <li> Refactor Catmull-Rom and Spline "interpolation" using    state-of-the-art unpublished formulas.</li>
  <li> Fix incorrect transparency handling of "interpolative" cubic    B-spline smoothing.</li>
<dt>2012-06-09  6.7.7-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Initialize alpha channel when floodfill fill color is not opaque.</li>
  <li> XYZ and Lab colorspace conversion tweaked (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21161).</li>
<dt>2012-06-08  6.7.7-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.7-7, SVN revision 8219.</li>
<dt>2012-06-06  6.7.7-7 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Disabled the new libpng-1.5.10 test for invalid palette index when    reading a PNG or MNG (for speed), or when writing a MNG (because a    zero-length PLTE is valid in a MNG when the global PLTE is used).</li>
  <li> Display the PNG colortype as a string in "identify -verbose" output.</li>
<dt>2012-06-06  6.7.7-7 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Small refactor of Average Interpolators (save some multiplies)</li>
  <li> Added 'Spline' as a filter type as an alias to 'Cubic'. This brings both    Catrom and Spline -filter and -interpolate methods in line.  Cubic should    only be used when defining a general cubic using expert settings or    when listed in "filter:verbose" debugging output.</li>
<dt>2012-06-05  6.7.7-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.7-6, SVN revision 8164.</li>
<dt>2012-06-05  6.7.7-6 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Renamed 'Bicubic' interpolation the more precise definition 'Catrom'    Old name kept (but hidden) for backward compatibility in bit CLI and    API interfaces.</li>
<dt>2012-06-01  6.7.7-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The -set colorspace option sets the colorspace, it does not transform it.</li>
  <li> Assume grayscale images in the GIF format are linear.</li>
  <li> Add Nicolas Robidoux's bicubic interpolation method (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=21118).    This replaces the old 'bicubic' which was very extreme 'cardinal' cubic.</li>
  <li> Add DuPont &amp; XFIG copyright to NOTICE.</li>
  <li> sRGB.icc has an unfriendly license, remove it.</li>
  <li> MinGW does not define KEY_WOW64_32KEY (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=21155).</li>
  <li> -evaluate log properly handles negative pixel values.</li>
  <li> The display program displays the ImageMagick logo on EOF.</li>
<dt>2012-05-31  6.7.7-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.7-5, SVN revision 8099.</li>
<dt>2012-05-31  6.7.7-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Set terminal character for GIF comment.</li>
<dt>2012-05-30  6.7.7-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.7-4, SVN revision 8096.</li>
<dt>2012-05-30  6.7.7-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> 'convert 1-bit.tif -rotate 90 ...' returns a 1-bit TIFF image as expected.</li>
<dt>2012-05-29  6.7.7-4 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Ignore APNG chunks even when libpng is built with the "APNG patch".</li>
<dt>2012-05-29  6.7.7-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.7-3, SVN revision 8089.</li>
<dt>2012-05-28  6.7.7-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix bug with stroke-dasharray (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21090).</li>
  <li> In rare cases, caption would not word-wrap properly (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21106).</li>
  <li> Don't set alpha pixels in SetImageVirtualPixelMethod() unless    image area is well defined (i.e. != 0) (reference    https://imagemagick.org/discourse-server//viewtopic.html?t=21110).</li>
<dt>2012-05-27  6.7.7-3 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Trialing the addition of new interpolation methods      Average16         average of 16 pixels around sampling point      Average9          9 pixels around nearest pixel      Average4          Average of 4 pixels around sampling point      Background        Background color (for resampling error checking)      Blend             Blend of closest 1, 2 or 4 pixel neighbors    NOTE: 'Average' is now equivalent to 'Average4',    previous to this version it was equivalent to 'Average16'.    The 'Background' method is for showing 'resample errors' be it    accidental, or on purpose.  See IM Examples, Cylindrical Filters.</li>
  <li> added -interpolative-resize added around this version</li>
<dt>2012-05-26  6.7.7-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.7-2, SVN revision 8066.</li>
<dt>2012-05-26  6.7.7-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> MagickDelay() is in microseconds, not milliseconds.</li>
<dt>2012-05-25  6.7.7-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.7-1, SVN revision 8059.</li>
<dt>2012-05-20  6.7.7-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> In rare cases, caption would not word-wrap properly (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21044).</li>
  <li> Set the JPEG image colorspace after the columns / rows are set (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21059).</li>
  <li> Potential gray images are in either the gray or RGB colorspaces.</li>
  <li> Restore MagickSetImageEndian() method (reference    https://imagemagick.org/discourse-server//viewtopic.html?t=20425&amp;p=81525).</li>
  <li> Respect resolution when rendering SVG (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21076).</li>
<dt>2012-05-20  6.7.7-1 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Delegates now 'spawn' faster (replaced 2 second sleep!) (for "show:")</li>
<dt>2012-05-17  6.7.7-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.7-0, SVN revision 7980.</li>
<dt>2012-05-17  6.7.7-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Group4-compressed TIFF / PDF image formats stopped working (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=21039).</li>
  <li> Auto convert images in the grayscale colorspace to sRGB (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=21031).</li>
<dt>2012-05-16  6.7.6-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.6-10, SVN revision 7952.</li>
<dt>2012-05-14  6.7.6-10 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Reset color info in grayscale PNG images to gamma=1.0, undefined    rendering_intent and chromaticity only when reading images that don't    have a gAMA, sRGB, or cHRM chunk.</li>
<dt>2012-05-14  6.7.6-10 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Added a low level "Cosine" Windowing Filter -- Request by Nicholas Robidox</li>
  <li> Fixed Kaiser Window Filter (was producing all zeros!)</li>
  <li> Kaiser Window Function now uses the working value "filter:kaiser-beta"    (formerly "filter:alpha" in previous versions)</li>
  <li> Setting the expert option "filter:kaiser-alpha" will override this,    (after being multiplied by PI).</li>
  <li> Added resampling 'weight' sanity check in EWA resampling.</li>
  <li> Set default for histogram:unique-colors to be 'true' when undefined    Returning it to previous behavior.</li>
  <li> Refactor of InterpretImageProperties() (percent escape substitutions)</li>
  <li> Add "gamma" as a -set and % escape to access image gamma meta-data</li>
<dt>2012-05-05  6.7.6-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.6-9, SVN revision 7812.</li>
<dt>2012-05-05  6.7.6-9 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Allow braced single letter escapes, EG "%[x]" as equivalent to "%x"</li>
<dt>2012-05-04  6.7.6-9 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Don't write an invalid PNG sRGB chunk when rendering intent is undefined.</li>
<dt>2012-05-01  6.7.6-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> EXR images are in the linear RGB colorspace with a gamma of 1.0 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=20895).</li>
  <li> Correct annotation offset for right-to-left labels (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=20884).</li>
  <li> The -level 100x0% now produces the equivalent of -negate (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=20889).</li>
  <li> Virtual pixel transparent no longer cause fatal exception (reference    https://imagemagick.org/discourse-server//viewtopic.html?t=20903).</li>
  <li> Promote gray image to sRGB when color is injected.</li>
<dt>2012-04-29  6.7.6-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.6-8, SVN revision 7705.</li>
<dt>2012-04-25  6.7.6-8 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Gaussian Filter Fixed.    For some strange reason it was half the width it should be with an    effective sigma of 0.25 (not 0.5).  This was the real reason "variable    blur" was not blurring enough.</li>
<dt>2012-04-24  6.7.6-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Colorspace round-trip unit tests now work for Q32.</li>
<dt>2012-04-23  6.7.6-8 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Added the RobidouxSharp filter (originally defined Dec 2011)</li>
  <li> Fixed Variable Blur - bad blur area calculation    Also Gaussian is sampling properly. Substitute the faster Cubic for now.</li>
  <li> Convert no longer will do an implicit write to a single space image.</li>
<dt>2012-04-21  6.7.6-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.6-7, SVN revision 7587.</li>
<dt>2012-04-21  6.7.6-7 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Error when doing an implicit (final) write to a single space filename.    This is typically a failed line continuation and is very common.    Using an explicit "-write" will let you do this.</li>
<dt>2012-04-20  6.7.6-7 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Allow +-X+-Y as geometry arguments.</li>
<dt>2012-04-17  6.7.6-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Distinguish grayscale as sRGB not linear RGB.</li>
<dt>2012-04-16  6.7.6-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.6-6, SVN revision 7536.</li>
<dt>2012-04-11  6.7.6-6 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Always unlock the semaphore before returning from the png codec, either    by a "return" or png_error(); changed all Magick*Exception() calls    after setjmp() to png_error() to ensure proper cleanup (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=16883).</li>
<dt>2012-04-10  6.7.6-6 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Fixed log known alpha*kernel normalization bug in morphology convolve.</li>
    Convolve kernel weights have been separated from alpha blend handling.    Un-normalized kernels applied to images with active alpha will no longer    be auto-normalized due to the effect of alpha blending.  The bug causes    images using the default channel setting and having an alpha channel to    automatically 'normalize' the results of a convolve during the handling    of alpha blending.  This probably would cause severe effects when a    zero-summing kernel is being used on an image containing an active (though    likely fully-opaque) alpha channel, as division by near zero weights    would cause extreme color values in results.  This bug is not normally    seen as convolution, which is normally applied only to fully-opaque    images. And using a zero-summing kernel on an image with alpha also    results in a transparent image!  This is why it was not fixed up until now.</li>
<dt>2012-04-08  6.7.6-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Pixel allocation for Pango is stride*rows not stride*columns.</li>
  <li> Set the image resolution for Postscript files with an embedded Photoshop    profile.</li>
  <li> Ensure proper round trips to / from sRGB (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=20751).</li>
<dt>2012-04-07  6.7.6-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.6-5, SVN revision 7483.</li>
<dt>2012-04-06  6.7.6-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Avoid fault in SetCacheAlphaChannel() (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=20681).</li>
  <li> Don't assume EXIF orientation tag is 2 bytes.</li>
<dt>2012-04-04  6.7.6-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.6-4, SVN revision 7356.</li>
<dt>2012-04-01  6.7.6-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Properly set the XCF alpha channel values (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=20642).</li>
  <li> Support 'orientation' property (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=20650).</li>
  <li> The default RGB colorspace transform is now linear (reference    https://imagemagick.org/discourse-server//viewtopic.html?p=82839#p82839).</li>
  <li> Prevent EXIF integer overflow (CVE-2012-1610).</li>
<dt>2012-03-30  6.7.6-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.6-3, SVN revision 7290.</li>
<dt>2012-03-29  6.7.6-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Don't copy invalid memory when reading TIFF EXIF IFD (CERT-FI case 634116,    CVE-2012-1798).</li>
  <li> Bail if we receive excessive JPEG warnings (CERT-FI case 634117,    CVE-2012-0260).</li>
  <li> Properly initialize EXIF buffers to prevent JPEG EXIF tag crash (CERT-FI    case 634118, CVE-2012-0259).</li>
<dt>2012-03-28  6.7.6-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.6-2, SVN revision 7245.</li>
<dt>2012-03-26  6.7.6-2 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Added "Nearest" as a synonym for "Nearest-Neighbor" interpolate setting</li>
<dt>2012-03-21  6.7.6-2 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> coders/png.c: stored "file_gamma" for later use by identify.</li>
<dt>2012-03-19  6.7.6-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add full support for Pango markup.</li>
  <li> Pango namespace is 'pango:', not 'caption:'.</li>
  <li> Correct for EXR images with broken display windows.</li>
<dt>2012-03-18  6.7.6-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.6-1, SVN revision 7145.</li>
<dt>2012-03-16  6.7.6-1 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Reduce the scope of quantum_info in the PNG decoder to avoid a possible    memory leak (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=20522).</li>
<dt>2012-03-13  6.7.6-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Use uint32 pointer for ReadStripMethod in coders/tiff.c (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=20526).</li>
  <li> Ghostscript 32/64 bit detection patch (contributed by    axeld@pinc-...).</li>
  <li> Honor center gravity for caption: with Pango support (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=20517).</li>
  <li> Add support for pango: coder to render captions with Pango.</li>
<dt>2012-03-10  6.7.6-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.6-0, SVN revision 7090.</li>
<dt>2012-03-06  6.7.6-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Importing from the X11 root windows no longer leaks memory (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=20470).</li>
  <li> Check to see if delegate file exists before copying.</li>
<dt>2012-03-05  6.7.5-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.5-10, SVN revision 7056.</li>
<dt>2012-03-05  6.7.5-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix too many arguments to AnnotateImage() (copy/paste bug).</li>
<dt>2012-03-02  6.7.5-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.5-9, SVN revision 7046.</li>
<dt>2012-02-29  6.7.5-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Caption no longer includes the prefix "caption:" in the rendered text.</li>
  <li> Auto scale pointsize for -size 100x100 caption:</li>
<dt>2012-03-02  6.7.5-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.5-8, SVN revision 7027.</li>
<dt>2012-03-02  6.7.5-8 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> non-verbose identify now reports DirectClass for transparent PNG images    to agree with the report by identify -verbose.  (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=20448 and    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=15482).</li>
<dt>2012-02-29  6.7.5-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support infinite caption lengths.</li>
  <li> Permit custom JPEG quantization tables (e.g.    -define jpeg:q-table=quantization-table.xml).</li>
  <li> Missing grestore from ps2.c (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=20445).</li>
<dt>2012-02-29  6.7.5-8 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Added Image list options (like "-delete" and "-swap") to "montage".</li>
<dt>2012-02-25  6.7.5-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.5-7, SVN revision 6965.</li>
<dt>2012-02-23  6.7.5-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add support for the EMFPlus delegate program.</li>
<dt>2012-02-22  6.7.5-7 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Re-added the Iterative Distance function in morphology (as opposed to the    faster more direct 2-pass Distance Function that replaced it) so it can be    used in the special situation of Constrained Distance Morphology.    https://imagemagick.org/discourse-server//viewtopic.html??f=2&amp;t=18032</li>
<dt>2012-02-13  6.7.5-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.5-6, SVN revision 6851.</li>
<dt>2012-02-13  6.7.5-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Only set PDF &amp; PS page size when explicitly requested (e.g. -page).</li>
<dt>2012-02-12  6.7.5-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.5-5, SVN revision 6840.</li>
<dt>2012-02-12  6.7.5-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Only use the canvas size of the very first frame of a GIF image sequence.</li>
<dt>2012-02-11  6.7.5-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.5-4, SVN revision 6824.</li>
<dt>2012-02-08  6.7.5-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Set image alpha channel for -virtual-pixel background and transparent.</li>
  <li> Get tiff:fill-order as an image artifact, not an image option.</li>
<dt>2012-02-06  6.7.5-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.5-3, SVN revision 6732.</li>
<dt>2012-02-06  6.7.5-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> TIFF no longer writes the incorrect fill order.</li>
<dt>2012-02-05  6.7.5-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.5-2, SVN revision 6718.</li>
<dt>2012-02-03  6.7.5-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add SyncImagePixelCache() to ensure cache morphology is consistent.</li>
  <li> Patch so two -colorspace options return correct results for round-trip.</li>
<dt>2012-02-02  6.7.5-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.5-1, SVN revision 6684.</li>
<dt>2012-01-30  6.7.5-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support the -alpha remove option (use it to remove transparency from PDF,    convert -density 200 apple.pdf -alpha remove x:).</li>
  <li> Use union instead of casting gzFile and BZFILE.</li>
  <li> Don't treat PSD user channel as alpha (patch from Dominic Benson).</li>
  <li> Prevent overflow when casting short int to size_t when parsing a    maliciously crafted image with an IFD whose all IOP tags' value offsets    point to the beginning of the IFD itself [CVE-2012-0247].</li>
  <li> Prevent DES when parsing a maliciously crafted image with an IFD whose    all IOP tags' value offsets point to the beginning of the IFD itself    [CVE-2012-0248].</li>
  <li> Caption with Pango support no longer return a blank canvas.</li>
  <li> Correct sRGB colorspace conversion equations.</li>
<dt>2012-01-30  6.7.5-1 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fix bug in png coder (spurious warning, reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=20257).</li>
<dt>2012-01-28  6.7.5-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.5-0, SVN revision 6606.</li>
<dt>2012-01-25  6.7.5-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Zlib-1.2.5.2 requires gzFile cast (bug report from John Bowler).</li>
<dt>2012-01-25  6.7.4-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.4-10, SVN revision 6592.</li>
<dt>2012-01-25  6.7.4-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Update PerlMagick TIFF regression signatures to match endian order.</li>
<dt>2012-01-24  6.7.4-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.4-9, SVN revision 6589.</li>
<dt>2012-01-24  6.7.4-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix rare file link in the pixel cache.</li>
<dt>2012-01-20  6.7.4-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.4-8, SVN revision 6551.</li>
<dt>2012-01-19  6.7.4-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Although MagickRealType is a double, use double for KernelInfo values in    the rare event of problems with C++ name mangling.</li>
  <li> Get strokes with patterns (e.g. -stroke xc:red) working again.</li>
  <li> Revert KernelInfo values from MagickRealType to double.</li>
<dt>2012-01-17  6.7.4-8 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Don't write ancillary chunks (except for tRNS and gAMA) in PNG-encoded    ICO files.</li>
<dt>2012-01-14  6.7.4-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.4-7, SVN revision 6471.</li>
<dt>2012-01-13  6.7.4-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Default to a lighter hinting algorithm for non-monochrome font rendering.</li>
<dt>2012-01-12  6.7.4-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.4-6, SVN revision 6434.</li>
<dt>2012-01-12  6.7.4-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Eliminate preprocessor exception for the HDRI build.</li>
<dt>2012-01-10  6.7.4-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.4-5, SVN revision 6422.</li>
<dt>2012-01-02  6.7.4-5 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fixed -black-threshold and -white-threshold so they work properly with    the -channels option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=20096).</li>
<dt>2012-01-02  6.7.4-5 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Removed PNG_USE_CLONE cruft from the PNG encoder (see 2011-11-19 entry)</li>
  <li> Promote image depths 9-15 to 16 to avoid crashing in the PNG    encoder (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=20098).</li>
<dt>2012-01-01  6.7.4-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.4-4, SVN revision 6318.</li>
<dt>2011-12-30  6.7.4-4 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fix problems with JNG encoder "quality" (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=20076).</li>
<dt>2011-12-30  6.7.4-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.4-3, SVN revision 6310.</li>
<dt>2011-12-28  6.7.4-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix memory leak in JP2 coder (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=20071).</li>
  <li> Use maximum bounds when rendering PDF (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=20078).</li>
<dt>2011-12-25  6.7.4-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.4-2, SVN revision 6254.</li>
<dt>2011-12-24  6.7.4-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Export new Windows binaries.</li>
<dt>2011-12-21  6.7.4-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.4-1, SVN revision 6236.</li>
<dt>2011-12-12  6.7.4-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Sped up -noise option when radius is 0.</li>
  <li> Read concatenated arcs correctly in a SVG path (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19992).</li>
  <li> PDF's now convert properly with -define pdf:use-cropbox=true (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=20033).</li>
<dt>2011-12-09  6.7.4-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.4-0, SVN revision 6162.</li>
<dt>2010-12-06  6.7.4-0 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Eliminated use of FARDATA in coders/png.c; it won't be supported in    libpng-1.6.0 and is not needed now.</li>
<dt>2011-11-29  6.7.4-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add GetQuantumFormat() method to return the quantum format (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=19961).</li>
  <li> Allow unspecified width/height in geometries with the aspect flag (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19964).</li>
  <li> MagickGetImageDepth() no longer returns the depth setting but instead    computes the depth of the image.</li>
<dt>2011-12-02  6.7.4-0 Anthony  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed Equal-Area Cropping (size and minimum of delta increments)</li>
<dt>2011-12-01  6.7.3-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.3-10, SVN revision 6106.</li>
<dt>2011-11-29  6.7.3-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Delay reading TIFF EXIF properties to prevent premature exit.</li>
  <li> Remove duplicates from the configuration file search path under Windows.</li>
  <li> Use viewbox offset when setting affine transform translation (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19943).</li>
  <li> Ensure equally sized tiles for -crop 11x2@ (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18322).</li>
  <li> Recognize SI prefixes for jpeg:extent (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19944).</li>
<dt>2011-11-27  6.7.3-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.3-9, SVN revision 6092</li>
<dt>2011-11-27  6.7.3-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Upgrade libtool / ltdl to version 2.4.7.</li>
<dt>2011-11-25  6.7.3-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.3-8, SVN revision 6084</li>
<dt>2011-11-20  6.7.3-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The exif:ExposureBiasValue property is a signed value.</li>
  <li> Prevent buffer underflow for 1-bit PSD images.</li>
  <li> Don't include alpha channel when computing range unless image-&gt;matte is    set.</li>
  <li> Set FILETYPE_REDUCEDIMAGE tag on pyramidal TIFF images (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19892).</li>
  <li> Correct image geometry for Postscript for hi-res bounding box (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19807).</li>
<dt>2011-11-19  6.7.3-8 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fixed bug with scaling Q16 background to PNG sub-8-bit bKGD and    again disabled PNG_USE_CLONE in coders/png.c.</li>
<dt>2011-11-18  6.7.3-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.3-7, SVN revision 6024</li>
<dt>2011-11-18  6.7.3-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Ensure embedded XML resource file is null terminated (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19856).</li>
<dt>2011-11-17  6.7.3-7 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Added a -define filter:alpha to contol the 'alpha value' of the    Kaiser Windowing filter.  Default value is 6.5</li>
<dt>2010-11-15  6.7.3-7 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Reverted the change of 6.6.6-7 that creates an image clone for use    by the PNG encoder.  This was not useful and was somewhat wasteful.</li>
  <li> After finding out that writing the bKGD chunk in sub-8-bit PNG fails,    enabled PNG_USE_CLONE (to create an image clone again)</li>
<dt>2011-11-14  6.7.3-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.3-6, SVN revision 5972.</li>
<dt>2011-11-11  6.7.3-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Prefer the hires bounding box for Postscript rendering (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19807).</li>
  <li> Default configure.xml destination folder to /usr/lib/ImageMagick-ver/config.</li>
<dt>2011-11-09  6.7.3-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.3-5, SVN revision 5936</li>
<dt>2011-11-07  6.7.3-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add ShearRotateImage() method.  RotateImage() now uses distorts rather    than shears.</li>
  <li> MagickCoreGenesis() path must be accessible to use (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19795).</li>
<dt>2011-11-06  6.7.3-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.3-4, SVN revision 5876</li>
<dt>2011-11-02  6.7.3-4 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Ensure that the GIF encoder writes a large enough logical screen (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19734).</li>
<dt>2011-11-02  6.7.3-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.3-3, SVN revision 5825</li>
<dt>2011-11-02  6.7.3-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix small memory leak in the TIFF coder.</li>
  <li> Support -debug accelerate option.</li>
  <li> Support -includearch-dir and -sharearch-dir configure option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19720).</li>
  <li> Use Pango to improve the caption coder.</li>
<dt>2011-11-01  6.7.3-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.3-2, SVN revision 5718</li>
<dt>2011-11-01  6.7.3-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support Ghostscript under 64-bit Windows (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19659).</li>
  <li> Correct affine translation for certain SVG files (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19664).</li>
  <li> -evaluate-sequence multiply no longer hangs ereference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19549).</li>
<dt>2011-10-15  6.7.3-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.3-1.</li>
<dt>2011-10-15  6.7.3-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Read TIFF EXIF profile before reading the image data.</li>
  <li> Fix "test: no: unexpected operator" in the configure script (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19615).</li>
  <li> Off by one error when writing the JPEG XMP profile (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19616).</li>
  <li> Revert GetPathComponent() patch.</li>
<dt>2011-10-09  6.7.3-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.3-0.</li>
<dt>2011-10-09  6.7.3-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Generate output for caption:"[!]" (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=19589.</li>
<dt>2011-10-05  6.7.3-0 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Add "png:format" property with possible values png8, png24, and png32,    for use when prepending the format type to the filename is not convenient    or is not possible, e.g., when embedding the PNG in a PNG-encoded ICO.</li>
<dt>2011-10-04  6.7.2-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.2-10.</li>
<dt>2011-10-04  6.7.2-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Remove most of the LLVM compiler warnings.</li>
  <li> Fix bug in -evaluate-sequence multiply (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19549).</li>
  <li> Upgrade to sRGB V4 ICC profile (reference    http://www.color.org/srgbprofiles.xalter).</li>
  <li> Distinguish embedded PNG vs BMP within the MicroSoft ICON image format.</li>
<dt>2011-09-30  6.7.2-10 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Recognize the sRGB version 4 ICC profile and write PNG sRGB chunk instead.</li>
  <li> Use crc32 instead of "sRGB" string to recognize certain sRGB profiles.</li>
<dt>2011-09-26  6.7.2-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.2-9.</li>
<dt>2011-09-26  6.7.2-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix race condition on image rotate @ 90 degrees.</li>
<dt>2011-09-25  6.7.2-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.2-8.</li>
<dt>2011-09-20  6.7.2-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Prevent infinite loop when font is too large for specified width (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19502).</li>
  <li> Fix LFS cross-compile detection (patch from Mike Frysinger).</li>
  <li> Add open_utf8(), fopen_utf8(), access_utf8(), etc. utility methods.</li>
<dt>2011-09-15  6.7.2-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Convert empty .htm / .html file no longer removes source file.</li>
  <li> -crop 11x2@ now returns 22 images as expected.</li>
  <li> Enable reading the EXIF profile in a TIFF image under Windows.</li>
  <li> Support drawing text with bitmap font.</li>
<dt>2011-09-13  6.7.2-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.2-6.</li>
<dt>2011-09-12  6.7.2-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Expand pixel range for 12 bit DCM images stored in 16-bit words.</li>
  <li> Gray images not displayed properly when saved as MIFF with sRGB    colorspace.</li>
  <li> OpenCL's clCreateContextFromType() no longer returns a system default.</li>
  <li> Use -enable-zero-configuration for zero configuration ImageMagick    (previously -enable-embeddable).</li>
<dt>2011-09-10  6.7.2-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.2-5.</li>
<dt>2011-09-10  6.7.2-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> SO bump.</li>
<dt>2011-09-09  6.7.2-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.2-4.</li>
<dt>2011-09-05  6.7.2-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix cut-n-paste error when reading JPEG profiles.</li>
<dt>2011-09-07  6.7.2-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.2-3.</li>
<dt>2011-09-05  6.7.2-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> A small memory overwrite when reading TIFF with 1-bit alpha (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19417).</li>
  <li> Remove a 2 byte memory leak when checking for environment variables.</li>
<dt>2011-09-05  6.7.2-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.2-2.</li>
<dt>2011-09-03  6.7.2-2 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Recognize the sRGB ICC profile and write the PNG sRGB profile instead    of a full iCCP chunk.</li>
<dt>2011-08-31  6.7.2-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Write grayscale MIFF as a single gray pixel component, not RGB (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=19403).</li>
  <li> Bail gracefully for corrupt JPEG images.</li>
  <li> Bail gracefully for negative montage geometries (references    https://bugzilla.redhat.com/show_bug.cgi?id=735599).</li>
  <li> Account for DCm bits allocated 16 and significant bits 12 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19420).</li>
  <li> Fix bug when appending JPEG image profiles (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19429).</li>
<dt>2011-08-29  6.7.2-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.2-1.</li>
<dt>2011-08-29  6.7.2-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The AllChannels defined changed to 0x7ffffff to avoid integer overflow.</li>
<dt>2011-08-26  6.7.2-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> HDR format 32-bit_rle_xyze implies the XYZ colorspace.</li>
<dt>2011-08-22  6.7.1-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Revert FormatImageAttributeList(), FormatImagePropertyList() (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19339).</li>
<dt>2011-08-21  6.7.1-10 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Revised configure.ac (and configure) to look for -lpng15, -lpng14, -lpng12,    and -lpng in that order instead of just -lpng.  This should help find    a consistent library and headers when users upgrade their libpng delegate    from one version to another, incompatible version.</li>
<dt>2011-08-20  6.7.1-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.1-9.</li>
<dt>2011-08-20  6.7.1-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix memory leak in text annotation (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=19331).</li>
<dt>2011-08-18  6.7.1-9 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> The "-strip" option was excluding the PNG tRNS chunk (see 6.6.6-7, below);  revised the -strip option so it behaves as  if "-define PNG:include-chunk=none,trns,gama" had appeared on the commandline.</li>
  <li> When writing a PNG8 and more than one transparent color is present,  merge them into the image-&gt;background_color (Reference  https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=19329),  finishing the implementation started in version 6.6.8-7.</li>
<dt>2011-08-18  6.7.1-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.1-8.</li>
<dt>2011-08-18  6.7.1-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Caption now wraps properly for Chinese text (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19249).</li>
<dt>2011-08-18  6.7.1-8 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> The PNG encoder would sometimes fail to respect the -define PNG:color-type    option when the incoming image was PseudoClass (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=19262).</li>
<dt>2011-08-15  6.7.1-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.1-7.</li>
<dt>2011-08-15  6.7.1-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Properly handled continued JPEG embedded profiles.</li>
<dt>2011-08-12  6.7.1-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Yet another attempt to read Japanese filenames under Windows.</li>
<dt>2011-08-10  6.7.1-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.1-5.</li>
<dt>2011-08-10  6.7.1-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Revert -colorspace sRGB option patch (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19256).</li>
  <li> Revert -type PaletteMatte option patch (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19263</li>
<dt>2011-08-09  6.7.1-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.1-4.</li>
<dt>2011-08-09  6.7.1-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Revert MultiByteToWideChar() for Windows patch.</li>
<dt>2011-08-05  6.7.1-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.1-3.</li>
<dt>2011-08-05  6.7.1-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Use MultiByteToWideChar() for Windows filenames (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=19242).</li>
<dt>2011-08-03  6.7.1-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.1-2.</li>
<dt>2011-08-02  6.7.1-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Windows does not support acosh(), asinh(), or atanh().</li>
  <li> Accept filenames with time stamps and a sub-image specification (e.g.    test-18:37.jpg[0]).</li>
<dt>2011-08-01  6.7.1-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.1-1.</li>
<dt>2011-08-01  6.7.1-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support MSL 'set gravity' element.</li>
  <li> Don't report HSB colors as RGB colornames (e.g. hsb(0%,0%,100%)).</li>
  <li> Support -fx acosh(), asinh(), and atanh().</li>
<dt>2011-07-21  6.7.1-0 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Removed a case that prevented rotations of rectangle kernels.</li>
<dt>2011-07-01  6.7.1-0 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Use zlib default compression strategy instead of Z_RLE and Z_FIXED    strategies when linking with zlib versions (prior to 1.2.0 and 1.2.2.2,    respectively) that don't support them.</li>
  <li> Exit test loop sooner in coders/png.c when a non-gray pixel is found.</li>
<dt>2011-06-30  6.7.0-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.0-10.</li>
<dt>2011-06-30  6.7.0-10 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Added "-define PNG:compression-level|strategy|filter=value" options to    the PNG encoder.  If these options are used, they take precedence over    the -quality option (reference    https://imagemagick.org/discourse-server//viewtopic.html?&amp;f=1&amp;p=73548).</li>
<dt>2011-06-29  6.7.0-7 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Handle "-quality 97" properly in the png encoder, i.e., use intrapixel    filtering when writing a MNG file and no filtering when writing a PNG file.</li>
  <li> Added support for Z_RLE strategy in the png compressor, using    -quality 98 or 99.</li>
<dt>2011-06-28  6.7.0-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Properly allocate points when render text with large font size (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18997).</li>
<dt>2011-06-25  6.7.0-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.0-9.</li>
<dt>2011-06-18  6.7.0-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Defend against corrupt PSD resource blocks.</li>
<dt>2011-06-15  6.7.0-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.0-8.</li>
<dt>2011-06-14  6.7.0-8 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Added Initial implementation of Cylinder to/from Plane 3D Distorts    Includes derivative (scaled lookup), and anti-aliased horizon (validity)    Currently can NOT handle extractions from full 360 cylinder panoramas.</li>
<dt>2011-06-13  6.7.0-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.0-7.</li>
<dt>2011-06-09  6.7.0-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed "conversion from unsigned __int64 to double not implemented"    so IM can compile under VisualStudio 6.</li>
<dt>2011-06-08  6.7.0-7 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> The PNG encoder would sometimes make black pixels transparent when some    other gray level was supposed to be the transparent color (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18900).    This occurred only with 1, 2, 4-bit grayscale images with Q16 or Q32    builds.</li>
<dt>2011-06-08  6.7.0-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.0-6.</li>
<dt>2011-06-08  6.7.0-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix transient error for composite 'Over' operator.</li>
<dt>2011-06-07  6.7.0-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.0-5.</li>
<dt>2011-06-07  6.7.0-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix one-off bug in option parser (reference    http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609177).</li>
  <li> Transient bug with composite 'Over' in magick/composite-private.h.</li>
<dt>2011-06-06  6.7.0-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.0-4.</li>
<dt>2011-06-03  6.7.0-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support -direction right-to-left for the label: and caption: coders.</li>
  <li> Blue / green reversed for JPEG-compressed TIFF images.</li>
<dt>2011-06-03  6.7.0-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.0-3.</li>
<dt>2011-06-02  6.7.0-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Use memmove() instead of memcpy() in StripString().</li>
<dt>2011-05-27  6.7.0-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.0-2.</li>
<dt>2011-05-26  6.7.0-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> ImageMagick now compiles on Hurd (reference    http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=628020).</li>
  <li> Use vfprintf rather than fprintf in FormatLocaleFileList().</li>
<dt>2011-05-26  6.7.0-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.0-1.</li>
<dt>2011-05-25  6.7.0-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Not all Linux'es define locale_t (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18819).</li>
<dt>2011-05-22  6.7.0-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.7.0-0.</li>
<dt>2011-05-21  6.7.0-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Avoid fault on corrupt JPEG images.</li>
  <li> Avoid fault on certain DJVU images (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18807).</li>
  <li> Fix -fx to interpret scientific notation properly.</li>
<dt>2011-05-20  6.6.9-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.6.9-10.</li>
<dt>2011-05-20  6.6.9-10 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> The PNG encoder now respects the -depth setting, including 1, 2, 4.    Previously settings other than 8 and 16 were ignored (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18412).</li>
<dt>2011-05-16  6.6.9-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Don't use comma as a separator for stroked text (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18742).</li>
  <li> Use C locale when generating or interpreting SVG.</li>
  <li> Fix "unterminated macro" for Q32 build of coders/png.c.</li>
<dt>2011-05-15  6.6.9-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.6.9-9.</li>
<dt>2011-05-14  6.6.9-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The -scale option now considers the alpha channel when scaling.</li>
  <li> Fix transient bug for HSL to RGB and back.</li>
<dt>2011-05-12  6.6.9-9 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fixed PNG8 reduction to work with an image that reduces to 256 colors    plus transparency, by merging the two darkest red colors.</li>
<dt>2011-05-04  6.6.9-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.6.9-8.</li>
<dt>2011-05-02  6.6.9-8 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fixed some cut-and-paste errors in new png.c code that caused PNG8    reductions to fail.</li>
<dt>2011-05-02  6.6.9-8 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Add various Option Flags, and fix option skip counts for plus forms    of simple operators where plus form is the same as minus form.    For example the incorrect counts produces a weird error, and possible    future segmentation fault in a command like  convert rose: +border show:</li>
<dt>2011-04-30  6.6.9-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.6.9-7.</li>
<dt>2011-04-30  6.6.9-7 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Fix FX default for interpolation to Bilinear.</li>
<dt>2011-04-27  6.6.9-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix pixel interpolation for -draw 'image Over' (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18612).</li>
<dt>2011-04-26  6.6.9-7 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Write the proper bKGD chunk value in grayscale PNG images (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18624).</li>
<dt>2011-04-25  6.6.9-7 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Added Inverse method for Sparse Color Interpolation</li>
<dt>2011-04-24  6.6.9-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.6.9-6.</li>
<dt>2011-04-21  6.6.9-6 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Make filter:blur define a multiplicative adjustment of filter settings    rather than a complete override of those settings.</li>
  <li> Add Flags to CommandOptions parse table, removing the need for    ImageListOptions parsing table.  This is the start of development to    produce a "convert" replacement that can read options from both command    line and from files or pipelines, in "Do it Immediately" handling.</li>
  <li> Crop Bug Fix. Prevent infinite loop with "+repage -crop 0x40"</li>
<dt>2011-04-18  6.6.9-6 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Added "date" to the things that can appear on the -define PNG:exclude-chunk    list.  This excludes the IM-generated Date:modify and Date:create    properties from PNG output text chunks without excluding the rest of the    text chunks.</li>
  <li> Added "-define PNG:preserve-colormap" option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18564).</li>
  <li> Simplified LosslessReduceDepthOK() function in coders/png.c</li>
<dt>2011-04-18  6.6.9-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add support for writing RGB FITS images as separate planes.</li>
<dt>2011-04-16  6.6.9-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support the HDR 32-bit_rle_xyze format.</li>
  <li> Fixed infinite loop for TARGA images with a V2 develop area.</li>
  <li> Add signal handler for SIGBUS.</li>
<dt>2011-04-15  6.6.9-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.6.9-5.</li>
<dt>2011-04-15  6.6.9-5 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Added "#define PNG_PTR_NORETURN" because this macro does not work    on all platforms with libpng15, with failure to load png_longjmp() (ref    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18518).</li>
<dt>2011-04-14  6.6.9-5 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Layers Composition Bug Fix, animations attributes of first image not    transferred in a single destination, multi-source image composition.</li>
<dt>2011-04-09  6.6.9-5 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Add a special 'Voronoi' Morphology Distance method that will fill in holes    using the nearest non-transparent edge pixel. It is experimental, and    hidden from normal morphology usage, as it may be interfaced with a    future hole-filling color 'Diffusion' method.</li>
<dt>2011-04-08  6.6.9-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> MIFF keywords sometimes includes spaces.</li>
<dt>2011-04-07  6.6.9-5 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Major BUG FIX - wrong sign breaks most morphology methods in IM v6.6.9-4</li>
  <li> Fixed -region handling of transparency. Original images without    transparency will use 'Over' while images with transparency will    preserve transparency using 'Copy'. Before this only 'Over' was used    due to the testing of the wrong image.</li>
  <li> Added Compose methods  DarkenIntensity and LightenIntensity</li>
<dt>2011-04-06  6.6.9-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.6.9-4.</li>
<dt>2011-04-03  6.6.9-4 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Add Octagon shape and Octagonal distance kernels for Morphology</li>
  <li> Fix minor Morphology kernel compose bug (cleanup after Src/Dst swap)</li>
  <li> Fix segmentation fault after error in a morphology 'named' kernel</li>
  <li> Added a range of kernels used for specialised thinning purposes    as defined in a research paper by Dan S. Bloomberg.</li>
  <li> Added Dan Bloomberg best thinning skeleton, "Skeleton:3"</li>
  <li> Removed origin pixel from many Hit-and-Miss kernels allowing kernels    to not only be used for thinning, but also thickening.</li>
  <li> Renamed "ThinDiagonals" kernel to just "Diagonals"</li>
  <li> Distance uses a fast two pass algorithm, and no longer needs 'iteration'</li>
<dt>2011-04-02  6.6.9-4 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Make the PNG encoder use depth==8 when incoming image-&gt;depth &lt; 8    (the encoder later reduces the depth if it can), to avoid writing    an incorrect image.</li>
  <li> Remove any bogus colormap received by the PNG encoder with an image    that is not PseudoClass (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18475).</li>
<dt>2011-04-02  6.6.9-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Added -statistic Gradient</li>
<dt>2011-04-01  6.6.9-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.6.9-3.</li>
<dt>2011-04-01  6.6.9-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Set the caption height correctly for missing row geometry (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18447).</li>
<dt>2011-03-31  6.6.9-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.6.9-2.</li>
<dt>2011-03-30  6.6.9-2 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Revised the png decoder to store the PNG IHDR and other known PNG    chunk data as properties, for later retrieval and reporting by "identify",    so users can easily and reliably discover the color-type, bit-depth, etc    that were in the input PNG datastream.</li>
  <li> The PNG decoder sometimes set images with more than 256 different    gray-alpha pixels to storage_class=PseudoClass with an incorrect colormap.</li>
<dt>2011-03-30  6.6.9-2 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Add a "Resize" distortion method (distort equivalent of -resize).</li>
  <li> Special CLI handling so -distort Resize takes a "geometry" argument.</li>
<dt>2011-03-29  6.6.9-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Expand PCL compressed pixel buffer to prevent delta compressed overrun.</li>
<dt>2011-03-29  6.6.9-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.6.9-1.</li>
<dt>2011-03-29  6.6.9-1 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Fix AdaptiveResizeImage() to use 'Mesh' Interpolation, and fix its    coordinate handling, as originally defined.</li>
<dt>2011-03-29  6.6.9-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support -statistic standard-deviation option.</li>
  <li> Patch for coders/dcm.c so it compiled with HDRI enabled.</li>
<dt>2011-03-28  6.6.9-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.6.9-0.</li>
<dt>2011-03-28  6.6.9-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Optimize bilinear interpolation.</li>
  <li> Remove version from etc folder and instead use /etc/ImageMagick.</li>
<dt>2011-03-28  6.6.9-0 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Separated complex cropping function from TransformImage() as a new    function CropImageToTiles().  This new function returns either the    new cropped image, or a list of tiles, according to geometry, without    replacing the source image. The Source image may be part of a larger list    of images, without the function 'losing' the other images of the list.</li>
<dt>2011-03-27  6.6.8-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.6.8-10.</li>
<dt>2011-03-27  6.6.8-10 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Modified image handling in MogrifyImages() and MogrifyImage()    which improves overall handling, and allows correct %p, %n and the    %[fx:..] 't' and 'n' escape usage to work correctly.</li>
  <li> Added -duplicate as a multi-image sequence operator</li>
<dt>2011-03-26  6.6.8-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.6.8-9.</li>
<dt>2011-03-25  6.6.8-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add InterpolateMagickPixelPacket() method.</li>
  <li> Add support for the %[opaque] property.</li>
<dt>2011-03-25  6.6.8-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.6.8-8.</li>
<dt>2011-03-25  6.6.8-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix memory access bug in CloneString() (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=18382).</li>
  <li> Avoid infinite loop when no space is available in MagickFormatCaption().</li>
<dt>2011-03-25  6.6.8-8 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Removed the fix for %p and %n escapes, as it was not working right</li>
<dt>2011-03-24  6.6.8-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.6.8-7.</li>
<dt>2011-03-24  6.6.8-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add support for 16-bit DCM short ints (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18371).</li>
<dt>2011-03-23 6.6.8-7 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Another fix for -sparse-color and unused color channels</li>
  <li> Finalize the -duplicate option created by Cristy</li>
  <li> Fix of segmentation fault for second image in %[fx:..] during info:    (Bug in AcquireFxInfo(), as given start image is not first image)</li>
<dt>2011-03-21  6.6.8-7 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Revised the PNG8 encoder to use 50% threshold instead of 0% when    reducing transparency to binary.  Collapse all resulting fully transparent    colors into one (the background color), to reduce the compressed filesize.</li>
  <li> First try the 4-4-4-1 and 3-3-3-1 palettes instead of 3-3-2-1, to preserve    colors (especially gray) better, when reducing to PNG8.</li>
  <li> Force the PNG encoder to return image-&gt;matte==MagickTrue when the    format is RGBA or GA or if the tRNS chunk is present, even when the    image is fully opaque (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18349).</li>
<dt>2011-03-21  6.6.8-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.6.8-6.</li>
<dt>2011-03-21  6.6.8-6 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Re-enabled reduction of grayscale images (color-type 0) to 2 or 4 bits    when appropriate (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18098).</li>
  <li> The "-define PNG:color-type=4" option did not always force the PNG    encoder to write an all-opaque alpha channel (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18349).</li>
<dt>2011-03-14  6.6.8-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed memory leak for PDF and Bitmap PSD RLE support (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18317).</li>
  <li> Support the -statistic option: replace each pixel with corresponding    statistic from the neighborhood.</li>
  <li> Add support for -duplicate option.</li>
  <li> Move configuration files from /usr/share and /usr/lib to /etc and /var.</li>
  <li> Do not cache the results of fx: otherwise -format    '%[fx:rand()] %[fx:rand()]' returns the same random numbers.</li>
<dt>2011-03-18 6.6.8-6 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Replaced Minus and Divide Composition methods with Dst and Src    equivalents. Now users can decide how these non-commutative mathematical    operators are applied to the images being composited.</li>
  <li> Fix the percent escape values for  %p, %n  and  %[fx:t], %[fx:n] to    respectively mean the current images index and the total number of    images within the current image sequence.</li>
<dt>2011-03-17 6.6.8-5 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Backed out the patch for Variable Blur Composition that was added    2011-02-13 v6.6.7-7, until I can re-think the problem.    The existing fix was failing to do circular blurs correctly.</li>
<dt>2011-03-14  6.6.8-5 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fixed a rounding/truncation error while writing the pHYs chunk in the    png encoder.</li>
  <li> Don't write text-encoded profile when "-define PNG:exclude-chunk=text,ztxt"    is present (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=17086 and    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18225).</li>
<dt>2011-03-14  6.6.8-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add support for the WebP image format.</li>
<dt>2011-03-14  6.6.8-5 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Ensured that -sparse-color preserves unused channels when    channel limited.  Before this unused channels would be reset to black.</li>
<dt>2011-03-11  6.6.8-4 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Don't try to store a bKGD chunk in a PNG8 when there are already    256 colors in the palette and the background colors is not in that    palette (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18199);</li>
  <li> The "-define PNG:exclude-chunk=bKGD" option was also excluding    the text chunks. (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18253).</li>
<dt>2011-03-10  6.6.8-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fx is a mathematical function.  Do not treat transparency as black.</li>
  <li> No image scene suffix for filenames that include a single bracket (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18267).</li>
<dt>2011-03-10  6.6.8-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.6.8-3.</li>
<dt>2011-03-10  6.6.8-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Boost causes an ambiguity with ssize_t when building PythonMagick.  Add    patch from Arfrever@gento... to fix the build exception.</li>
<dt>2011-03-09  6.6.8-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support the Radiance HDR image format.</li>
  <li> Update the offset in the black channel when sharpening to avoid incorrect    results.</li>
  <li> Do not use GenericReadMethod for TIFF images with 64-bits per sample.</li>
<dt>2011-03-06  6.6.8-2 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Throw error message when the requested color-type or bit-depth    cannot be written by the PNG encoder (error was being thrown    into the wrong image structure).  (Reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18162).</li>
  <li> Don't write a PNG text chunk with "density" keyword that overrides the    PNG pHYs chunk, if the pHYs chunk was not excluded (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18253).</li>
  <li> Ignore any PNG text chunk with a "density" keyword found by the PNG    decoder, if the PNG datastream also contains a pHYs chunk.</li>
<dt>2011-03-06  6.6.8-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.6.8-1.</li>
<dt>2011-03-05  6.6.8-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support PSD files with one layer and one composite layer.</li>
  <li> We must cast a Quantum type when bit shifting and HDRI is enabled.</li>
<dt>2011-03-05  6.6.8-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.6.8-0.</li>
<dt>2011-02-27  6.6.8-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add support for the -mode option.</li>
<dt>2011-02-27  6.6.8-0 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fix scaling of new color-reduction method in the PNG encoder (16-bit    images were scaled down to 0 or 1, or nearly black).</li>
  <li> Delay opening the PNG output blob until the PNG encoder is ready    to write the IHDR chunk, to avoid writing zero-length PNG files when    errors are found while building the palette.  (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18162).</li>
<dt>2011-02-25  6.6.7-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.6.7-10.</li>
<dt>2011-02-23  6.6.7-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Avoid seg fault in AppendImages() when one image is in the RGB colorspace    but the other is in the CMYK colorspace.</li>
  <li> Get rid of 'respect_parenthesis defined but not used' warnings (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=18173).</li>
<dt>2011-02-22  6.6.7-10 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Write sub-8-bit grayscale PNG images as palette-indexed PNG images.  This    usually makes smaller files anyhow.</li>
  <li> Eliminated a number of redundant tests for gray images in the PNG encoder.</li>
  <li> Removed now-unused IsMonochromeImage() function from coders/png.c</li>
  <li> Scan the colormap instead of all of the pixels, when possible, to    determine whether the image received by the PNG encoder is grayscale    or black-and-white.</li>
  <li> Avoid reading from the colormap in coders/png.c when it is NULL (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18162).</li>
  <li> Add a check whether the PNG "cheap transparency" criteria are met.  That    is, there is a single transparent color, no semitransparent colors, and    no opaque color that has the same RGB components as the transparent    color.  If those aren't met, a color that is transparent in one pixel    and opaque in another would always be rendered as transparent, so we    must write a PNG colortype that has an alpha channel (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18167).</li>
<dt>2011-02-22  6.6.7-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.6.7-9.</li>
<dt>2011-02-22  6.6.7-9 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Disabled reduction of grayscale images (color-type 0) to less than 8 bits    when writing because this sometimes produced incorrect output (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18098).</li>
<dt>2011-02-21  6.6.7-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Check image has properties before accessing the splay tree (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18136).</li>
<dt>2011-02-15  6.6.7-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New version 6.6.7-8.</li>
<dt>2011-02-14  6.6.7-8 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> The PNG encoder should ignore bogus q-&gt;opacity values when image-&gt;matte    is MagickFalse (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18067).</li>
<dt>2011-02-14  6.6.7-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Use implicit image format when explicit format is bogus (e.g.    02.13.11-18:43:58.png now writes as PNG).</li>
  <li> Fix problem with 4GB file seeks on a 32-bit OS.</li>
<dt>2011-02-13  6.6.7-7 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Fixed Variable blur to handle small (&lt; 1.0 sigma) blurs generated    by the blur map being used, rather than just 'cutoff' suddenly.</li>
<dt>2011-02-08  6.6.7-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support 16-bit per pixel YUV image files.</li>
  <li> Fix off-by-one error in PosterizeImage().</li>
  <li> Posterize now distributes color uniformly (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=17623).</li>
  <li> Add -smush option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=17953).</li>
  <li> Repair memory leak in the display program.</li>
<dt>2011-02-07  6.6.7-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix bug in carg() define when HAVE_COMPLEX is not defined (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=18030).</li>
<dt>2011-02-06  6.6.7-6 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Default sigma for Gauusian resize filter is now 1/2 for both    orthogonal resize and cylindrical EWA distortions.</li>
<dt>2011-02-02  6.6.7-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Check if the font is null in RenderFreetype() to prevent fault (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=17890).</li>
  <li> Eliminate fault when reading WMF image files (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=17971).</li>
  <li> Support multi-page transparent Postscript and PDF image files.</li>
  <li> The compare fuzz metric now returns the same correct value for    'xc:white xc:blue -alpha off' and 'xc:white xc:blue -alpha on'.</li>
<dt>2011-01-29  6.6.7-4 Paul Heckbert  &lt;ph@cs.cm...&gt;</dt>
  <li> Move coders/tiff.c conditional compile to define TIFF exception /    semaphore / key when TIFF delegate is disabled.</li>
<dt>2011-01-29  6.6.7-4 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Renamed variables, macros, and functions defined/declared in coders/png.c    that were in the libpng namespace (beginning with "png_" or "PNG_").</li>
<dt>2011-01-25  6.6.7-3 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Removed a call to GetNumberColors() from the PNG encoder that was    only there for debugging purposes and was consuming a huge amount    of CPU time. (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=17799).</li>
  <li> Sometimes black was still written as transparent, when the PNG    encoder received an image with image-&gt;matte==true but no transparent    pixels were present. (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=17913);</li>
<dt>2011-01-24  6.6.7-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Remove memory leak from ThrowFileException() macro (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=17908).</li>
  <li> Multiple blue error count by 'count' in ClassifyImageColors()</li>
  <li> Add support for the AAI image format.</li>
<dt>2011-01-22  6.6.7-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Accept quoted file paths in indirect file references (e.g. @myFiles.txt).</li>
<dt>2011-01-19  6.6.7-2 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Changed the PNG encoder's "transparent_color" from a UShortPixelPacket    to LongPixelPacket and made the default (65537,65537,65537), which    can never occur in the PNG image data.  Previously the default was    (0,0,0) and black pixels would be rendered as as transparent when    no tRNS chunk was present in the input, which has caused problems    with some test cases since version 6.6.6-10.</li>
  <li> Improved the PNG_BUILD_PALETTE section to count opaque, transparent,    and semitransparent pixels separately.  Previously it wasn't always    possible to determine if there was a single fully-transparent color,    to decide whether to write an RGBA or Gray-Alpha image or an RGB or    Gray image with a tRNS chunk.</li>
<dt>2011-01-15  6.6.7-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Do not reset image next / previous when detach argument is false for    CloneImage().</li>
  <li> Inline cropping no longer fails for inline raw images (e.g.    -size 640x480 -depth 8 'gray:logo[100x100+200+200]').</li>
<dt>2011-01-14  6.6.7-1 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Don't let the PNG encoder try to sort the colormap when there are more    than 256 colors in the image. (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=17834).</li>
<dt>2011-01-10  6.6.7-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Accept escaped % in output filename (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=17810).</li>
<dt>2011-01-08  6.6.7-1 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Quieted some inconsequential warnings in the PNG codec due to a    change in the type of the PNG iCCP profile from png_charp to png_bytep    in libpng-1.5.0.</li>
<dt>2011-01-03  6.6.7-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Handle negative heights for ICO images.</li>
<dt>2011-01-02  6.6.7-0 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Recent changes sometimes caused the PNG encoder to select colortype=2    (Truecolor) instead of 0 (Grayscale) for grayscale images.  This made    the filesize larger than necessary and caused some of the PerlMagick    tests to fail.</li>
<dt>2011-01-01  6.6.6-10 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> The PNG decoder now checks whether the image actually has any transparency    when the input file contains an alpha channel or a tRNS chunk.  (Reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=17748)</li>
<dt>2010-12-26  6.6.6-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> -posterize fails with more than 40 levels (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=17741).</li>
  <li> Add support for the MacPaint image format.</li>
  <li> Eliminate spurious 'invalid colormap index' exception for 16-bit SGI images    (bug report by steven.sittser@fligh...).</li>
  <li> Fix user data length for the CIN image format.</li>
<dt>2010-12-21  6.6.6-7 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Use a clone instead of the main image in coders/png.c, so the image    can still be used later on without being affected by changes made by    the PNG encoder.</li>
  <li> Added PNG:exclude-chunk and PNG:include-chunk defines.</li>
  <li> Revised the -strip option so it behaves as though    "-define PNG:include-chunk=none,gama" had appeared on the commandline.</li>
  <li> Avoid writing PNG ancillary chunks in the PNG/MNG/JNG encoder while    generating the alpha channel for a JNG image.</li>
<dt>2010-12-21  6.6.6-7 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Removed the forced interpolation setting in AcquireResampleFilterThreadSet    It prevented user defined interpolation settings for -clut, and possibly    other usage.</li>
<dt>2010-12-17  6.6.6-6 Chris Madison  &lt;madisonblu@gmail...&gt;</dt>
  <li> Add LZMA compression support to ImageMagick.</li>
  <li> Eliminate seg-fault in MvgPrintf().</li>
<dt>2010-12-17  6.6.6-6 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Eliminated a redundant quantization step in the PNG encoder.</li>
  <li> Untangled a confusing but apparently harmless improper loop nesting    in the PNG encoder.</li>
  <li> Eliminated redundant "IsGray()" tests from the PNG encoder.</li>
<dt>2010-12-14  6.6.6-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> -format "%[fx:u.p{5,5}]" no longer reports parse exception (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=17678).</li>
<dt>2010-12-10  6.6.6-5 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Make the PNG encoder always rebuild the palette, to avoid losing    transparency when it is out of sync with the pixel data (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=17655).</li>
  <li> Eliminated CompressColormapTransFirst() since the palette is already    compressed and sorted by opacity now when it's recreated.</li>
<dt>2010-12-10  6.6.6-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Account for virtual canvas for the -flip / -flop options (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=17626).</li>
  <li> Also for -transpose and transverse options</li>
  <li> Support -metric fuzz option.</li>
<dt>2010-12-09  6.6.6-4 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Replace IsMagickColorSimilar() which provides the Fuzz Factor threshold    function.  Note function does not calculate 'distance' in total but    short-circuits when threshold is reached for faster processing.</li>
  <li> Ordered Dithered handling of Alpha channel was incorrect - fixing    Bug was introduced v6.6.5-6</li>
<dt>2010-12-03  6.6.6-3 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fixed two more cases where the PNG encoder lost transparency (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=17516).</li>
<dt>2010-12-01  6.6.6-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Affine multiplication reversed when translating (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=17570).</li>
<dt>2010-11-26  6.6.6-2 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Revised the "c7x7b" and "c7x7w" ordered-dither maps to be complementary    to each other.</li>
<dt>2010-11-27  6.6.6-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add support for -evaluate-sequence median.</li>
<dt>2010-11-26  6.6.6-0 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fixed two more cases where the PNG encoder lost transparency (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=17516).</li>
<dt>2010-11-23  6.6.6-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The policy.xml sets not-to-exceed resource values (e.g. policy memory limit    1GB, -limit 2GB exceeds policy maximum so memory limit is 1GB).</li>
  <li> Support NCC (normalized cross correlation) compare metric.</li>
<dt>2010-11-21  6.6.5-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix PNG coder compile error when HDRI is enabled.</li>
<dt>2010-11-17  6.6.5-9 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Many of the problems with the PNG encoder have been fixed (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=16490).</li>
  <li> The "-type Optimize" option is now deprecated.  If present, it is treated    by the PNG encoder the same as if the type were undefined.  Optimization    is now always performed.  No other formats used the "type Optimize" option.</li>
  <li> Merged redundant code into LosslessReduceDepth() function in the PNG codec.</li>
<dt>2010-11-14  6.6.5-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The splice option no longer throws spurious "pixels are not authentic"    exceptions.</li>
  <li> Thread the -adaptive-resize option.</li>
  <li> Set XBM coder height to height not width.</li>
<dt>2010-11-14  6.6.5-9 Nicolas Robidoux &lt;nicolas.robidoux@gmai...&gt;</dt>
  <li> Lanczos2Sharp blur tweaked. New blur = 0.9549963639785485.</li>
<dt>2010-11-13  6.6.5-9 Nicolas Robidoux &lt;nicolas.robidoux@gmai...&gt;</dt>
  <li> LanczosSharp blur tweaked to minimize worst case deviation from "perfect    preservation of images which only vary horizontally (or vertically)" under    no-op. New blur = 0.9812505644269356.</li>
<dt>2010-11-08  6.6.5-8 Nicolas Robidoux &lt;nicolas.robidoux@gmai...&gt;</dt>
  <li> Missing logical operator in tiff.c.</li>
<dt>2010-11-08  6.6.5-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Only save TIFF image with 1-bit depth if there is no alpha channel.</li>
  <li> Abandon PSD composite if layer is available.</li>
  <li> %[fx:mean] is the mean of the default channels (all but opacity) (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=17432).</li>
<dt>2010-10-29  6.6.5-6 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Added 5x5, 6x6, and 7x7 ordered-dither level maps.</li>
<dt>2010-10-30  6.6.5-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Do not read configure files in the current directory for the "installed"    version of ImageMagick.</li>
  <li> Allow numeric characters in the XPM basename (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=17385).</li>
<dt>2010-10-29  6.6.5-4 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Revised PNG palette optimization</li>
  <li> Added some debug logging in coders/png.c.</li>
<dt>2010-10-28  6.6.5-3 Nicolas Robidoux &lt;nicolas.robidoux@gmai...&gt;</dt>
  <li> More precise blur values for Lanczos2Sharp and LanczosSharp.</li>
  <li> Added location of first Mitchell crossing (=8/7) to the filters data    structure.</li>
<dt>2010-10-28  6.6.5-2 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Added Lanczos2D* filters now named Lanczos2*</li>
  <li> Reorganization of AcquireFilter() to make it work better</li>
<dt>2010-10-25  6.6.5-1 Nicolas Robidoux &lt;nicolas.robidoux@gmai...&gt;</dt>
  <li> Clearer EWA filters (LanczosSharp etc) comments.</li>
<dt>2010-10-25  6.6.5-1 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Added LanczosSharp  (3-lobe Lanczos with sharpening)</li>
  <li> Filter sharpening factors are also always applied regardless of usage.</li>
<dt>2010-10-24  6.6.5-1 Nicolas Robidoux &lt;nicolas.robidoux@gmai...&gt;</dt>
  <li> CubicBC filter formulas simplified by constant folding. In    particular, P1 coefficient (always zero) removed from coeff.</li>
<dt>2010-10-22  6.6.5-1 Nicolas Robidoux &lt;nicolas.robidoux@gmai...&gt;</dt>
  <li> Revert the Robidoux filter to a Keys cubic with C=(108 sqrt 2-29)/398    (as already specified in the documentation).</li>
<dt>2010-10-14  6.6.5-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Ignore PS bounding box offsets if -page is set.</li>
  <li> Use #pragma omp master for dumping single threaded debugging information    (single caused a fault).</li>
  <li> Add support for -evaluate exp.</li>
<dt>2010-10-12  6.6.5-0 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Added "filter:sigma" expert setting defining the 'sigma' for the Gaussian    filter only.  This is similar in action to 'blur' but only for Gaussians,    and does not modify the filters support, allowing you to set a very small    sigma, without the function 'missing' all pixels.    (This will allow future adjustment of Gaussians for variable blur mapping)</li>
<dt>2010-10-10  6.6.5-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Patch for  DrawableRotation() and DrawableTranslation() (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=17246).</li>
  <li> The webp format requires the webpconv delegate program (experimental).</li>
<dt>2010-10-05  6.6.5-0 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Replaced "Robidoux" with Cubic 'Keys' filter that is near equivalent to    the previous sharped "Lanczos2D" filter. (C=0.31089212245300069)    This also is very similar to a Mitchell filter but specifically designed    for EWA use and is the new default filter for Distorting Images.</li>
  <li> Original sharpened Lanczos2D filter now called "Lanczos2Dsharp"</li>
<dt>2010-10-08  6.6.4-10 Jerry Gay  &lt;jerry.gay@gmail..&gt;</dt>
  <li> Autodetect file type support in Makefile.PL to prevent test failures</li>
<dt>2010-10-05  6.6.4-10 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Added new filter 'Lanczos2D' a 2-lobe Lanczos as defined by    Andreas Gustafsson in his thesis  "Interactive Image Warping" (page 24)         http://www.gson.org/thesis/warping-thesis.pdf</li>
  <li> Added filter "Robidoux" which is a slightly sharpened version of the    "Lanczos2D" filter (blur=0.958033808) specifically designed to be less    'blurry' for horizontal and vertical lines in no-op distortions.</li>
<dt>2010-10-05  6.6.4-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add support for "pattern:vertical2" and "pattern:horizontal2".</li>
  <li> Add support for "pattern:vertical3" and "pattern:horizontal3".</li>
  <li> Properly handle PSD layers with negative offsets.</li>
<dt>2010-10-03  6.6.4-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix memory assertion with --enable-embeddable (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=17201).</li>
  <li> Don't permit access to pixels when pinging an image (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=17194).</li>
<dt>2010-10-02  6.6.4-9 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Added sqrt(2) blurring default for Gaussian Filter if used as    a Cylindrical EWA filter.  This resulted removing the last aliasing    issue that was present in tests for Gaussian EWA resampling. Of course    it is still a very blurry filter for default use in EWA.</li>
  <li> Adjusted Variable Mapping Blur Composition so user arguments actual    relate properly to the sigma of the blur for a maximum mapping value.</li>
  <li> Fix horizon anti-aliasing for output-scaled perspective distortions.</li>
  <li> 'Bessel' filter is now officially and more accurately named 'Jinc'    however 'Bessel' while not visible as a filter option can still be used    as an internal alias for 'Jinc'.</li>
<dt>2010-09-28  6.6.4-8 Nicolas Robidoux &lt;nicolas.robidoux@gmai...&gt;</dt>
  <li> Chantal Racette double checked the bounding parallelogram computation    in resample.c (and I tightened the comments).</li>
<dt>2010-09-28  6.6.4-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Temporary files not always deleted (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=15960).</li>
<dt>2010-09-28  6.6.4-8 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Bug fix for -filter point distorts (occasional generating black pixels)</li>
<dt>2010-09-27  6.6.4-8 Nicolas Robidoux &lt;nicolas.robidoux@gmai...&gt;</dt>
  <li> Simplified the ClampUpAxes code, the use of its outputs, its comments,    and credited Craig DeForest for the "clamp singular values" idea.</li>
  <li> No reason to have "insane" precision Sinc in resize.c: Use    the 1.2e-12 max. abs. relative error version for Q64 as well as Q32.</li>
<dt>2010-09-27  6.6.4-8 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Replace the blurry "High Quality EWA" technique with a 'Clamped EWA'    for Distort Resampling.  This makes -distort a whole lot nicer    and allows for the use of better cylindrical filters.</li>
<dt>2010-09-26  6.6.4-7 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Fix Point filter for ResizeImage() caused by support limiting the    Box weighting function.</li>
<dt>2010-09-26  6.6.4-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Don't allow resize filter weights to go to zero (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=17132).</li>
<dt>2010-09-24  6.6.4-6 Nicolas Robidoux &lt;nicolas.robidoux@gmai...&gt;</dt>
  <li> Now that MagickPIL is a MagickRealType, some casts are unneeded.</li>
<dt>2010-09-21  6.6.4-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Do not break words if caption size is absolute (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=17123).</li>
  <li> Don't define HAVE_THREADS for --without-threads configure script option.</li>
<dt>2010-09-20  6.6.4-5 Nicolas Robidoux &lt;nicolas.robidoux@gmai...&gt;</dt>
  <li> Modified "magick/resize.c" so that MagickPIL is a MagickRealType number.    Some computations were needlessly done in long double precision because    PIL forced an automatic upcast wherever it appeared. Changed its name to    MagickREALTYPEPI. &lt;- This was later reverted back to MagickPIL.</li>
  <li> Modified "magick/resize.c" so that Bohman uses one trig call + one sqrt    call instead of two trig calls.</li>
<dt>2010-09-20  6.6.4-5 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> modified "magick/resample.c" to allow use of either EWA or HQEWA (default)</li>
  <li> Removed LanczosFast from supported filters (SincFast*SincFast is faster)</li>
<dt>2010-09-19  6.6.4-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> If IPTC profile is not embedded in an 8bim resource, declare it IPTC    rather than 8BIM.</li>
  <li> Support %[version] and %[copyright].</li>
  <li> Improve performance of the pixel cache.</li>
<dt>2010-09-18  6.6.4-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Automatically set the quantum depth to 16 for HDRI.</li>
<dt>2010-09-16  6.6.4-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> IPTC profile not always wrapped properly inside an 8BIM profile.</li>
  <li> TIFF tile geometry must be divisible by 16.</li>
<dt>2010-09-15  6.6.4-2 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Rename of SincPolynomial to SincFast for easier user understanding</li>
  <li> Ditto for LanczosChebyshev to LanzcosFast</li>
<dt>2010-09-14  6.6.4-2 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Switch default resize filters to using the faster SincPolynomial    filter by default internally.  However 'Sinc' will still use the    Trigonometric function, and can be used to assign the trig version    of Sinc() to filters using the filter expert options.</li>
  <li> The default filter for 'distort' was found to be a very blurry inaccurate    filter function.  It was removed and replaced with a correct Gaussian    filter (as used by resize)</li>
  <li> Added a switch so that "-interpolate filter" will force the use of    a cylindrical filter for ALL pixels in distorted images.  That is you can    use that switch to use a cylindrical filter even for images that are    being enlarged by the distortion.  However EWA is still currently using    a fixed 2.0 sampling radius.  This switch complements the use of "-filter    point" which turns off EWA filters in favor of interpolation for all    pixels in a distorted image.  BOTH switches should not be used together.</li>
  <li> A bug in the support radius of the EWA resampling function was found,    now that correctly defined resize filters are being used. Suddenly Normal    Gaussian distortions are not so blurry, and tests with distortions of    the 'Rings' image show extremely good and clear results, with only minimal    blurring.  The filter 'blur' expert option can be used to adjust this    further.</li>
    The above represents a major improvement forward in the quality of the    image distortion operator. But near-unity distortions (no scaling) are    still overly blurry.</li>
<dt>2010-09-13  6.6.4-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Don't negate the geometry offset for the -extent option.</li>
<dt>2010-09-09  6.6.4-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The RGBO format is now listed as a supported format.</li>
<dt>2010-09-07  6.6.4-1 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Added the Nicolas Robidoux and Chantal Racette  Lanczos resize filter    function as "LanczosChebyshev" as faster alternative to Lanczos.</li>
  <li> Re-code Nicolas Robidoux and Chantal Racette Polynomial Approximation of    the Sinc Trigonometric resize filter, as a proper filter to allow    direct comparison and speed testing of the filter.</li>
  <li> Expanded the "-set option:filter:verbose 1" output, so as to also include    the actual functions and other values that were used to create the filter.</li>
<dt>2010-09-02  6.6.4-0 el_supremo  &lt;digipete@shaw...&gt;</dt>
  <li> Repair a few incorrect LocaleNCompare() calls (ttf.c, ps.c).</li>
<dt>2010-08-31  6.6.4-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Path no longer closed if join style is round (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=16943).</li>
  <li> Add case for BGRQuantum to GetQuantumExtent().</li>
  <li> Support no compression on PCX write.</li>
<dt>2010-08-23  6.6.3-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed bug in the raw BGRA coders (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=16880).</li>
  <li> Fix off-by-one error in the PSD coders.</li>
  <li> Nicolas Robidoux with the assistance of Chantal Racette contribute an    approximation of the sinc function over the interval [-3,3].</li>
  <li> Eliminate a small memory leak in LevelizeImageChannel() (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=16951).</li>
  <li> Recognize -fx logtwo (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=16958).</li>
<dt>2010-08-15  6.6.3-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Throw exception if image size differs for the compare program but the    -subimage-search option is not specified.</li>
<dt>2010-08-13  6.6.3-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The AdobeRgb.tif TIFF image no longer faults under Windows (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=16838).</li>
  <li> Add -subimage-search option to the compare utility.</li>
<dt>2010-08-12  6.6.3-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The -fx 2e+6/1e+5 argument no longer returns the wrong results (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=16833).</li>
<dt>2010-08-10  6.6.3-5 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Emit a warning if the PNG encoder can't satisfy the color type and    bit depth requested with a "-define" directive.</li>
<dt>2010-08-07  6.6.3-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The orient option sometimes improperly set "undefined" (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=16795).</li>
  <li> Only list orientation options for the -list orientation option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=16801).</li>
  <li> Return proper standard deviation for combined channels (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=16786).</li>
  <li> Handle transparency properly for the PSD image format.</li>
<dt>2010-08-05  6.6.3-3 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Properly map PNG intent to image-&gt;rendering_intent</li>
<dt>2010-08-01  6.6.3-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Eliminate bogus "invalid colormap index" when pinging ICO images.</li>
  <li> Support -set density / units.</li>
<dt>2010-07-31  6.6.3-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Only use the first alpha channel in PSD image.</li>
  <li> Only use XPM complying colors for XPM images (e.g. green is rgb(0,255,0)).</li>
<dt>2010-07-27  6.6.3-2 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Eliminate useless message about assuming zero delay when writing    a single-frame MNG, and changed it from Error to Warning when    writing a multiple-frame MNG.</li>
<dt>2010-07-25  6.6.3-1 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Don't "ping" a PNG image if it is embedded in a MNG.  Otherwise the    reader tries to read MNG chunks from the interior of the embedded PNG,    resulting in an erroneous "corrupted image" message.</li>
<dt>2010-07-09  6.6.3-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix memory leak in for corrupt BMP images (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=16600).</li>
  <li> Repair several issues when writing to stdout (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=16620).</li>
  <li> A GIF image with the .bgr extension is still a GIF (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=16662).</li>
<dt>2010-07-07  6.6.3-1 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> The PNG decoder failed to handle the tRNS chunk properly for grayscale    images where the PNG bit_depth was not the same as the quantum depth,    and the transparent color was not black.</li>
<dt>2010-07-01  6.6.3-0 Chris Madison  &lt;madisonblu@gmail...&gt;</dt>
  <li> Pinging the DJVU image format no longer faults.</li>
  <li> Check for time-limit-exceeded in only one thread.</li>
  <li> Reading filenames from a file (e.g. @filenames) no longer includes the    utility name (side effect of StringToArgv() method).</li>
<dt>2010-06-28  6.6.2-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support the tiff:fill-order define.</li>
  <li> Filters are case sensitive (e.g. reduce-Colors).</li>
  <li> Restore mogrify's -path option.</li>
  <li> The -list module option lists image coders and image filters.</li>
<dt>2010-06-27  6.6.2-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add the ImageView API.</li>
  <li> Fix DJVU coder to read one page (e.g. 'image.djvu[2]').</li>
  <li> Support -define png:bit-depth=1 -define png:color-type=3 for PNG format.</li>
<dt>2010-06-22  6.6.2-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Skip byte when DDS bitcount is 32 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=16487).</li>
  <li> Montage now uses final background setting (e.g. montage -background none ...    -background lightblue show:).</li>
  <li> Do not annotate directory paths in ListFiles().</li>
  <li> Reset the image matte for png:color-type=2.</li>
<dt>2010-06-17  6.6.2-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support new label:pointsize property.</li>
  <li> Miscellany-&gt;Slide Show, in the display program, now cycles through the    image sequence.</li>
  <li> Recognize certain hex color values (e.g. #b9e1cc00) for the -fx argument.</li>
  <li> Reduce memory requirements when dithering on the iPhone.</li>
  <li> Command line operators no longer affected by settings that appear after    them (e.g. -splice 10x0+0+0 -gravity center).</li>
  <li> Compute the proper DPX user data field size.</li>
<dt>2010-06-15  6.6.2-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix some nits to keep the clang compiler happy.</li>
<dt>2010-06-14  6.6.2-5 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Fix transprancy handling for Morphology Convolve</li>
  <li> Adjustments of Hit And Miss and Edge Detection kernel definitions</li>
  <li> Added 'ThinDiagonals' Thinning Kernel + two sub-types</li>
  <li> Handling for Convolution of 1-D vertical kernels.    However this was removed (using #if-#endif) as I found it slower in tests!</li>
<dt>2010-06-12  6.6.2-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> mogrify -format properly handles compressed image filename (e.g.    -format jpg logo.png.bz2).</li>
  <li> Respect +dither option when saving to the GIF image format.</li>
<dt>2010-06-08  6.6.2-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> End of string sentinel is \n not \r.</li>
<dt>2010-06-06  6.6.2-3 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Don't decode pixels in coders/png.c when image-&gt;ping is set.</li>
<dt>2010-06-06  6.6.2-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Reset image filename when reading inline images.</li>
  <li> Don't clamp floating point values for HDRI-enabled ImageMagick.</li>
<dt>2010-05-25  6.6.2-2 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Replaced '^' morphology kernel rotation with two variants '&gt;' and '&lt;'</li>
  <li> 'Skeleton' variant to thin down images as symmetrically as possible.</li>
  <li> Spelling correction:  Manhatten -&gt; Manhattan</li>
<dt>2010-06-01  6.6.2-2 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Properly scale color components of the PNG bKGD chunk.</li>
  <li> Prevent MNG divide by zero in calculation of frame_timeout.  Set    both frame_delay and frame_timeout to infinite when ticks_per_second    is zero, as required by the MNG spec.</li>
<dt>2010-05-31  6.6.2-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add x:silent option to prevent beeps when reading the X image format.</li>
  <li> Recognize TTF for GetMagicInfo().</li>
  <li> Ensure the +set option deletes the image artifact.</li>
<dt>2010-05-28  6.6.2-1 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Prevent coders/png.c from attempting to write an empty tRNS chunk.</li>
<dt>2010-05-25  6.6.2-1 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Fix for Square Array Rotates (off center origin rotate)</li>
  <li> Added HitAndMiss kernel Ridges2 to find 2 pixel thick ridges</li>
  <li> Added FreiChen:0,{angle}  FreiChen:{angle} and FreiChen:-1 variations    to complete this kernels definition</li>
<dt>2010-05-24  6.6.2-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Respect density when rendering SVG images.</li>
  <li> Set AVI handler to the MPEG coder.</li>
  <li> Compute the proper DPX user data field size.</li>
  <li> Do not interpret a format specifier when enclosed in brackets (e.g.    rose_tile_%[filename:tile].gif.</li>
  <li> Use 64-bit types when compiling with the 64-bit Visual C++ compiler under    Windows.</li>
  <li> Prevent MNG divide by zero in calculation of frame_delay (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=16320).</li>
<dt>2010-05-23  6.6.2-0 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Third Re-write of MorphologyApply() to better handle compound methods.</li>
  <li> Implemented  -set option:morphology:compose for merging results of    multiple kernels. "None" means re-iterate results with next kernel.    While "Undefined" means to use the internal default for a method.    Thinning, Thickening, HitAndMiss, Convolve, Correlate defaults to "None"    while HitAndMiss defaults to "Lighten" (union of all kernel results).    Other morphology methods defaults still to be decided.</li>
  <li> Added HitAndMiss Kernel: Ridges  (find ridges and pixel width lines)</li>
  <li> Rotation Expansion of single kernels '^' and '@' flags in arguments    EG: -set option:showkernel 1 -morphology Convolve 'Blur:0x2^'</li>
  <li> ExpandKernelInfo() (rotation expand) now groks symmetrical kernels.    So the above will only produce a list of 2 kernels, not 4 kernels</li>
<dt>2010-05-18  6.6.2-0 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Separation of internal function MorphologyApply() from    MorphologyImageChannel() to calls to convolve without user settings.</li>
  <li> Rewrite of MorphologyApply() to output better 'verbose' messages</li>
  <li> Better handling of Gaussian tyle filters (bug fixes)</li>
  <li> Bug fix and optimization of kernel size calculations in "gem.c"</li>
  <li> Allow '^' or '@' flags in 'user defined' kernel size arguments to    expand kernel into a rotated list.    EG: -set option:showkernel 1 -morphology Thinning  '3@: 0,1,0 0,1,0 0,0,0'</li>
  <li> Allow a scaled unity kernel to be added to kernel (EdgeDet-&gt;Sharpen)    EG: -set option:convolve:scale [kernel_scale][^!],[unity_scale][%]</li>
  <li> Addition of "Laplacian of Gaussian" (LOG), also known as Mexican Hat    EG: -morphology convolve LOG:0x1</li>
  <li> Added FreiChen, Kirsch  Convolution kernels</li>
  <li> Added Discrete 'Laplacian of Gaussian' kernels (Laplacian type 15 and 19)</li>
  <li> Added Edges HitAndMiss Kernel</li>
<dt>2010-05-17  6.6.2-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> PSD images require a proper layer to support an alpha channel.</li>
  <li> Enable PFM endian support.</li>
  <li> Add context to -border for montage.  Inside the parenthesis it adds a border    to the image otherwise it sets the border for the layout manager.</li>
  <li> 24-bit BMP images are not colormapped even if header colors != 0.</li>
  <li> Set DPX user data like this: -set profile dpx:userdata.txt.</li>
  <li> Make sure Lab =&gt; RGB =&gt; Lab survives the round trip.</li>
<dt>2010-05-15  6.6.1-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Use ScaleCharToQuantum() in coders/src.c (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=16229).</li>
  <li> Don't clamp HDRI EXR pixels.</li>
<dt>2010-05-14  6.6.1-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Increase the estimated # points for the path drawing primitive.</li>
  <li> Remove any prior resolution block from PSD before writing the new block.</li>
<dt>2010-05-14  6.6.1-9 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Addition of more Morphological/Convolution Kernels.    DOG (Difference of Gaussians) and DOB (Difference of Blurs),    EG:    -morphology convolve DOG:0x1,3           -morphology convolve DOB:0x1,3,90</li>
  <li> Added Prewitt, Roberts, Compass  Convolution Kernels</li>
  <li> Ring Symbol Kernel (subtraction of Disk from a Disk)</li>
<dt>2010-05-13  6.6.1-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The pixel buffer was underallocated for some image formats when streaming.</li>
<dt>2010-05-12  6.6.1-8 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Implementation of Pattern Matching Morphology methods    HitAndMiss, Thicken, Thinning</li>
  <li> Reporting of Kernel Strings that fail to parse (though not why)</li>
  <li> Parsing of Multiple Kernel Strings, generating a list of kernels</li>
  <li> Union of results from Multiple Kernels for HitAndMiss method</li>
  <li> Iterated Multiple Kernels for all other morphology methods</li>
  <li> Added many new kernels for HitAndMiss and Convolution    Sobel, Laplacian, Cross, Peaks, Corners, LineEnds, LineJunctions,    ConvexHull (for Thicken), Skeleton (for Thinning)</li>
<dt>2010-05-08  6.6.1-8 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Use proper background.index when writing indexed PNG, if the background    color is in the palette.</li>
<dt>2010-05-08  6.6.1-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix improper 'invalid colormap index' PNG bug.</li>
  <li> Fix PerlMagick compile exception.</li>
<dt>2010-05-07  6.6.1-6 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Added % and ! modification flags to morphology distance kernel    scaling factor, for easier usage.</li>
  <li> Bug fix for compose math channel handling and morphology diff usage</li>
<dt>2010-05-06  6.6.1-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Do not claim gray colorspace if gray image includes a non-gray pixel.</li>
  <li> Initialize BMP alpha channel to opaque for RGB images.</li>
  <li> Fixed under allocation for round rectangles.</li>
  <li> The -list option returns a 0 status as expected.</li>
<dt>2010-05-06  6.6.1-6 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Made use of new no-'sync' channel enabled mathematical compose methods    for the difference morphology methods.  These should now work correctly    for specific channels, and more importantly for alpha shaped morphology.</li>
<dt>2010-05-05  6.6.1-6 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fixed bugs with losing the opacity channel while writing some PNG images.    (bug reported by Anthony T.)</li>
<dt>2010-05-05  6.6.1-6 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Simplified and corrected rowbytes calculation in coders/png.c and    added more logging.</li>
<dt>2010-05-05  6.6.1-6 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Rename of "Add" and "Subtract" compositions to "ModulusAdd" and    "ModulusSubtract" for more clarity of there functions. Old names    will continue to work as expected.</li>
  <li> Fix "Minus", "ModulusAdd", and "ModulusSubtract" to follow    normal SVG 'Over' blending specifications, (see next for override)    Note that this does NOT include the "Plus" composition method which has    SVG definition for it to use a 'Plus' blending rather than 'Over' blending.</li>
  <li> By default mathematical compositions work as per SVG definition. That is    the results are synchronized with 'Over' alpha-blending (except "Plus"    which uses 'plus' alpha-blending).</li>
  <li> By removing the default 'sync' flag from the -channel setting however    Break this inter-channel synchronization and do the mathematical operations    only on the individual channels as specified by the -channel setting.    That is do 'channel' math rather than 'SVG' composition.</li>
  <li> With this change you can then use mathematical composition methods on    individual channels or even with the alpha channel of images.</li>
<dt>2010-04-28  6.6.1-6 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Special case handling in Barrel distortion (pixel at image center)</li>
  <li> Calculation of image for Barrel distortion (pixel vs image coords)</li>
  <li> Argument input (handling optional 'd' argument) for Barrel distortion</li>
<dt>2010-04-24  6.6.1-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Do not declare timestruct under MinGW.</li>
  <li> Respect -compose option for the montage utility (bug report by Anthony).</li>
  <li> A 256 column gradient produces a 256 color GIF image (bug report by    Anthony).</li>
  <li> Register / unregister CALS format in static.c (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=16103).</li>
  <li> Add SetImageColor() method.</li>
<dt>2010-04-17  6.6.1-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Only write one ICC profile to PSD image.</li>
  <li> Sync image colormap for PNG tRNS chunks.</li>
  <li> The -direction option now works with the -annotate and -draw options.</li>
  <li> For the histogram: format, if you have no need for the unique color list,    use &lt;kbd&gt;-define histogram:unique-colors=false&lt;/kbd&gt; to forego this    expensive operation.</li>
  <li> Match on literal after backslash in glob expression (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=16068).</li>
  <li> Enable JPEG-compression for grayscale TIFF images (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=16064).</li>
  <li> Don't write empty tile if tile geometry matches the image width (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=16064).</li>
  <li> Support -regard-warnings in the mogrify utility.</li>
  <li> Output the correct units for the identify utility (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=16075).</li>
<dt>2010-04-15  6.6.1-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Do not set the resample virtual pixel method when undefined.</li>
  <li> Support writing grayscale PSD images.</li>
  <li> Revert Lab-to-XYZ colorspace transform patch.</li>
  <li> Clamp HDRI values for LevelImageChannel() method.</li>
<dt>2010-04-12  6.6.1-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> For HSL to RGB, if color temperature is less than 0, set RGB to lightness.</li>
  <li> Do not flip BMP image with negative height when pinging.</li>
<dt>2010-04-08  6.6.1-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Improve support for device link profiles.</li>
<dt>2010-04-06  6.6.1-1 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Fixed bug in -auto-level for special case when only one value is present    in some channel of the image. In this case no 'stretch is performed, just    as -normalize does.</li>
<dt>2010-04-05  6.6.1-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> WMF support under Windows does not produce the same results as under    Linux.</li>
<dt>2010-03-31  6.6.1-0 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Fixed bug in equal-size tile cropping, when image has a page offset.</li>
<dt>2010-03-31  6.6.1-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The -recolor 4x4 matrix is now interpreted properly (previously it    summed rather than attenuating the alpha channel).</li>
  <li> Support writing 1-bit PSD images.</li>
  <li> Support LCMS 2.0.</li>
  <li> Improved WMF support under Windows.</li>
<dt>2010-03-30  6.6.1-0 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> The new coders/png.c was failing to read a 1-bit paletted image properly.</li>
  <li> Finished eliminating the deprecated direct references to members of    the png_info structure. ImageMagick can now be built with libpng-1.5.</li>
<dt>2010-03-21  6.6.0-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Respect the -density option when rendering a Postscript or PDF image.</li>
  <li> Distort barrel no longer complains when 3 arguments are given (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=15883).</li>
  <li> Support -direction left-to-right option for rendering text</li>
<dt>2010-03-24  6.6.0-9 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> coders/png.c: Eliminated support of libpng versions older than 1.0.12.</li>
  <li> Relocated the new, misplaced png_get_rowbytes() call.</li>
  <li> Updated setjmp/longjmp/jmpbuf usage to work with libpng-1.5.</li>
<dt>2010-03-21  6.6.0-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Windows does not support complex.h (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=15808).</li>
  <li> Add support for monochrome PSD images.</li>
  <li> VignetteImage() no longer crashes when x and y arguments are both greater    than half the width (x) and height (y) of the image.</li>
<dt>2010-03-20  6.6.0-8 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Eliminated some of the deprecated direct references to members of    the png_info structure.  This must be finished before we can build    with libpng-1.5.</li>
<dt>2010-03-18  6.6.0-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The animate program no longer loops twice when -loop 1 is specified.</li>
  <li> The caption format would sometimes hang when the text was not UTF-8.</li>
  <li> Don't gamma correct log to linear color conversion unless the -gamma is    specified (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=15799).</li>
<dt>2010-03-17  6.6.0-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Detect CMYKProcessColor AI tag.</li>
  <li> Delete image from command line cache for -write option.</li>
<dt>2010-03-13  6.6.0-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add support for the Adobe Large Document format.</li>
  <li> Recognize -remap option for the mogrify utility.</li>
  <li> The default Helvetica font is not always available, check for    Century Schoolbook too (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=15780).</li>
<dt>2010-03-11  6.6.0-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Permit user to get virtual pixels with a region width of 0.</li>
  <li> Reformulate the jinc() function so that the main peak is of amplitude of 1.</li>
  <li> Resampling filter must respect the image virtual pixel method.</li>
<dt>2010-03-07  6.6.0-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The -evaluate-sequence option behaves like -evaluate except it operates    on a sequence of images.</li>
<dt>2010-03-05  6.6.0-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add support for the -maximum and -minimum options.</li>
<dt>2010-02-27  6.6.0-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Check to see if ICON image width /height exceeds that of the image canvas.</li>
  <li> Set the DPX descriptor to Luma only if the image type is not TrueColor.</li>
  <li> Add support for -fx airy(), j0(), j1(), jinc(), and sinc() (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=15685).    Anthony, review these for correctness.</li>
  <li> Don't embed an XMP profile in an EPS image for now.</li>
<dt>2010-02-21  6.6.0-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Insufficient image data in EPT is a warning rather than an error.</li>
  <li> Respect -type TrueColor when writing gray DPX images.</li>
  <li> Fix problem reading 10-bit grayscale DPX images when scanline length is    not a multiple of 3.</li>
  <li> BMP has an alpha channel, it was treated as an opacity channel.</li>
<dt>2010-02-20  6.5.9-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Write 10-bit grayscale DPX images properly.</li>
<dt>2010-02-18  6.5.9-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Detect PDF ICCBased colorspace.</li>
<dt>2010-02-18  6.5.9-7 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Finalized -set option:convolve:scale  kernel normalize/scale option</li>
<dt>2010-02-16  6.5.9-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> TransformImage() resets the image blob when called in the PICT decoder;    use SetImageExtent() instead.</li>
<dt>2010-02-14  6.5.9-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support PSD RLE compression.</li>
<dt>2010-02-13  6.5.9-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The jpeg:extent define sometimes exceeded the specified limit.</li>
<dt>2010-02-09  6.5.9-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Resolve "too many open files"  (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=15546).</li>
<dt>2010-02-08  6.5.9-3 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Added Correlate method which does a Convolve without reflecting the kernel.</li>
<dt>2010-02-07  6.5.9-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Initialize grayscale colormap for PSD images.</li>
<dt>2010-02-07  6.5.9-3 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Final testing and fixing of basic morphology operators</li>
  <li> Addition Third-level Subtractive Morphology Methods:    EdgeIn, EdgeOut, Edge, TopHat, BottomHat</li>
  <li> Ensuring original kernels passed to morphology are cloned before being    modified for use by specific methods (EG: convolve scale/normalize)</li>
<dt>2010-02-03  6.5.9-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> display -immutable to display transparent image without a checkboard.</li>
<dt>2010-01-27  6.5.9-1 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Make -define png:color-type less persnickety about what it will accept.</li>
<dt>2010-01-24  6.5.9-1 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> added use of -precision in 'showkernel' output of -morphology</li>
  <li> correct use of a 'reflected kernel' for 'Convolve' 'Dilate' and    'Distance' Morphology primitives. This does not have a performance hit,    though is only truely applicable when the kernel is asymmetric.  Note that    'Erode' does not use a 'reflected' kernel, so that 'Open' and 'Close'    operations work properly.  This 'reflected usage is defined by online    morphology lecture notes (Google for "EECE Binary Morphology")</li>
  <li> Added convolve kernel scaling setting "-set option:convolve:scale N"    If undefined morphology convolve does not do any scaling or normalization    of the convolution kernel.  A value of 0.0 causes normalization for both    zero and non-zero (added weights) kernel types.</li>
<dt>2010-01-15  6.5.9-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Speed up reading the PSD image format.</li>
  <li> Add the -precision option.  Use it to set the maximum number of significant    digits to be printed.</li>
  <li> Add -features option to the identify program to display channel features.</li>
  <li> Add -unique option to the identify program to display channel features.</li>
<dt>2010-01-01  6.5.9-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add support for compact floating point (i.e. -depth 16 -define    quantum:format=floating-point).</li>
  <li> Transparent images no longer flicker on certain system when using the    display program.</li>
  <li> Permit interactive resizing with the display program.</li>
  <li> Support heterogeneous distributed processing, see    ../www/architecture.html#distributed.</li>
  <li> Fix semaphore assertion when reading a corrupt image with Magick++.</li>
  <li> Add support for -brightness-contrast option.</li>
<dt>2010-01-05  6.5.9-0 Stephan Menzel  &lt;stephan.menzel@gmail...&gt;</dt>
  <li> Add support for the BGRA raw image format.</li>
<dt>2010-01-04  6.5.9-0 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Added Kernel Generator to generate kernels from user strings, which    allows the generation in many built in kernels for both Convolution    and other Morphological methods.  New Kernels currently include..      Convolution: Gaussian, Blur, Comet      Morphological: Rectangle, Square, Diamond, Disk, Plus      Distance: Chebyshev, Manhatten, Knight, Euclidean    And both old and new (rectangular) user defined kernel specifications    including the use of 'nan' to represent elements which are not part    of the kernel definition.  List built-in kernel types use "-list kernel"</li>
  <li> Added -morphology {method}[:{iteration}] {kernel_string}    Initial methods includes no only the basic morphology methods: Dilate,    Erode, Open, Close; and a pixel color preserving 'Intensity' version, but    also the special methods: Convolve, and Distance.  Of course the    appropriate kernel should be provided for each specific method.</li>
<dt>2010-01-01  6.5.9-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add OpenCL-enabled filter (e.g.  convert image.png -process    "convolve '-1, -1, -1, -1, 9, -1, -1, -1, -1'" image.jpg).</li>
  <li> Added StringTo...() processing functions</li>
<dt>2009-12-27  6.5.8-9 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Added MxN tile cropping with overlapping and space handling.    See IM Examples, Cutting and Bordering, Cropping roughly Equal</li>
<dt>2009-12-23  6.5.8-8 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> angle bug fix in variable blur composition with vertical ellipses</li>
  <li> Added ability to have variable angles for ellipses in variable blur    composition.  See IM Examples, Composition, Variable Blur for details</li>
<dt>2009-12-20  6.5.8-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> JPEG does not grok the HSL colorspace.</li>
<dt>2009-12-18  6.5.8-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Off by 1 error when allocating the dash-pattern array in PerlMagick.</li>
  <li> The -gaussian-blur over blurred the opacity channel (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=15218).</li>
<dt>2009-12-13  6.5.8-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Declare InverseFourierTransformImage in Magick++/Include.h.</li>
<dt>2009-12-09  6.5.8-5 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> The PNG8 encoder would fail to write a 1-color image, due to    a bogus MagickFail return from CompressColormapTransFirst().</li>
<dt>2009-12-05  6.5.8-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> SVG images are no longer double sized with the -density option.</li>
<dt>2009-12-04  6.5.8-3 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Changed the one instance of PNG_COLOR_TYPE_RGBA to PNG_COLOR_TYPE_RGB_ALPHA    in coders/png.c</li>
<dt>2009-12-03  6.5.8-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> It's interword-spacing, not interword_spacing (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=1515).</li>
  <li> All JP2 depths (e.g. 4, 10, 12, 16) are now supported properly.</li>
<dt>2009-11-28  6.5.8-2 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Changed the one remaining ping_info-&gt;trans to ping_info-&gt;trans_values    in coders/png.c</li>
<dt>2009-11-26  6.5.8-1 Chris Madison  &lt;madisonblu@gmail...&gt;</dt>
  <li> Eliminate bogus 'skip to sync byte' exception for PCD image format.</li>
  <li> -threshold option: threshold to white if the computed intensity of the    color channels exceeds the threshold.</li>
  <li> Add -define jpeg:extent option to restrict the maximum JPEG image file size.</li>
<dt>2009-11-26  6.5.8-1 Dr. Ingo Bremer &lt;bremer@wias-...&gt;</dt>
  <li> Escape single quote in when writing the UIL format.</li>
<dt>2009-11-25  6.5.8-1 Jee Teck  &lt;jee.teck@cteca...&gt;</dt>
  <li> The mogrify program +opaque option now recognizes its required argument.</li>
<dt>2009-11-19  6.5.8-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add magick/morphlogy.{c,h} source templates.</li>
  <li> Sync image option when reading MPR images.</li>
  <li> Optimize ping for SVG images.</li>
  <li> SetLogFormat() no longer causes crash (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=15091).</li>
  <li> Do not call MagickCoreTerminus() when memory allocation fails inside    the locale component.</li>
<dt>2009-11-18  6.5.7-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Read / write 32-bit SUN raster images with a odd width.</li>
  <li> Cairo format returns pixels with the alpha premultiplied (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=15081).</li>
<dt>2009-11-12  6.5.7-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Thumb::URI file URI now has the correct number of forward slashes.</li>
<dt>2009-11-09  6.5.7-7 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Suppress libpng pedantic warnings and warn about using old libpng-1.4.0    beta versions.</li>
<dt>2009-11-09  6.5.7-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Bump library age.</li>
  <li> Restore -tile-offset functionality (bug report from Anthony).</li>
<dt>2009-11-06  6.5.7-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Animate command line options are no longer ignored.</li>
<dt>2009-11-04  6.5.7-5 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Bug Fix for Polynomial distortion. which is now working.</li>
<dt>2009-11-01  6.5.7-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Use -define delegate:bimodal=true to activate any bimodal delegates.</li>
  <li> Make sure MagickWand semaphore is acquired before locking it.</li>
<dt>2009-10-28  6.5.7-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Convert SVG clipping path points from unsigned to long.</li>
<dt>2009-10-26  6.5.7-2 Chris Madison  &lt;madisonblu@gmail...&gt;</dt>
  <li> Only call InstantiateXComponent() if X11 support is included.</li>
  <li> Correct hue computation for the HSB colorspace.</li>
<dt>2009-10-23  6.5.7-1 Samuel Thibault  &lt;samuel.thibault@ens-l...&gt;</dt>
  <li> Braille coder fix for DirectClass images</li>
<dt>2009-10-19  6.5.7-1 Wang Dataton &lt;wang@datat...&gt;</dt>
  <li> Use fdopen() rather than MagickOpenStream() in coders/pict.c.</li>
<dt>2009-10-18  6.5.7-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Alpha blending is not required for ScaleImage().</li>
  <li> Gaussian noise operator is not longer discontinuous.</li>
<dt>2009-10-14  6.5.7-0 Pino Toscano  &lt;pino@kde...&gt;</dt>
  <li> ImageMagick fails to build in GNU/HURD due to absence of PATH_MAX.</li>
<dt>2009-10-14  6.5.7-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Black channel is now set properly when resizing CMYKA images.</li>
<dt>2009-10-10  6.5.7-0 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Bug Fixes for degenerate 'affine' cases of BilinearForward distortion.</li>
<dt>2009-10-06  6.5.6-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Declare the  MagickCore method SpliceImage() in Magick++/Include.h.</li>
    QueueCacheViewAuthenticPixels() for the CopyComposite optimization.<dt>2009-10-04  6.5.6-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Use GetCacheViewAuthenticPixels() rather than</li>
  <li> QueueCacheViewAuthenticPixels() for the CopyComposite optimization.</li>
<dt>2009-10-03  6.5.6-8 Nick Wellnhofer &lt;wellnhofer@aevum...&gt;</dt>
  <li> Add missing libraries to the LIBADD entries in coders/Makefile.am,    filters/Makefile.am and wand/Makefile.am.</li>
  <li> Use LIBS rather than LDFLAGS in configure.ac for the Freetype delegate    library.</li>
<dt>2009-10-01  6.5.6-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Don't use group4 compression if the image is truecolor.</li>
  <li> If image is gray, write grayscale DPX images.</li>
  <li> We no longer lose a scanline when reading multi-frame raw images    (Y, R, C, etc.).</li>
  <li> Properly update the EXIF orientation tag.</li>
<dt>2009-09-25  6.5.6-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Permit percentage of hue for HSL (e.g. hsl(12%,...)).</li>
<dt>2009-09-25  6.5.6-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support -clamp option.</li>
  <li> Patch for IsMagickColorEqual() for HDRI.</li>
  <li> Permit non-percentage HSL colors (e.g. hsl(12.6316,134.58339,219.00012)).</li>
<dt>2009-09-25  6.5.6-5 Elf  &lt;elf@ephem...&gt;</dt>
  <li> Patch to fix configure's framework's undefinedness (only if the gslib    tests are run).</li>
<dt>2009-09-22  6.5.6-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Don't compile Huffman2DEncodeImage() unless the TIFF delegate library    is enabled.</li>
  <li> Hue in hsl() format is 0-360 and does not use %.</li>
<dt>2009-09-21  6.5.6-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Deprecate LevelImageColors(), replace with LevelColorsImage().</li>
<dt>2009-09-17  6.5.6-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Optimize copy composite operator.</li>
<dt>2009-09-15  6.5.6-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Use -define jpeg:size to scale a JPEG image to the specified size.</li>
<dt>2009-09-13  6.5.6-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix ICON alpha mask scanline pad.</li>
<dt>2009-09-11  6.5.5-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Return the global maximum threads to avoid the rare cache view assertions.</li>
  <li> Throw an end-of-file exception for truncated raw gray images.</li>
<dt>2009-09-10  6.5.5-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Do not include last line of text in the interline spacing computation.</li>
<dt>2009-09-07  6.5.5-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Check that quantum_info is defined before destroying it in the PNG coder.</li>
  <li> Add -interline-spacing option to convert.</li>
<dt>2009-09-03  6.5.5-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support multi-page transparent Postscript and PDF.</li>
<dt>2009-09-01  6.5.5-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> A union is required when converting a thread ID to an unsigned long.</li>
<dt>2009-08-28  6.5.5-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add support for TIFF 3.9.1.</li>
<dt>2009-08-27  6.5.5-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Validate with the netscape: reference image.</li>
<dt>2009-08-26  6.5.5-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix memory leak for threaded PerlMagick scripts.</li>
<dt>2009-08-24  6.5.5-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> SVG compile error when if MAGICKCORE_CAIRO_DELEGATE is not defined.</li>
<dt>2009-08-23  6.5.5-1 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Bug Fix for transparency handling in Composite Variable Blur</li>
  <li> Addition of -auto-level and -auto-gamma  image enhancements    (under trial not yet final)</li>
  <li> Addition of a special -channel flag 'sync' which means that the specified    channels are to be modified together by the same amount.  The flag is    enabled by default.  This replaces the current 'channels not modified'    type handling thought IM.</li>
  <li> Modified -channel parsing to continue looking for words, after handling    any shorthand channel options.  For example:  -channel RGB,sync</li>
<dt>2009-08-10  6.5.5-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> identify -format %c logo.png returns the image comment as expected.</li>
  <li> Clone ImageInfo members scene and number_scenes (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=14437).</li>
  <li> Fix memory leak with the -remote option of the animate program (bug report    from Anthony).</li>
  <li> If a grayscale TIFF image has a colormap write it as a colormapped image.</li>
  <li> MVG partial opacity not set properly (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=6&amp;t=14442).</li>
  <li> Black channel was not blurring properly (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=14473).</li>
<dt>2009-08-06  6.5.4-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The display program honors -loop.</li>
  <li> (ab) of Lab colorspace was not offset correctly.</li>
  <li> Scale mag/phase and real/imaginary the same for HDRI and non-HDRI builds.</li>
  <li> SVG permits multiple arc paths with an omitted 'A' (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=6&amp;t=14377).</li>
  <li> The 'skewY' MVG attribute produced incorrect angles (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=6&amp;t=14144).</li>
<dt>2009-08-02  6.5.4-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Optimize GammaImage() method.</li>
<dt>2009-08-02  6.5.4-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> OpenMP-enable GetSimilarityMetric().</li>
<dt>2009-07-30  6.5.4-7 Bernhard Rosenkraenzer &lt;bero@arkli...&gt;</dt>
  <li> Structure trans_values was renamed to trans_color and trans was    renamed to trans_alpha in PNG version 1.4.</li>
<dt>2009-07-29  6.5.4-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Replace color blending in DrawGradientImage() to use Composite Blend.    this makes Gradients handle transparency correctly!</li>
<dt>2009-07-28  6.5.4-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The -thumbnail option no longer removes color profiles (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=14312).</li>
  <li> Do not scale real / imaginary FFT / IFT.</li>
  <li> Check for localtime() NULL return.</li>
  <li> import --help requires an X server (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=14323).</li>
  <li> Fails to load MS Windows icons with compressed PNG elements (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=14324).</li>
<dt>2009-07-25  6.5.4-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support the new JPEG version 7 delegate library.</li>
<dt>2009-07-24  6.5.4-6 Alexander E. Patrakov &lt;patrakov@gmail...&gt;</dt>
  <li> Incorrect use of setjmp in coders/png.c.</li>
<dt>2009-07-23  6.5.4-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> We broke -scene when we fixed the -dispose option.  Try again.</li>
<dt>2009-07-21  6.5.4-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Update autoconf support files.</li>
  <li> More than one -dispose setting overwrote previous settings (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=14252).</li>
  <li> Don't use JPEG's color reduction algorithm for less than 8 colors.</li>
<dt>2009-07-13  6.5.4-3 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Final testing and bug fixes for all mathematical compose methods    Including non-overlapping regions bugs found in in operators Divide,    ColorDodge,  VividLight.  And the handling of transparency to follow    standard 'Over' Blending in Divide.  Only math methods not looked at are    the addition methods Plus, Add, Minus, and Subtract, which do not follow    normal 'Over' alpha blending behavior, for the purposes of mask handling.</li>
<dt>2009-07-12  6.5.4-3 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Addition of user definable 'Mathematics' compose method      -compose Mathematics -set option:compose:args A,B,C,D -composite    Will implement the formula    f(Sc,Dc) = A*Sc*Dc + B*Sc + C*Dc + D    this lets you implement most smooth polynomial compose methods.    (requested by Fred WienHaus)</li>
<dt>2009-07-11  6.5.4-3 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Finished the recoding of Composite methods to allow easier debugging    and faster access.</li>
  <li> Added PegtopLight compose method as an alternative simpler Softlight    alternative.  See notes and comparison to SoftLight in...       http://www.pegtop.net/delphi/articles/blendmodes/softlight.htm</li>
  <li> From the notes on Photoshop blend modes at       http://www.simplefilter.de/en/basics/mixmods.html    Added extra composition modes:       VividLight, PinLight, LinearBurn, LinearDodge    NOTE: 'LinearBurn' the same as 'Plus' but with the normal 'Over' blending.</li>
<dt>2009-07-10  6.5.4-3 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Re-coding of Composite methods HardLight, SoftLight, Overlay, LinearLight,    ColorBurn, ColorDodge, Multiply, Screen  to make it more readable, easier    to debug, and directly comparable to SVG specifications.</li>
  <li> Specifications changed for  SoftLight, ColorBurn, ColorDodge    Though only SoftLight changed to significantly.</li>
  <li> However implementation errors were found for  ColorBurn, LinearLight</li>
<dt>2009-07-01  6.5.4-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add -blue-shift option.</li>
  <li> Add compression flag for each channel of a PSD layer.</li>
  <li> Implement experimental forward and inverse Fourier transforms (contributed    by Sean Burke and Fred Weinhaus).  The -fft / -ifft option is not ready for    prime time just yet.</li>
  <li> Support -cdl (color decision list) option.</li>
  <li> Don't process directories as filenames when using wildcard paths    (i.e. logo[1]/png).</li>
<dt>2009-07-01  6.5.4-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Can't bit shift a float.</li>
<dt>2009-06-25  6.5.4-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Off by one error for multi-frame raw grayscale images.</li>
  <li> Can't stat() a Zip or Bzip opaque structure.</li>
  <li> DPX user bits are no longer truncated.</li>
  <li> Return image colorspace for -format [%colorspace] option.</li>
  <li> ThumbnailImage(): don't subsample if image is already thumbnail size.</li>
<dt>2009-06-23  6.5.4-0 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Automatic determination of B from C and C from B for a 'Keys Filter'    when using the B,C Cubic Filter Expert options was broken.    See https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=14037</li>
<dt>2009-06-19  6.5.4-0 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Added -compose 'Blur', variable blur mapping to CompositeImages    Arguments   X_scale x Y_scale + angle   of the blurring ellipse.</li>
  <li> Added "-blur" special compose option to "composite"</li>
  <li> Cleanup of "composite" compose argument handling</li>
<dt>2009-06-18  6.5.3-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Clone pixel cache when cloning image to prevent RMagick semaphore lock.</li>
  <li> Set compare similarity image to NULL to prevent double free.</li>
<dt>2009-06-16  6.5.3-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Set camera formats to require a seekable stream.</li>
  <li> Do not let display program image window exceed the screen size.</li>
<dt>2009-06-14  6.5.3-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Improve FITS keyword parser.</li>
<dt>2009-06-14  6.5.3-7 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Cleanup of compose 'displace' of old useless code that is not used.</li>
  <li> Implement a compose 'distort' mapping method,    This is basically exactly like 'displace' but relative to a fixed point    which may be user supplied as +X+Y</li>
  <li> Default scaling to width/2 and height/2 of overlay (100% scale)    with a distortion 'center' to the middle of the overlay image</li>
  <li> If a '%' flag given scale displacement relative to image size</li>
  <li> If a '!' flag given make scale and center relative to 'background' image    instead of the overlay map.</li>
  <li> If no 'height' scale given, use the X scale.</li>
<dt>2009-06-13  6.5.3-6 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Fixed bug for compose methods, Hue, Saturate, Luminize</li>
<dt>2009-06-11  6.5.3-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Report the correct transparent pixel values in the display program    magnify windows.</li>
  <li> Do not advance when finalizing image settings in the mogrify program.</li>
<dt>2009-06-11  6.5.3-5 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Fixed "convert" to merge the third 'mask' image into the 'source' image    for correct handling of 2 dimensional -compose "displace".</li>
  <li> Fixed PerlMagick Composite() for the same thing.</li>
  <li> Modified compose "Displace" so displacement image's alpha channel can be    used to mask the transparency of the overlay area.</li>
<dt>2009-06-07  6.5.3-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Added the HALD image Color LUT, and a no-op HALD: image generator.    See Introduction at  http://www.quelsolaar.com/technology/clut.html</li>
<dt>2009-06-07  6.5.3-4 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Changed CompositeImageChannel() so that extra compose arguments are    now passed in the ImageArtifact "compose:args". This can be assigned to    images using   -set "option:compose:args" 'args'  where args are defined    using 'geometry' style or 'comma separated numbers'.</li>
  <li> Declared the special flag needed for Composite Tiling as the ImageArtifact    "compose:outside-overlay".</li>
  <li> Documentation update for CompositeImageChannel() in Core Library to    reflect these changes.</li>
  <li> Documentation update for DistortImage() in Core Library with the extra    ImageArtifact controls it can use.</li>
  <li> Bug correction in normalization of GetOptimalKernelWidth2D() of gem.c</li>
<dt>2009-06-06  6.5.3-3 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Documentation update for CompositeImageChannel() in Core Library.    This adds the information on how extra compose arguments needed for    specific compose methods are actually passed to the library function.    Compose methods such as Blend, Dissolve and Displace.</li>
<dt>2009-06-01  6.5.3-3 Priya Hariharan &lt;priya.hariharan@globa...&gt;</dt>
  <li> The target profile in ProfileImage() is no longer accessed after it is    freed.</li>
<dt>2009-06-01  6.5.3-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Bug fix for -page.</li>
<dt>2009-05-31  6.5.3-1 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Minor change to -function Arctan to make first argument match slope</li>
<dt>2009-05-29  6.5.3-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Do not treat -page as a global option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=13864).</li>
<dt>2009-05-28  6.5.2-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Create thread set for pseudo-random number generator.</li>
<dt>2009-05-25  6.5.2-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Do not change opacity value for the -alpha background option.</li>
  <li> Rebuild automake / autoconf scripts.</li>
<dt>2009-05-23  6.5.2-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Check for XMakeImage() integer overflow vulnerability (Secunia Advisory    SA35216).</li>
<dt>2009-05-23  6.5.2-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Permit reading a specific frame of a multi-page TIFF with blobs.</li>
<dt>2009-05-22  6.5.2-8 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Added new -function methods  Arcsin  and Arctan</li>
<dt>2009-05-19  6.5.2-8 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Fixed a regression with PNG8: format.</li>
<dt>2009-05-19  6.5.2-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The -geometry option was improperly applied twice.</li>
<dt>2009-05-18  6.5.2-6 Richard Oehlinger &lt;richard.oehlinger@celum...&gt;</dt>
  <li> Set image colorspace to YCbCrColorspace if JPEG color space is JCS_YCbCr.</li>
<dt>2009-05-14  6.5.2-5 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Updated help output and command-line options documentation to bring    the -alpha options up to date with what's actually in the code.</li>
<dt>2009-05-13  6.5.2-5 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Change "depreciated" to "deprecated" in several files.</li>
<dt>2009-05-10  6.5.2-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Change OpenMP schedule from dynamic to static for RenderFreeType().</li>
  <li> Recognize unicode strings when computing caption word wrapping.</li>
  <li> New -alpha background option to set fully-transparent pixels to the    background color.</li>
<dt>2009-05-08  6.5.2-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Combined layer of transparent PSD image was not being read properly.</li>
<dt>2009-05-06  6.5.2-3 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Progress on "-define png:bit-depth=value" and "-define png:color-type=value"    It is now able to write an opaque black-and-white image in any of the 15    valid combinations of PNG color-type and bit-depth.</li>
  <li> Fixed a regression with writing sub-8-bit grayscale PNGs.</li>
<dt>2009-05-06  6.5.2-2 Chris Madison  &lt;madisonblu@gmail...&gt;</dt>
  <li> Create 8-bit TIFF images if -depth is set to 8 and HDRI-enable ImageMagick.</li>
<dt>2009-05-04  6.5.2-1 Chris Madison  &lt;madisonblu@gmail...&gt;</dt>
  <li> Accept file lists on the command line (e.g. echo "rose: rose.png" |    convert @- ...).</li>
  <li> Duplicate line in tiff.c breaking read of zip compressed tif (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=13688).</li>
  <li> Support policies to permit or deny any coder, delegate, filter, or file    path (see policy.xml).</li>
<dt>2009-05-02  6.5.2-0 Chris Madison  &lt;madisonblu@gmail...&gt;</dt>
  <li> The mogrify -crop option returns multiple images if an x/y offset is not    specified (e.g. -crop 100x100).</li>
  <li> Generate a proper file path for -path @filelist.txt (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=13671).</li>
<dt>2009-05-01  6.5.2-0 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Accept "-define png:bit-depth=value" and "-define png:color-type=value"    options.  This is work-in-progress with the objective of being able to    precisely specify the type of PNG file to be written.  The previously-used    internal attribute "png:bit-depth" that was used to communicate between    the PNG writer and the JNG writer is changed to "png:bit-depth-written".    This feature needs testing.  It is important to note that this feature    cannot be used to force the PNG to use a bit-depth or color-type that    does not losslessly represent the image.  You can, however, cause    the writer to use a larger depth or to use the RGB colorspace when    grayscale or indexed would have been sufficient.</li>
<dt>2009-05-01  6.5.1-10 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Fixed the Rmin usage in Depolar and Polar distortions</li>
  <li> The 6th argument (Ato) for Polar/Depolar is now optional and defaults    to Afrom + 360 degrees (or a fill circle from the given start angle)</li>
<dt>2009-04-30  6.5.1-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Do not return a black image for -channel RGBA -gaussian (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=13669).</li>
<dt>2009-04-28  6.5.1-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix 'conflicting types for Huffman2DEncodeImage' compile exception.</li>
<dt>2009-04-25  6.5.1-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Generate BMP 32-bit ARGB format for images with transparency (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=13633).</li>
<dt>2009-04-24  6.5.1-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Grok 'image.psd[0]' and 'image.mpg[0]' (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=13609).</li>
  <li> Normalize similarity based on reconstruction not the original (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=13626).</li>
  <li> Support multiple JPEG images encapsulated within DICOM.</li>
<dt>2009-04-23  6.5.1-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Msys does not understand NAME_MAX.</li>
<dt>2009-04-22  6.5.1-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Check for valid linked list before assigning next / previous pointers.</li>
<dt>2009-04-21  6.5.1-4 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Check error return from CompressColormapTransFirst() in coders/png.c</li>
<dt>2009-04-21  6.5.1-4 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Refrain from modifying image struct members (color, depth, matte)    while writing PNG datastreams.</li>
<dt>2009-04-21  6.5.1-4 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Sometimes the PNG8: format would produce 1-, 2-, or 4-bit PNG datastreams.    Now it always produces 8-bit datastreams as users probably expect.</li>
<dt>2009-04-21  6.5.1-4 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Suppressed "shadowed declaration" warnings in coders/jpeg.c and    coders/png.c that are triggered by "-Wshadow" gcc compiler flag.</li>
<dt>2009-04-17  6.5.1-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The display program now returns a 0 exit code on success (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=13579).</li>
<dt>2009-04-14  6.5.1-3 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Folded some long lines and made other cosmetic changes.in coders/png.c</li>
<dt>2009-04-13  6.5.1-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> MVG autodetection failing (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=13542).</li>
<dt>2009-04-11  6.5.1-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Image not properly placed when displaying to the X server root (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=13532).</li>
  <li> fmax() is not support on some platforms (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=13533).</li>
<dt>2009-04-11  6.5.1-2 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Rename existing "Bilinear" distortion as  "BilinearReverse"</li>
  <li> Added forward mapped bilinear distort as  "BilinearForward"</li>
  <li> The "Bilinear" distort is temporarily obsoleted but will eventually    be added as a  "BilinearReverse" and "BilinearForward" combination    mapping though a unit square.</li>
  <li> Sparse Gradient internally uses "BilinearReverse" for its "Bilinear"    gradient function as that method is the direct use of such equations.</li>
<dt>2009-04-01  6.5.1-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Default to min-is-white Photometric for fax / group4 compression (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=13468).</li>
  <li> Respect image resolution when setting PDF MediaBox (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=13350).</li>
  <li> Add SimilarityImage() to return how similar one image is to another.</li>
<dt>2009-03-28  6.5.1-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Graceful exit in djvu coder when EOF is thrown.</li>
  <li> Support -unsharp option for the montage program.</li>
<dt>2009-03-28  6.5.0-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Reduce deskew blurring: use AffineTransformImage() rather than    RotateImage().</li>
  <li> Unexpected end-of-file @ xwd.c/ReadXWDImage/252 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=13430).</li>
<dt>2009-03-26  6.5.0-10 Markus Dahms &lt;markus.dahms@progr...&gt;</dt>
  <li> Support for -density &amp; -units options in PSD writer.</li>
<dt>2009-03-26  6.5.0-10 Samuel Thibault  &lt;samuel.thibault@ens-l...&gt;</dt>
  <li> Fix bug in the braille coder which makes it always segfault.</li>
<dt>2009-03-25  6.5.0-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Enhance the compare program to locate a template image within a larger    image.</li>
  <li> Eliminate assertion when generating a PDF thumbnail.</li>
<dt>2009-03-25  6.5.0-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix assertion in IntegralRotateImage (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=13410).</li>
<dt>2009-03-24  6.5.0-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Referenced counted blob incremented incorrectly in CloneImage() (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=13410).</li>
<dt>2009-03-23  6.5.0-6 Chris Madison  &lt;madisonblu@gmail...&gt;</dt>
  <li> Assertion failure reading PSD image (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=13397).</li>
<dt>2009-03-21  6.5.0-5 Chris Madison  &lt;madisonblu@gmail...&gt;</dt>
  <li> Change -selective-blur to use gaussian kernel.</li>
<dt>2009-03-21  6.5.0-4 ERB  &lt;entropy@xebec...&gt;</dt>
  <li> Missing locks in blob - race condition (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=13385).</li>
<dt>2009-03-19  6.5.0-3 Chris Madison  &lt;madisonblu@gmail...&gt;</dt>
  <li> Use default SVG resolution unless resolution is explicitly set (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=13373).</li>
  <li> Add support for -selective-blur option.</li>
<dt>2009-03-19  6.5.0-3 ragesteel  &lt;iimagemagic-org-iapied0o@gt2.r...&gt;</dt>
  <li> ImageToBlob() no longer faults if Jasper compression is wrong (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=13372).</li>
<dt>2009-03-19  6.5.0-3 ERB  &lt;entropy@xebec...&gt;</dt>
  <li> Check the 8BIM profile resource block length (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=13368).</li>
  <li> Unlocked read in DeleteNodeByValueFromSplayTree (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=13370).</li>
<dt>2009-03-18  6.5.0-2 ERB  &lt;entropy@xebec...&gt;</dt>
  <li> Eliminate race condition when acquiring a wand (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=13357).</li>
  <li> Use of "localtime" in FormatMagickTime not thread-safe (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=13358).</li>
<dt>2009-03-18  6.5.0-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix the image compose operator at OverCompositeOP for shadows (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=13330).</li>
<dt>2009-03-14  6.5.0-1 Paul Smedley  &lt;paul@smedl...&gt;</dt>
  <li> Patches to get ImageMagick working under OS2.</li>
<dt>2009-03-10  6.5.0-1 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Expansion of Virtual-Pixel (Cache) handling, to include corrected Mirror,    plus addition of  CheckerTile, HorizontalTileEdge and VerticalTileEdge</li>
<dt>2009-03-10  6.5.0-0 John Cupitt  &lt;jcupitt@gmail...&gt;,</dt>
  <li>                    Glenn Randers-Pehrson &lt;glennrp@image...&gt;</li>
  <li> DICOM reader not handling signed pixels properly.</li>
<dt>2009-03-09  6.4.9-10 Alexander E. Patrakov &lt;patrakov@gmail...&gt;</dt>
  <li> Don't call GetValueFromSplayTree() if image properties is NULL.</li>
<dt>2009-03-09  6.4.9-10 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Fix minor size issue with bestfit +distort operation.</li>
  <li> Enable listing of -distort Polynomial</li>
  <li> Minor tweeks and center fixes for Polar/Depolar</li>
<dt>2009-03-01  6.4.9-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Convert returns MagickFalse for the -version option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=13230).</li>
  <li> Don't set pixel opacity unless the image alpha channel is active (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=13189).</li>
<dt>2009-02-27  6.4.9-8 Anthony Thyssen &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Fix old -clut bug for re-coloring gray images using transparent and    semi-transparent colors.</li>
<dt>2009-02-22  6.4.9-7 Rick Mabry  &lt;rick.mabry@anony...&gt;</dt>
  <li> Changes have been made to scores of the files that generate the    documentation. The most noticeable cosmetic changes are to the command-line    examples and command-line snippets, which now have a new look: dark blue    boxes with white/yellow text to indicate sample input/output.  Inclusion of    current version and release dates in appropriate places are now    automatically generated. Also, many changes have been made to begin to    bring the pages into strict W3C compliance with respect to both HTML and    CSS.</li>
<dt>2009-02-21  6.4.9-7 Chris Madison  &lt;madisonblu@gmail...&gt;</dt>
  <li> The identify program reads the image pixels when the -format option is    asking for image statistics.</li>
  <li> Much improved ImageMagick validation suite (exercise with 'make check').</li>
<dt>2009-02-18  6.4.9-5 Jon  &lt;jon@brick...&gt;</dt>
  <li> Processing the arg list -tile is replaced by -sans0 which is 1 char longer    and which overwrites the allocated area.</li>
<dt>2009-02-16  6.4.9-5 Chris Madison  &lt;madisonblu@gmail...&gt;</dt>
  <li> Add section to license to alert users to third-party licenses in the    NOTICE file.</li>
<dt>2009-02-11  6.4.9-3 Anthony  &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Replaced geometry string parsing using ParseGravityGeometry() in    "composite" with more direct use of GravityAdjustGeometry();</li>
<dt>2009-02-10  6.4.9-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support file descriptors (e.g. convert image.jpg fd:3 ...).</li>
  <li> The stream utility no longer go into an infinite loop (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=13102).</li>
<dt>2009-02-04  6.4.9-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> JPEG to PDF was not always reversible (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=13020).</li>
<dt>2009-01-30  6.4.9-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Stroking when annotating failed for stroke widths &gt; 2 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=13009).</li>
<dt>2009-01-24  6.4.8-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> TransformImageColorspace() returns GRAYColorspace when set (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=12990).</li>
  <li> Don;t assume CMYK unless document process colors include Cyan, Magenta,    or Yellow.</li>
<dt>2009-01-23  6.4.8-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Increase random angle range for +polaroid from -7..7 to -15..15 degrees.</li>
<dt>2009-01-22  6.4.8-8 Anthony  &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Fixed a -evaluate AddModulus 'patch' for correct 'negative' handling</li>
<dt>2009-01-20  6.4.8-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Removed previous patches for -shear directions.</li>
<dt>2009-01-20  6.4.8-8 Thomas Stegemann  &lt;Thomas.Stegemann@mater...&gt;</dt>
  <li> SVG with resolutions other than 72.0 dpi, text is no longer transformed    twice.</li>
<dt>2009-01-20  6.4.8-8 Anthony  &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Renamed -evaluate methods 'sin' and 'cos' to math C math library names</li>
  <li> Added  "-function polynomial  a,b,c,...."   Eg:  a*x^2 + b*x + c</li>
  <li> Added  "-function sinusoid freq,phase,amplitude,bias  (all optional)</li>
<dt>2009-01-18  6.4.8-7 Anthony  &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Removed "annotate" patches, which causes no end of problems.    Original coding worked perfectly fine.  Annotate isn't part of SVG!</li>
<dt>2009-01-18  6.4.8-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Respect mouse wheel movements for display program (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=12938).</li>
  <li> Grab button in Display Open menu now works consistently (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=12942).</li>
  <li> Patch for problem with opacity in MVG (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=12946).</li>
<dt>2009-01-14  6.4.8-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Don't accept discontinuous shear angles for the -annotate option.    -- REMOVED</li>
<dt>2009-01-14  6.4.8-6 Mark Freeman &lt;mark.freeman@porci...&gt;</dt>
  <li> Apply patch so ImageMagick compiles with Visual Studio 6.</li>
<dt>2009-01-12  6.4.8-5 Alexander E. Patrakov &lt;patrakov@gmail...&gt;</dt>
  <li> Fix small memory leak on truncated PNG images.</li>
  <li> Do not allocate pixels when pinging a PNG image.</li>
<dt>2009-01-11  6.4.8-6 Chris Madison  &lt;madisonblu@gmail...&gt;</dt>
  <li> Set the stroke opacity for "opacity" SVG element (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=10594).</li>
<dt>2009-01-10  6.4.8-5 Matthew Litwin &lt;mlitwin@sonic...&gt;</dt>
  <li> Convert to windows .ico format no longer inverts alpha channel.</li>
<dt>2009-01-10  6.4.8-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Interpret geometry correctly for negative angles (-shear 30x-10).</li>
<dt>2009-01-08  6.4.8-4 Eberhard Mattes  &lt;eberhard.mattes@web.d...&gt;</dt>
  <li> Fix GetMagickToken() to accept locales that use "," as radix character.</li>
<dt>2009-01-08  6.4.8-4 Anthony  &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Add (and Fix) -evaluate methods   Sine, Cosine, AddModulus</li>
<dt>2009-01-05  6.4.8-4 Rick Mabry  &lt;rick.mabry@anony...&gt;</dt>
  <li> Check for negative offsets (bevel widths) for the -frame option.</li>
<dt>2009-01-04  6.4.8-4 Alexander E. Patrakov &lt;patrakov@gmail...&gt;</dt>
  <li> Patch for a memory leak and a logical bug in coders/gif.c.</li>
  <li> CopyMagickString() now returns the minimum of the source string length    or the length parameter.</li>
  <li> Properly set alpha channel in PNGs with palette and tRNS.</li>
<dt>2009-01-01  6.4.8-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support %[] embedded filename tag (e.g. convert rose: -set area "%wx%h"    'rose-%[area].png').</li>
  <li> Do not set the fill element when 'opacity' is set (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=10594).</li>
  <li> Restore support for decoding the DVI format.</li>
  <li> Add perl and math lib reference to PerlMagick Makefile (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=12840).</li>
  <li> Fix crash on invalid JPEG XML profile.</li>
  <li> Export libtool symbols in MagickCore.sym and MagickWand.sym.</li>
  <li> Support sine and cosine as arguments to the -evaluate option.</li>
<dt>2008-12-31  6.4.8-4 Amartyo Banerjee" &lt;amartyo@gmail...&gt;</dt>
  <li> Calculate the kurtosis and skewness of image channels (reference    http://amartyosscrapbook.blogspot.com/2008/12/formulas-used-to-calculate-kurtosis-and.html).</li>
<dt>2008-12-28  6.4.8-4 Rick Mabry  &lt;rick.mabry@anony...&gt;</dt>
  <li> Patch magick/display.c and PerlMagick/ContrastStretchImage() to return the    same results as the -contrast-stretch option.</li>
  <li> ContrastStretchImageChannel() no longer interpreted as Contast() by    MogrifyRegion() in PerlMagick.</li>
<dt>2008-12-28  6.4.8-3 Rick Mabry  &lt;rick.mabry@anony...&gt;</dt>
  <li> Reverse argument and option in Throw*InvalidArgumentException()    macro for proper exception message.</li>
  <li> Recognize negative geometries for -shear and -annotate (.e.g. 45x-30).</li>
  <li> Fix Y shear angle for -shear option.</li>
<dt>2008-12-26  6.4.8-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Use GetImageArtifact() to retrieve -attenuate option value for +noise.</li>
  <li> Support reading FITS test files (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=12799).</li>
  <li> Replace input.ttf with the public domain Tuffy.ttf font.</li>
  <li> MagickNewImage() no longer faults when parameters are incorrect (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=12817).</li>
  <li> Allocate strings returned by XGetResourceInstance() (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=12818).</li>
  <li> The -append gravity is relative to the container (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=12821).</li>
<dt>2008-12-19  6.4.8-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Reference cache rather than acquiring when cloning an image.</li>
<dt>2008-12-19  6.4.8-0 Cashish Kulkarni &lt;ashkulz@redif...&gt;</dt>
  <li> Cross-compilation failure using MinGW on Linux for ImageMagick trunk</li>
<dt>2008-12-19  6.4.8-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add -interword-spacing option to convert.</li>
  <li> Initialize the black channel when testing the CMY colorspace (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=12685).</li>
  <li> remove calls to exit() in MagickWand (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=12772).</li>
  <li> Validate -affine arguments.</li>
  <li> Accept -attenuate as an option for convert.</li>
  <li> Properly create RGBA image if colormapped image has transparency.</li>
  <li> Support X11 geometry like this: +-4+-4;  weird but X11 supports it.</li>
<dt>2008-12-17  6.4.7-10 Chris Madison  &lt;madisonblu@gmail...&gt;</dt>
  <li> Fix off-by-one problem with -shear.</li>
  <li> Clone pixel cache method when cloning an image.</li>
<dt>2008-12-16  6.4.7-9 Anthony  &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Make "-layers Coalesce" work as it should.</li>
<dt>2008-12-16  6.4.7-9 Sam Fisher &lt;fisher@image...?</dt>
  <li> Support &gt; 2GB TIFF under Windows.</li>
<dt>2008-12-12  6.4.7-8 mootools &lt;help@mooto...&gt;</dt>
  <li> FormatMagickTime() checks to ensure the provided time is valid.</li>
<dt>2008-12-12  6.4.7-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add -kerning option to convert.</li>
  <li> Remove halo effect for the -scale option.</li>
<dt>2008-12-11  6.4.7-7 Alan Wright  &lt;alanwright.atex@google...&gt;</dt>
  <li> Fix a 1 byte overrun in Postscript coder.</li>
<dt>2008-12-10  6.4.7-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix small memory leak in ExpandFilenames().</li>
<dt>2008-12-09  6.4.7-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix small memory leak in LoadLocaleList().</li>
  <li> Fix small memory leak in GetProfilesFromResourceBlock().</li>
  <li> Don't forget to scale grayscale values when quantum min-is-white is set.</li>
<dt>2008-12-08  6.4.7-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Include delegate libraries in MagickCore-config script.</li>
<dt>2008-12-07  6.4.7-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix off-by-one error for -chop 0x50%.</li>
  <li> Performance improvement bilinear interpolation.</li>
<dt>2008-12-06  6.4.7-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support absolute paths in the include directive within a configuration    file.</li>
<dt>2008-12-05  6.4.7-1 Chris Madison  &lt;madisonblu@gmail...&gt;</dt>
  <li> Assume Log colorspace if DPX transfer is LogarithmicColorimetric.</li>
  <li> Another attempt at properly extracting the IPTC profile from a 8BIM    resource block.</li>
<dt>2008-12-04  6.4.7-1 Anthony  &lt;A.Thyssen@griffith...&gt;</dt>
  <li> AppendImage() re-written to respect gravity properly!    Routine simplified to a single loop for both styles of append</li>
<dt>2008-12-03  6.4.6-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> AppendImage() respects gravity.</li>
  <li> Protect against circular image list when cropping.</li>
  <li> The index variable must be long rather than unsigned long for the DCM    coder.</li>
<dt>2008-12-02  6.4.6-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Use ScaleQuantumToMap() to prevent fault in SetGrayscaleImage() when    quantum depth is 32.</li>
<dt>2008-12-01  6.4.6-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Global replaced accidentally renamed MagickGetImagePixelColor().</li>
<dt>2008-11-29  6.4.6-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed transient bug in the -white-threshold option.</li>
  <li> -extent x256+100+100 no longer returns an exception (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=7&amp;t=12583).</li>
<dt>2008-11-27  6.4.6-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> TIFF pad is relative to bits-per-sample (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=12563).</li>
<dt>2008-11-27  6.4.6-5 Koshiji Masayuki  &lt;kosiji.masayuki@da.mi...&gt;</dt>
  <li> Support GBR raw image files.</li>
<dt>2008-11-26  6.4.6-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> DPX 10 bit YUV 4:2:2 are now processed properly (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=12443).</li>
  <li> Default PDF compression to that of the image unless overwritten by    the -compress option.</li>
<dt>2008-11-25  6.4.6-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Numerous pixel cache improvements including embedded support for    OpenMP in a transparent manner.</li>
<dt>2008-11-20  6.4.6-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Transient bug in encipher / decipher operation (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=12540).</li>
<dt>2008-11-14  6.4.6-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> MPC image files working again.</li>
  <li> coders/wmf.c/lite_font_stringwidth() returns string width (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=12528).</li>
<dt>2008-11-10  6.4.6-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix temporary file leak.</li>
<dt>2008-11-18  6.4.5-9 Koshiji Masayuki  &lt;kosiji.masayuki@da.mi...&gt;</dt>
  <li> Fix bug for RGBO image @ line, plane and partition interlace.</li>
<dt>2008-11-18  6.4.5-9 Chris Madison  &lt;madisonblu@gmail...&gt;</dt>
  <li> Deprecate pixel methods: AcquireImagePixels(), GetImagePixels(), etc.</li>
  <li> New pixel methods: GetVirtualPixels(), GetAuthenticPixels(), etc.</li>
<dt>2008-11-15  6.4.5-7 Alexander E. Patrakov &lt;patrakov@gmail...&gt;</dt>
  <li> GPS and multivalued EXIF properties support</li>
<dt>2008-11-14  6.4.5-6 Manish Aggarwal &lt;manish@circu...&gt;</dt>
  <li> Add TransparentPaintImageChroma() to MagickCore and transparentChroma()    to Magick++.</li>
<dt>2008-11-10  6.4.5-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Correct DPX frame position property label (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=12440).</li>
  <li> Textures are no longer painted as the background color.</li>
  <li> Update both fields of an EXIF resolution.</li>
  <li> Support query-font-metrics MSL tag.</li>
<dt>2008-11-01  6.4.5-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Do not set image colorspace for the MSL modulate tag.</li>
<dt>2008-11-01  6.4.5-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Off by one error when computing affine in DrawAffineImage() (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=12391.</li>
<dt>2008-10-30  6.4.5-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed local adaptive thresholding  when using an offset (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=12371.</li>
  <li> Set SetImagePixels() rather than SyncImagePixelCache() to update    the pixel cache morphology.</li>
<dt>2008-10-26  6.4.5-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Set explicit image format for BlobToImage() (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=12340).</li>
  <li> p_thread_t is an aggregate under MinGW.</li>
<dt>2008-10-20  6.4.5-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> pthread_t can be aggregate so stop treating it like its atomic.</li>
  <li> default the WPG image size to 1 top avoid "no pixels defined in cache"    exceptions.</li>
<dt>2008-10-17  6.4.4-8 Anthony  &lt;A.Thyssen@griffith...&gt;</dt>
  <li> slight modification of the added "radial-gradient:" image generator    so the radius goes to an edge rather than the corner, allowing more user    control based on image size.</li>
  <li> fix -raise N to mean -raise NxN</li>
<dt>2008-10-15  6.4.4-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add support for inline images.</li>
<dt>2008-10-10  6.4.4-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> MinGW supports both Posix threads and Windows critical sections.</li>
<dt>2008-10-06  6.4.4-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> pthread_self() can be an aggregate value.</li>
  <li> Scale pixel quantum to match PNG tRNS range (i.e. 0-255).</li>
<dt>2008-10-06  6.4.4-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Set sentinel byte for MVG coder.</li>
  <li> fx:standard_deviation returns standard deviation now instead of mean.</li>
<dt>2008-10-01  6.4.4-1 Florent Monnier  &lt;monnier.florent@gmail...&gt;</dt>
  <li> Support radial gradients in DrawGradientImage().</li>
<dt>2008-09-26  6.4.4-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix memory leak when XMP profile is corrupt.</li>
  <li> Support filename references (e.g. convert image-%d.jpg[1-5] ...).</li>
<dt>2008-09-25  6.4.4-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Use -remap rather than -affinity.</li>
  <li> Don't unregister a module for an image coder signature exception.</li>
  <li> Don't assume a monochrome image is colormapped.</li>
<dt>2008-09-25  6.4.4-0 Anthony &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Attempt to fix three image "composite -displace" while also allowing use    of separate X, Y grayscale displacement maps, or a merged X=red Y=green    (later transparency mask will also be added) as discussed in IM Examples,    'distortion maps', but for -displace.</li>
<dt>2008-09-24  6.4.3-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix pixel cache race condition.</li>
<dt>2008-09-23  6.4.3-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed an OTB coder bug (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=12119).</li>
<dt>2008-09-23  6.4.3-8 Peter Fales &lt;psfales@alcat...&gt;</dt>
  <li> Add NULL terminator to options list to in MontageImageCommand().</li>
<dt>2008-09-23  6.4.3-8 Anthony &lt;A.Thyssen@griffith...&gt;</dt>
  <li> Added -layers TrimBounds  which will adjust the offsets and canvas bounds    to fit the current sequence of layered/animated images. The images    themselves are not modified only the 'page' meta-data.  As a side-effect    all offsets will become positive, with a minimal canvas width/height.</li>
<dt>2008-09-22  6.4.3-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Define _FILE_OFFSET_BITS from MAGICKCORE_FILE_OFFSET_BITS.</li>
<dt>2008-09-10  6.4.3-7 Anthony &lt;A.Thyssen@griffith...&gt;</dt>
  <li> String Memory leak from InterpretImageProperties() in "annotate"    for Command line handling in mogrify.c</li>
  <li> Allow percent escapes in both -sparse-color and -distort argument strings.</li>
  <li> Fix -alpha to allow Set, Copy, and Extract from command line</li>
  <li> Fix -alpha Set so it only clears the alpha when it was previously off</li>
  <li> Changed 'AllChannels' to be just the 'real' channels (including K).</li>
  <li> Special handling if  +level-colors is given one color, and no separator.</li>
  <li> Fix 'matte' flag in DisposeImages() (for -layer dispose)</li>
<dt>2008-09-01  6.4.3-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix -interpolate / -compose settings.</li>
  <li> No need to specify -endian for native floating point format.</li>
  <li> Remove small memory leak when cloning image properties (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11981).</li>
  <li> The scan delegate requires a device name, not a symbolic link.</li>
  <li> Report alpha instead of opacity for the TXT image format (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=12002).</li>
  <li> Add channel support to -motion-blur.</li>
  <li> Set the SVG affine matrix *before* we compute the scale (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=12030).</li>
  <li> Rely on 'omp critical' in the rare case where OpenMP is enabled but    ImageMagick distribution is built without thread support.</li>
  <li> Return the correct number of unique colors for colormapped image (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=12055).</li>
  <li> SVG depends on MagickWand for parallel make (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=12099).</li>
<dt>2008-09-02 6.4.3-7</dt>
  <li> Addition of 'BarrelInverse' Distortion</li>
<dt>2008-08-27  6.4.3-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Extract / embed namespace for JPEG XMP profiles (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11832).</li>
  <li> Deprecate -map and replace with -affinity which supports dither methods.</li>
  <li> Set image depth when -depth is fired.</li>
  <li> Fix small memory leak in TIFF coder (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11968).</li>
<dt>2008-08-24  6.4.3-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Parallelize the colorspace transforms.</li>
  <li> Honor gravity for -extent option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11944).</li>
<dt>2008-08-22  6.4.3-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed a memory leak in the TransparentPaintImage() method.</li>
<dt>2008-08-20  6.4.3-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Treat -compose as a setting.</li>
  <li> Check for depth == 0 in GetQuantumScale() (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11921).</li>
  <li> Fix CIN coder scanline length (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11922).</li>
<dt>2008-08-20  6.4.3-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add $(MAGICKWAND_LIBS) dependency to the PerlMagick Makefile (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11908).</li>
  <li> Fix configure script to configure the JBIG delegate library (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11907).</li>
  <li> Error in indexed PNG output if number of colors &lt;= 16 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11905).</li>
<dt>2008-08-18  6.4.3-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Always reinterpret %[fx:] properties.</li>
  <li> Composite based on the composite image compose operator.</li>
<dt>2008-08-14  6.4.2-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add --coder-path and --filter-path options to MagickCore-config to    support the Magick Coder and Image Filter kits.</li>
<dt>2008-08-17  6.4.2-9 Anthony &lt;anthony@griffith...&gt;</dt>
  <li> -sparse-color option completed with initial set of methods.</li>
  <li> -distort Barrel arguments expanded.</li>
<dt>2008-08-14  6.4.2-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The -draw option no longer returns an error when for # like .6 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11879).</li>
<dt>2008-08-14  6.4.2-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New dithering selection option, -dither Floyd-Steinberg or    -dither Riemersma.</li>
<dt>2008-08-10  6.4.2-8 Anthony &lt;anthony@griffith...&gt;</dt>
  <li> Added new distort "Polar" and "DePolar" due to Forum Discussions</li>
<dt>2008-08-07  6.4.2-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Change MPEG delegate from mpeg2decode/mpeg2encode to ffmpeg (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11827).</li>
  <li> Extract embedded XMP and EXIF profiles froma Photoshop resource block.</li>
  <li> Support -compose option in the compare program.</li>
<dt>2008-08-04  6.4.2-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support -fx scientific-notation (e.g. '2.0*3.81469e-06').</li>
  <li> Substitute DistortImage() with 'AffineProjectionDistortion' for    the older DrawAffineImage() in AffineTransformImage().</li>
  <li> Apply Sam Hocevar's patch to replace  Hilbert-Peano curve dithering with    Floyd Steinberg.</li>
  <li> Added -virtual-pixel method VerticalTile as a complement to HorizontalTile</li>
<dt>2008-08-02  6.4.2-6 Anthony &lt;anthony@griffith...&gt;</dt>
  <li> Added -virtual-pixel method HorizontalTile suitable for generating 360    degree Arcs and Polar Distorts.</li>
<dt>2008-07-31  6.4.2-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Patch -fx to properly recognize maxima and minima.</li>
  <li> Add channel specifier to -fx depth, mean, maxima, minima, and    standard_deviation (e.g. depth.r).</li>
  <li> Properly append .magick to the USERPROFILES path (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11806).</li>
<dt>2008-07-30  6.4.2-6 Anthony &lt;anthony@griffith...&gt;</dt>
  <li> Added a  "-set option:distort:scale"  which scales the output 'view'    by the amount given.  This is directly useful for doing 'super-sampled'    distorts, just set this, the scale the result back to a normal size.</li>
<dt>2008-07-27  6.4.2-5 Anthony &lt;anthony@griffith...&gt;</dt>
  <li> Rewrite on coefficient handling for DistortImages so allow for generation    by other operators (SparseColor), and addition of verbose output of    equivalent -fx functions for DistortImages to report of the internal    coefficients that was calculated, and who they are used.</li>
  <li> Initial implementation of SparseColor for interpolated gradients from    sparsely separated points of color (or possibly other forms of arguments)</li>
  <li> New distortion Barrel as defined by Helmut Dersch options A,B,C,D    on his web page  http://www.all-in-one.ee/~dersch/barrel/barrel.html    And as developed by Fred WeinHaus in his PinBarrel script</li>
<dt>2008-07-20  6.4.2-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Certain corrupt GIF images no longer hang (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11723).</li>
  <li> Read more than one image (if they exist) from DJVU image files.</li>
  <li> Don't set image depth in histogram coder (references    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11752).</li>
<dt>2008-07-17  6.4.2-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed cache nexus threading problem to avoid spurious assertions when    calling the DistortImage() method.</li>
<dt>2008-07-17  6.4.2-4 Anthony &lt;anthony@griffith...&gt;</dt>
  <li> New distortion  Shepards which provide semi-localized distorts of control    points within an image, as first developed for IM by Frew Weinhaus in his    ShapeMorph script.   http://www.fmwconcepts.com/imagemagick/shapemorph/    It's almost like taffy pulling!</li>
<dt>2008-07-12  6.4.2-2 Anthony &lt;anthony@griffith...&gt;</dt>
  <li> Separate coefficient calculation from DistortImages (future development)</li>
  <li> Perspective and Bilinear Distortions fallback to Affine    when less than 4 point pairs are provided.</li>
  <li> Affine Distortion now handles 2 point pairs (SRT of a single line)    and a simple translation if only a single point pair is provided.</li>
  <li> Added 'verbose' output of some of the distortion equations generated</li>
  <li> Initial addition of polynomal distortion (incomplete - not working yet)</li>
<dt>2008-06-29  6.4.2-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add log2 and round as -fx operators.</li>
  <li> Add log and round as -evaluate operator.</li>
  <li> Add -deskew option to straighten an image.</li>
<dt>2008-06-22  6.4.2-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Use the source image interpolation method when drawing an affine image.</li>
<dt>2008-06-24  6.4.2-1 Anthony &lt;anthony@griffith...&gt;</dt>
  <li> Added new operator  +/-level-colors which will 'level' images based    on colors to use for the black and white points. This lets to adjust    the image in terms of mapping the given colors from/to black and white    respectively.</li>
<dt>2008-06-23  6.4.2-0 Christian Lackas &lt;christian@lacka...&gt;</dt>
  <li> Fix a problem with calling mpeg2encode with parameters (%o/%i) in wrong    order.</li>
<dt>2008-06-22  6.4.2-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Refactor additional ImageMagick algorithms for OpenMP support.</li>
<dt>2008-06-25  6.4.1-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add pow as an -evaluate operation, using normalized values</li>
<dt>2008-06-18  6.4.1-9 Anthony &lt;anthony@griffith...&gt;</dt>
  <li> Added a  LevelizeImageChannels() which is similar to LevelImageChannels()    Function maps black and white values to the given level values.    Rather than mapping the given level values to black and white.    Basically a 'reverse-level' function, with different input args.</li>
  <li> Set  +level  or a '!' flag in -level or LevelImage() to call    the new 'reverse-level' function LevelizeImageChannels().</li>
  <li> More work on IsMagickColorSimilar() to fix relationship between    transparent-black and opaque-black, which was matched as 'similar'.    Also attempts to fix 'K' channel handling for CMYK colorspace.    More work on this to come.</li>
<dt>2008-06-25  6.4.1-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The TXT format correctly reports alpha channel (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11478).</li>
  <li> MONOTCHROME1 Dicom images are not longer inverted (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11492).</li>
<dt>2008-06-13  6.4.1-8 Anthony &lt;anthony@griffith...&gt;</dt>
  <li> Fixed IsMagickColorSimilar() as used by -opaque and -transparent    so as to understand that the Hue Channel is cyclic by nature</li>
<dt>2008-06-08  6.4.1-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The -sketch option is working again (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11454).</li>
<dt>2008-06-08  6.4.1-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> More algorithms refactored to support a threaded cache view.</li>
  <li> EPS2 output only 1/3 of image when using LZW or rle compress (reference    https://imagemagick.org/discourse-server//viewforum.html?f=3).</li>
  <li> ISO C++ 1998 does not support 'long long' (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11405).</li>
  <li> Patch GetMagickMemoryHandlers() to return the properly return the memory    handler addresses.</li>
  <li> Generate histogram comment if # unique colors exceed 1024 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11434).</li>
<dt>2008-06-03  6.4.1-6 Marton Bokor  &lt;marton.bokor@gfthu....&gt;</dt>
  <li> Reading EMF files containing non-ascii characters no longer fails for          UTF8 encoded paths on Windows XP.</li>
<dt>2008-06-03  6.4.1-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The -colorspace option is an operator, not a setting.</li>
<dt>2008-05-31  6.4.1-5 rsnel &lt;rik@snel....&gt;</dt>
  <li> gif.c misreads Gifs in which LZW codes are split across three datablocks.</li>
<dt>2008-05-31  6.4.1-4 Matthew Clark &lt;mclark@gorge...&gt;</dt>
  <li> Patches to the JPEG and DCM coders to fix a few problems reading    certain DCM image types.</li>
<dt>2008-05-15  6.4.1-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Interpreting the -set option is no longer delayed.</li>
  <li> Add AcquireCacheViews() and DestroyCachewViews() to the API.</li>
  <li> Call DrawAffineImage() instead of CompositeImage() (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11288).</li>
  <li> Throw exception for TIFF compression not support (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11289).</li>
  <li> The +opaque option now recognizes its required argument (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11298).</li>
  <li> The -background and -virtual-pixel settings are now applied correctly    across parenthesis.</li>
  <li> Only reset the exception signature if the relinquish memory is MagickTrue.</li>
  <li> Correct recolor equation for computing opacity (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11346).</li>
  <li> Set midpoint when scaling JP2 images.</li>
  <li> Semaphores must be passed by reference when destroyed for reliable thread    locks.</li>
  <li> Updated Matlab coder (thanks to Jaroslav Fojtik).</li>
<dt>2008-05-13  6.4.1-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> MagickGetResource(): resources are MagickSizeType not unsigned long.</li>
<dt>2008-05-11  6.4.1-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Import: properly handle a hierarchy of subwindows under X11.</li>
  <li> Refactor quantum pixel processor to improve ease of use and speed.</li>
<dt>2008-05-09  6.4.1-2 Leonardo de Paula Rosa Piga &lt;lpiga@terra...&gt;</dt>
  <li> OpenMP patch for sepia-tone effect.</li>
<dt>2008-05-08  6.4.1-2 Bruno Cardoso Lopes &lt;bruno.cardoso@gmail...&gt;</dt>
  <li> OpenMP patch for NormalizeImage() &amp; TintImage()</li>
<dt>2008-05-06  6.4.1-2 &lt;cristiannomartins@gmail...&gt;</dt>
  <li> OpenMP patch for GetImageChannelDepth().</li>
  <li> Set depth to 32 when saving MIFF HDRI image files.</li>
<dt>2008-05-05  6.4.1-2 &lt;joao.vita@gmail...&gt;</dt>
  <li> OpenMP patch for OilPaintImage Function</li>
<dt>2008-05-05  6.4.1-2 Sean Patrick Burke  &lt;seanburk@gmail...&gt;</dt>
  <li> Update IPLab coder (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=11200).</li>
<dt>2008-05-02  6.4.1-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Return correct result for -fx luminence.</li>
  <li> Restore missing break so that PGM images remain PGM.</li>
  <li> Speed up the processing of ASCII PNM files.</li>
  <li> Return the correct number of MNG images for PingImage().</li>
<dt>2008-05-01  6.4.1-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Remove C++ style comments from source.</li>
  <li> Center motion blur kernel.</li>
  <li> Reenable dithering for -monochrome option.</li>
<dt>2008-04-24  6.4.0-11 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> For color reduction, use maximum tree depth if image has 1024 or less    unique colors.</li>
  <li> Use a uniform convolution filter for motion blur (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11122).</li>
  <li> Add 'mean' and 'std' symbols to the Fx expression parser.</li>
<dt>2008-04-20  6.4.0-10 Chris Madison  &lt;madisonblu@hotma...&gt;</dt>
  <li> Updated to the latest autoconf/automake/libtool scripts.</li>
  <li> Default to HSL colorspace when modulating (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=11073).</li>
  <li> The -regard-warnings option properly returns a program status of 1 if and    only if a warning or error exception is thrown.</li>
  <li> Report 'no clip path defined' exception for -clip-path option (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11098).</li>
<dt>2008-04-16  6.4.0-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Distinguish between pre and post processing of image list options.</li>
  <li> Return MagickTrue if InvokeDynamicImageFilter() does not generate an    exception (reference                https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=11065).</li>
<dt>2008-04-16  6.4.0-7 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Instead of masking the PNG tRNS values when reducing from 16-bit,    set image-&gt;matte to MagickFalse and emit a warning.  This will produce    behavior similar to that of libpng-1.2.27 (and libpng-1.2.19 and earlier).</li>
<dt>2008-04-12  6.4.0-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix fault for animate -window root image.gif.</li>
  <li> Use GetImagePixels() rather than SetImagePixels() when making multiple    passes and setting image pixels (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=11022).</li>
<dt>2008-04-10  6.4.0-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Compile error in coders/avi.c when JPEG delegate library is unavailable.</li>
<dt>2008-04-09  6.4.0-5 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Mask the PNG tRNS values when reducing from 16-bit, in accordance with    the PNG specification, instead of scaling them.</li>
<dt>2008-04-09  6.4.0-5 Glenn Randers-Pehrson &lt;glennrp@image...&gt;</dt>
  <li> Revised png.c to avoid saving unknown chunk types that will never    be used later.  This prevents the vulnerability described in    CVE-2008-1382, with respect to all unknown chunks except vpAg.    To handle an invalid, zero-length vpAg chunk properly will require    libpng-1.2.27 or later.</li>
<dt>2008-04-04  6.4.0-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Use mplayer delegate if ImageMagick does not grok AVI op code.</li>
  <li> Use proper rounding for the -fx intensity expression.</li>
<dt>2008-03-26  6.4.0-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix +swap option so it no longer throws an assertion.</li>
  <li> Return correct min/max for grayscale JPEG images (e.g. -format %[min]).</li>
<dt>2008-03-26  6.4.0-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Rewrote patch so that writing pyramid TIFF images no longer fails if a   tile size is specified (e.g. ptif:image.tif[128x128]).</li>
  <li> Malformed use of caption no longer consumes memory (reference   https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=10914).</li>
  <li> Don't run Ghostscript twice (reference   https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=10922).</li>
<dt>2008-03-21  6.4.0-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> SpreadImage() no longer introduces noise into the resulting image (reference                https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=10892).</li>
  <li> Properly handle min-is-white TIFF gray scale images.</li>
  <li> Use CompositeImage() instead of DrawAffineImage() if the affine expansion    factor is 1.0.</li>
<dt>2008-03-20  6.3.9-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Writing pyramid TIFF images no longer fails if a tile size is specified    (e.g. ptif:image.tif[128x128]).</li>
  <li> Reset page geometry when interactively cropping an image with the display    program.</li>
<dt>2008-03-18  6.3.9-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> With a single swap argument should swap the image with the *last* image.</li>
<dt>2008-03-16  6.3.9-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Make sure we don't sync a blob after it has been closed.</li>
<dt>2008-03-14  6.3.9-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Patch mpeg:encode delegate to properly produce an MPEG image sequence.</li>
<dt>2008-03-11  6.3.9-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support both GTK and CAIRO interfaces to RSVG (reference    ttp://imagemagick.org/discourse-server/viewtopic.html?f=2&amp;t=10802).</li>
  <li> Display colormapped PNG images with alpha properly (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=10819).</li>
<dt>2008-03-09  6.3.9-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Define inline to _magickcore_inline (to satisfy HP's aCC compiler).</li>
<dt>2008-03-08  6.3.9-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The rsvg delegate library depends on cairo-svg.</li>
  <li> Account for min-is-white 8-bit gray TIFF images.</li>
<dt>2008-02-29  6.3.9-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add support for the Postable Document Archive Format.</li>
  <li> Add support for Braille images.</li>
  <li> Add support for DDS images (contributed by Bianca van Schaik).</li>
  <li> Add GetImageAlphaChannel() method.</li>
  <li> PSD clipping paths are once again recognized.</li>
<dt>2008-02-24  6.3.9-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Return the actual image format for HTTP: or FTP: format (reference        https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=10715).</li>
  <li> Fix so image.quantize(true) returns error as expected (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=10735).</li>
<dt>2008-02-20  6.3.9-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed a small memory leak (8 bytes) in TransformImages().</li>
  <li> Render to Cairo surface rather than a GDK buffer when rendering SVG.</li>
  <li> Identify now reports both actual and reported image depths (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=10716).</li>
<dt>2008-02-17  6.3.8-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Speed up converting large PDF/PS images when only selecting a few pages    (e.g. pdffile.pdf[195-199]).</li>
  <li> Deprecate HSLTransform() and TransformHSL().</li>
<dt>2008-02-16  6.3.8-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix Magick++-config script to reflect the MagickWand / MagickCore    dependencies.</li>
<dt>2008-02-14  6.3.8-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Promote colormapped to truecolor images when enciphering.</li>
<dt>2008-02-08  6.3.8-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add EncipherImage() / DecipherImage() methods.</li>
  <li> Add -encipher / -decipher options to the command-line utilities.</li>
<dt>2008-02-03  6.3.8-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> New Unix/Linux refactoring (should be transparent since changes are    reflected in Magick-config and ImageMagick.pc pkg-config files):      /usr/local/include =&gt; /usr/local/include/ImageMagick      libMagick =&gt; libMagickCore      libWand =&gt; libMagickWand      Magick-config (deprecated) =&gt; MagickCore-config      Wand-config (deprecated) =&gt; MagickWand-config      Add Magick++-config, MagickCore.pc, MagickWand.pc, Magick++.pc</li>
<dt>2008-01-28  6.3.8-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Liquid rescale limits the final size to twice the original size (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=10536).</li>
  <li> Read EXIF data in TIFF images; writing is pending until we can figure out    how to use the libtiff delegate library to write EXIF data.</li>
<dt>2008-01-24  6.3.8-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add support for liquid rescaling (e.g. -liquid-rescale).</li>
  <li> Support a ^ meta character in an image geometry (.e.g    convert 640x480.png -resize 240^ returns a 320x240 result).</li>
<dt>2008-01-20  6.3.8-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix transient bug where "identify -format '%w;%[exif:Model]'" failed to    return camera model number.</li>
<dt>2008-01-14  6.3.8-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Monochome EPS3 images are no longer corrupt (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=10422).</li>
  <li> Eliminate memory corruption with broken PICT image (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=10447).</li>
  <li> Return a Grayscale colorspace for grayscale DPX image (previously    returned Log colorspace).</li>
  <li> Fix -g option for PCL6 support (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=10462).</li>
<dt>2008-01-08  6.3.7-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Only read ICON alpha mask if BPP is &lt;= 16.</li>
  <li> Add support for +opaque and +transparent (requested by Anthony).</li>
  <li> Throw an exception *before* we call wmf_api_destroy() (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=10420).</li>
<dt>2008-01-01  6.3.7-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Use explicit format specifier to render transparent Adobe Illustrator    files (i.e. convert ai:image.ai image.png).</li>
  <li> Set RSVG base URI (patch provided by tsdineen).</li>
<dt>2007-12-20  6.3.7-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> `Magick-config --version` returns Q16 instead of    Q@MAGICKCORE_QUANTUM_DEPTH@.</li>
  <li> Permit commas in numbers in certain locales (e.g. german +100,000).</li>
<dt>2007-12-13  6.3.7-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Added an exception reason to BlobToImage() in the event an image has no    magic number and neither the image magick or filename is set.</li>
  <li> Do not pass PhotoYCC data thru gamma-corrected lookup-table.</li>
  <li> Fix bug in GetEXIFProperty() (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=10300).</li>
<dt>2007-12-12  6.3.7-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Adding comments to your image is now possible with the display program.</li>
<dt>2007-12-09  6.3.7-3 Anthony &lt;anthony@griffith...&gt;</dt>
  <li> Adjusted -clut multiplyer for correct handling of    "-interpolation Integer" in color lookup.</li>
<dt>2007-12-01  6.3.7-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix 'insufficient image data' for DCM format (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=10227).</li>
  <li> Force a colormapped image if Palm bits-per-pixel &lt; 16.</li>
  <li> Fix multiple problems with Palm Data Base reader (patch from    1tms@gmx.d...).</li>
  <li> Do not exit after first image with the display --immutable option.</li>
  <li> Update autoconf/automake/libtool configuration files.</li>
  <li> Add support for resource limit units (e.g. -limit memory 16mb).</li>
  <li> Return original image if gaussian blur sigma is 0.0.</li>
  <li> Colormapped multi-image PDF's are no longer corrupt (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=10258).</li>
<dt>2007-11-27  6.3.7-2 Anthony &lt;anthony@griffith...&gt;</dt>
  <li> Finalisation of new resize filters, "Lagrange" self-windowing filter    now adjusts automatically with different support window size.</li>
  <li> Added "Bohman" (another 2'rd order cosine function) and "Bartlett"    (triangluar) resize windowing filters.</li>
  <li> Adjusted -clut to use a grayscale image (with no alpha) to select colors    from the Lookup Table image.</li>
<dt>2007-11-26  6.3.7-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Not all DCM tags were being saved as image attributes (patch provided by    jcupitt@gmail...).</li>
  <li> Normalize pixel values when quantum format is floating-point.</li>
  <li> Initialize the pixel sum to zero when averaging image pixels.</li>
<dt>2007-11-23  6.3.7-1 Anthony &lt;anthony@griffith...&gt;</dt>
  <li> Bug fix in height calculation for -layers merge operation</li>
<dt>2007-11-02  6.3.7-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add support for SCT grayscale images.</li>
  <li> Fixed transparency bug for the ICO image format.</li>
  <li> Fixed small memory leak in the caption and label coders.</li>
  <li> Fixed -threshold option to return all white for -threshold 0 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=10126).</li>
<dt>2007-11-06  6.3.6-10 Chris Madison  &lt;madisonblu@hotma...&gt;</dt>
  <li> Corrected CGM delegate command in config/delegate.xml.</li>
<dt>2007-11-05  6.3.6-9 Chris Madison  &lt;madisonblu@hotma...&gt;</dt>
  <li> Reclassified X server open error from fatal to non-fatal.</li>
  <li> New SetImageAlphaChannel() method to activate, deactivate, reset, or    set the image alpha channel.</li>
  <li> Patch for Scanalytics IPLab image format for non 8-bit images    (contributed by Sean Burke).</li>
<dt>2007-11-04  6.3.6-8 Chris Madison  &lt;madisonblu@hotma...&gt;</dt>
  <li> Remove ctrl-M characters on in various source files.</li>
  <li> Fix signature for Magick++ averageImages() regression tests for HDRI.</li>
  <li> Only invoke PerlMagick x11 regression test if DISPLAY variable is set.</li>
<dt>2007-11-03  6.3.6-7 Chris Madison  &lt;madisonblu@hotma...&gt;</dt>
  <li> MAGICK_ERX_SRCS should be MAGICK_EXR_SRCS in coders/Makefile.am.</li>
<dt>2007-11-02  6.3.6-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Upgrade to FPX version libfpx-1.2.0.14 (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=10041).</li>
  <li> Modules are searched first in the directories specified by the environment    variables, and then -- if the desired module is not found -- in the    compiled-in path.  (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=10039).</li>
<dt>2007-11-01  6.3.6-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Update FPX regression test reference images.</li>
  <li> Fixed Magick++ compile error for Sun Studio 10 compiler.</li>
<dt>2007-10-25  6.3.6-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The -equalize option now respects the -channel option.</li>
<dt>2007-10-23  6.3.6-4 Anthony &lt;anthony@griffith...&gt;</dt>
  <li> Additional Filters:  Welsh, Parzen, Lagrangian</li>
  <li> Addition of Cubic filter B,C controls</li>
  <li> 'verbose' filter plotting output using  -define "filter:verbose"</li>
<dt>2007-10-20  6.3.6-3 Anthony &lt;anthony@griffith...&gt;</dt>
  <li> Further expansion and handling of filters with expert options.    -filter selects from a table of standard filter settings, while    expert options allow complete selection of filter, windowing, support    and blurring options.  Includes automatic switch from Sinc to Bessel    for operators using 2-dimensional cylindrical filter, rather than    two pass 1-dimensional orthogonal filters.</li>
<dt>2007-10-14  6.3.6-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Obsolete -support (set filter blur factor)</li>
  <li> Expansion to add -set/define filter options</li>
<dt>2007-10-12  6.3.6-2 Anthony &lt;anthony@griffith...&gt;</dt>
  <li> Least Squares coordinate handling added for -distort methods Affine,    Perspective, Bilinear.   This allows for more than the minimal number of    coordinates to be used to 'fit' a distortion function to an image.    This addition will allow the use of image registration to generate    panorama overviews and better geographical coordinate correction.</li>
  <li> Consolidated the similar methods FlattenImage() and MosaicImage()    into a new layers function MergeImageLayers() method, adding 'flatten'    and 'mosaic' layer methods.</li>
  <li> Addition of another similar layers method 'merge' which 'unlocks' the    normal flatten/mosaic layer merger from the origin, The resulting image    will have a virtual canvas of minimal size with an offset. Also images    with negative offsets will not be clipped by the 'merge' form of the    command.  This was created for better layering of distorted images, such    as panorama overlays.</li>
  <li> Bug fix in handling transparency for EWA resampling.</li>
  <li> Access to Resize Filter Functions from resize.c (for resample.c)    with possible future filter sources... Acquire/Destory/Call ResizeFilter()</li>
  <li> All resize filters added to resampling, but filter handling is incomplete.</li>
<dt>2007-10-05  6.3.6-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The box filter no longer produces a black grid when resizing an image    under Mac OS X.</li>
  <li> Respect cropbox for PDF with a subimage specification (e.g.        image.pdf[1-3]).</li>
  <li> Detect proper PDF bounding box when offsets are negative.</li>
<dt>2007-10-02  6.3.6-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Speed up the Fx interpreter.</li>
  <li> Use ULL not ui64 for MinGW 64-bit constants.</li>
  <li> Call SyncCacheView() instead of SyncImagePixels() in WaveImage().</li>
  <li> Close all references to a pixel cache on disk before removing the temporary          file as required under Windows.</li>
<dt>2007-09-29  6.3.6-0 Anthony &lt;anthony@griffith...&gt;</dt>
  <li> Added Scaling 'derivatives' to -distort Arc, so image arcing is now    sharp and clear as you approach the center of the distort.</li>
  <li> Added  " -set option:distort:viewport 'geometry' " special option    that can be used to override the output image size and offset.</li>
  <li> Fixed experimental use of -filter and -support in Resampling (more later).</li>
  <li> Changed order for coordinate arguments in -distort (for later leastsq    multiple coordinate distortion function fitting)</li>
<dt>2007-09-22  6.3.6-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Check the API version and quantum depth before loading a coder module or          image filter (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=9780).</li>
  <li> Add exception to the image filter signature.</li>
  <li> Get the execution path under Mac OS X.</li>
  <li> TIFFTAG_STRIPBYTECOUNTS requires a uint32 pointer (magick/compress.c).</li>
  <li> Fixed memory leak in CloneString() (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=9763).</li>
  <li> Set S_IRUSR | S_IWUSR | S_IRGRP mode when writing a file in    CopyDelegateFile().</li>
<dt>2007-09-18  6.3.5-9 Anthony &lt;anthony@griffith...&gt;</dt>
  <li> Bug fix for +distort in Perspective, also effected PerspectiveProjection</li>
<dt>2007-09-17  6.3.5-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Replace all InterpolatePixelColor() calls to use the ResamplePixelColor()    method instead.</li>
  <li> Map the display program pan icon window for each oversized image.</li>
  <li> The ufraw delegate does not like quotes around the output filename.</li>
  <li> Adjust the sensitivity of a few PerlMagick tests to pass the validation on    a 64-bit FreeBSD system.</li>
  <li> The -level option now works properly for colormapped images.</li>
  <li> Allow Extrapolated blending of images using -blend       http://netpbm.sourceforge.net/doc/extendedopacity.html</li>
<dt>2007-09-12  6.3.5-9 Anthony &lt;anthony@griffith...&gt;</dt>
  <li> Major Addition,  Area Resampling Functions, (scaled interpolation)    for pixel lookup in Distortion functions.  This improves the look in    areas of minification enormously, especially in situations of infinite    tiling and horizon views.  All virtual pixel methods have been handled    to minimise computation time involved with area resampling.  To use the    new function distortions need to be able to determine scaling vectors    (distortion function derivatives) for correct working.  All    -distort methods, except Arc, uses scaled area resampling.</li>
  <li> Improvements to perspective distort method, to include the correct    differentiation between the 'ground' on which the image lies, and the    'sky', the color of which can be set using the -mattecolor setting    (as the distortion invalid pixel color). Background color is retains    for surrounding ground areas. The horizon is also correct anti-aliased    and transparent colors are also allowed, allowing you to add backdrops    of gradients and patterns.</li>
<dt>2007-09-04  6.3.5-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Read/Write Scanalytics IPLab image format (contributed by Sean Burke).</li>
  <li> Patched ReadBlobString() to fix a off-by-one vulnerability (alert from    iDefense).</li>
  <li> Patched ReadDIBImage() to fix a sign extension vulnerability (alert from    iDefense).</li>
  <li> Patched AllocateImageColormap() to fix an integer overflow vulnerability    (alert from iDefense).</li>
  <li> Patched ReadDCMImage() to fix an integer overflow vulnerability    (alert from iDefense).</li>
  <li> Patched ReadDIBImage() to fix an integer overflow vulnerability    (alert from iDefense).</li>
  <li> Patched ReadXBMImage() to fix an integer overflow vulnerability    (alert from iDefense).</li>
  <li> Patched ReadDCMImage() to fix an denial of service vulnerability    (alert from iDefense).</li>
  <li> Patched ReadXCFImage() to fix an denial of service vulnerability    (alert from iDefense).</li>
  <li> If image size changes, don't trust DPX orientation attributes.</li>
<dt>2007-09-04  6.3.5-9 Gozer404</dt>
  <li> Add French to the messaging system (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=9601).</li>
  <li> Add -fopenmp to MAGICK_PCFLAGS (reference   https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=9608).</li>
<dt>2007-08-14  6.3.5-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add -alpha {activate,deactivate,reset} option to activate, deactivate, or    reset the alpha channel.</li>
  <li> Render proper image labels for VID coder.</li>
  <li> Resolved a conflict for the -list option.  Use -list font to list          ImageMagick fonts and -list type to list image types.</li>
  <li> Catch any errors returned by pthread_mutex_init() (problem report    from devman@gmx-t...).</li>
  <li> TransformHSL() returns a proper hue component.</li>
  <li> Added -clut option and the ClutImage() method.</li>
  <li> Fix glyph memory leak in AnnotateImage (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=9523).</li>
  <li> Rename analyze.c to Analyze.c (reference    ttp://imagemagick.org/discourse-server/viewtopic.html?f=3&amp;t=9538).</li>
<dt>2007-08-07  6.3.5-6 Anthony  &lt;anthony@griffith...&gt;</dt>
  <li> Enabled use of +distort to auto resize destination image to 'bestfit'    the distorted input image.  This also enabled the use of virtual canvas    offsets in source and destination images for most distortion methods.</li>
<dt>2007-08-05  6.3.5-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Remove atexit in Magick++ code to avoid possible client crash (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=9270).</li>
<dt>2007-08-01  6.3.5-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Read/Write Scanalytics IPLab image format (contributed by Sean Burke).</li>
<dt>2007-07-30  6.3.5-5 Anthony  &lt;anthony@griffith...&gt;</dt>
  <li> Added -distort arc.  This update also allows the destination image    size and offset to be set according to the specific distortion being    applied.</li>
<dt>2007-07-29  6.3.5-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Set the -polaroid border color with the -bordercolor option.</li>
<dt>2007-07-25  6.3.5-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Remove extraneous break statement so -type option properly sets the    image_info-&gt;type member (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=9261).</li>
<dt>2007-07-21  6.3.5-4 Anthony  &lt;anthony@griffith...&gt;</dt>
  <li> Allow the use of optional arguments in -distort SRT</li>
<dt>2007-06-29  6.3.5-0 Anthony  &lt;anthony@griffith...&gt;</dt>
  <li> Initial addition of three Affine Distortions to -distort with the affine    mapping defined by the use of;  an Affine Matrix, Coordinates of Triangles,    or separate Scale-Rotate-Translate actions.</li>
<dt>2007-06-18  6.3.5-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix X11 font ascender.</li>
  <li> Add -distort option.</li>
  <li> Add random noise option (e.g. +noise random).</li>
  <li> Many internal algorithms are now threaded to take advantage of speed-ups    offered by the new dual and quad-core processor technologies.    and quad-core processor technology.</li>
  <li> Tiff images in the LAB colorspace are no longer identified as RGB    (reference https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=9015).</li>
  <li> Update image color_profile and iptc_profile members in the JPEG coder    (reference https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=9063);</li>
<dt>2007-06-13  6.3.4-10 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix composite mask bug (reference    ../Usage/bugs/composite_mask/).</li>
  <li> Speed up GetPixelOpacity() method (patch from seth@price...).</li>
  <li> Set icon image width/height before allocating the image colormap.</li>
  <li> Remove Photoshop string segment from JPEG profile (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=9006).</li>
<dt>2007-06-11  6.3.4-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Converting a jpg to pdf is creating an empty pdf object (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=8954).</li>
  <li> Respect the '-set type:hinting off option' (bug report from Richard    Jones).</li>
  <li> WritePSDImage vulnerable to exploitable heap corruption (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=8967).</li>
<dt>2007-06-09  6.3.4-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> SetMagickRegistry() post-increment the value 'id' (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=8944).</li>
<dt>2007-06-02  6.3.4-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Read/write 10 &amp; 12-bit packed DPX images.</li>
  <li> Reduce stack requirements for messaging system.</li>
  <li> Small memory leak for raw profiles in the PNG coder.</li>
<dt>2007-06-01  6.3.4-5 Glenn &lt;glennrp@image...&gt;</dt>
  <li> Added GIF, JPEG, and PNG interlace types.  For backward compatibility,    you can continue to use "-interlace Plane" to request these.</li>
<dt>2007-04-30  6.3.4-0 Anthony  &lt;anthony@griffith...&gt;</dt>
  <li> Fixed minor bug in the 'curl' for Polaroid of very non-square images.</li>
<dt>2007-06-01  6.3.4-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Set min-is-white for Group4-compressed PDF.</li>
  <li> Add PaintFloodfillImage() method.</li>
<dt>2007-05-30  6.3.4-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add MEPP metric to compare program.  Returns the mean error per pixel    along with the normalize mean and maximum error.</li>
  <li> Attach an XMP profile to an image (e.g.    convert input.tif -profile xmp:metadata.xmp output.tif).</li>
<dt>2007-05-22  6.3.4-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed mogrify conversions with -format and -path (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=1&amp;t=9127).</li>
<dt>2007-05-15  6.3.4-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> SVG style element was not always parsed properly.</li>
  <li> Do not dither when the number of unique colors is already less than the    maximum.</li>
  <li> Return normalized PAE metric (compare utility).</li>
<dt>2007-05-03  6.3.4-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add support for PFM images.</li>
  <li> Check for corrupt EXIF image profiles.</li>
  <li> Writing JPEG YCbCr TIFF images no longer faults (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=8896).</li>
<dt>2007-04-30  6.3.4-0 Anthony  &lt;anthony@griffith...&gt;</dt>
  <li> Fixed minor bug for crop missed images and 'background' GIF disposal.</li>
<dt>2007-04-28  6.3.4-0 Glenn  &lt;glennrp@image...&gt;</dt>
  <li> Added profile support to the GIF decoder/encoder.  They are stored    as GIF Application Extensions.  Known extensions include existing ICCRGB1    (for ICC profiles) and new MGKIPTC0 and MGK8BIM0 (for IPTC and 8BIM    profiles).  Unknown extensions found in GIF files are read as gifappNNN.</li>
<dt>2007-04-28  6.3.4-0 Anthony  &lt;anthony@griffith...&gt;</dt>
  <li> Invert Opacity change for user defined ordered dither threshold maps,    so that 'off' map is transparent, and 'on' is opaque.</li>
<dt>2007-04-24  6.3.4-0 Anthony  &lt;anthony@griffith...&gt;</dt>
  <li> Added an initial Coalesce Images, and a final +map local colortable    optimization to the -layers Optimize method, for a simple to use    GIF optimization operation.  (more work to come)</li>
<dt>2007-04-22  6.3.4-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Properly set the virtual canvas of a multi-frame GIF image sequence.</li>
  <li> Add AcquireOneVirtualPixel() method.</li>
  <li> Set Log colorspace properly when writing DPX images.</li>
  <li> Add -tile-offset option.</li>
  <li> Add support for the EXR image format.</li>
  <li> Improve support for DPX images.</li>
  <li> Add --enable-hdri option to the configure script.</li>
  <li> Add support for high dynamic-range images (HDRI).</li>
<dt>2007-04-20  6.3.3-9 Peter Hull  &lt;peterhull90@gmail...&gt;</dt>
  <li> Improve support for writing multiple image icons.</li>
<dt>2007-04-18  6.3.3-9 Anthony  &lt;anthony@griffith...&gt;</dt>
  <li> Separated -layers Optimize from -layers OptimizeFrame to allow    the former expansion into a general (multiple method) optimizer    of GIF animations</li>
  <li> merged -layers OptimizeTransparency into -layers Optimize method</li>
<dt>2007-04-12  6.3.3-8 Chris Madison  &lt;madisonblu@hotma...&gt;</dt>
  <li> Fix fault whem comparing a colormapped image with a non-colormapped one.</li>
  <li> Fix race condition when spawning delegate programs.</li>
  <li> TIFF JPEG now respects the -quality compression setting.</li>
  <li> The -fx option now properly groks the logical and operator.</li>
  <li> DPX tilestamp property should be timestamp.</li>
<dt>2007-04-13  6.3.3-7 Anthony  &lt;anthony@griffith...&gt;</dt>
  <li> Added GravityAdjustGeometry() to "geometry.c" to adjust geometry settings    according to given gravity and canvas area it applies to. This is for    code simplification throughout MagickCore.</li>
<dt>2007-04-09  6.3.3-6 Anthony  &lt;anthony@griffith...&gt;</dt>
  <li> Fixed CoalesceImages() to reset virtual canvas info on second and later    frames.   Other animation handlers may also need to reset virtual canvas    sizes to match the first frame, as well.</li>
<dt>2007-04-06  6.3.3-6 Anthony  &lt;anthony@griffith...&gt;</dt>
  <li> Addition of a CompositeImages() "layer.c" function to compose two    separate image lists together (with a virtual canvas offset) in three    different ways, depending on the size of the lists.</li>
  <li> A 'hack' for command line use (the two lists separates by the special    "NULL" image, which is junked) has also been added. Specifically...    "-layers Composite".</li>
<dt>2007-04-04  6.3.3-6 Anthony  &lt;anthony@griffith...&gt;</dt>
  <li> Add -layers RemoveDups method to remove duplicate sequential images in    coalesced animations.</li>
  <li> Add -layers RemoveZero method to remove images with a zero time delay    (with no action and a warning is all images have zero time delay)</li>
<dt>2007-04-01  6.3.3-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Permit generic profiles (e.g. -profile name:profile).</li>
<dt>2007-03-31  6.3.3-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed DCM and XWD buffer overflow vulnerabilities (reference    http://labs.idefense.com/intelligence/vulnerabilities/display.html?id=496).</li>
<dt>2007-03-28  6.3.3-4 Anthony  &lt;anthony@griffith...&gt;</dt>
  <li> Code duplication, simplification, and possible logic faults in "list.c".</li>
  <li> Added new Composition method, 'ChangeMask' to return pixels    that have changed or will cause a color change in overlays</li>
  <li> Used 'ChangeMask' to implement the "-layers" method    "OptimizeTransparency" to improve the compressibility of    frame optimized GIF animations. See IM Examples...      ../Usage/anim_opt/#opt_trans</li>
<dt>2007-03-19  6.3.3-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fixed two memory leaks in wand/magick-image.c and magick/stream.c and made    some minor changes to the GIF coder to make reading and pinging images    faster (patch provided by mstemm@cloud...).</li>
<dt>2007-03-19  6.3.3-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Patch RotateImage() to properly rotate CMYK images.</li>
  <li> Patch the XWD coder to prevent heap overflow vulnerability (vulnerability    report from idefense.com [IDEF2108] [IDEF2221] [IDEF2226]).</li>
<dt>2007-03-19  6.3.3-3 Anthony &lt;Anthony@griffith...&gt;</dt>
  <li> Fixed bug for GIF Optimization for images without a matte channel.</li>
  <li> Improved image handling for "-layers" method "Dispose".</li>
<dt>2007-03-11  6.3.3-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Improve configure script to better support Ghostscript under Mac OSX (    reference https://imagemagick.org/discourse-server//viewtopic.html?t=8557).</li>
  <li> Force a virtual pixel method of Tile for GetFillColor() and    GetStrokeColor().</li>
  <li> Add -reverse option to reverse the image list.</li>
<dt>2007-03-08  6.3.3-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Support versions 2.1.0 and above (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=8620).</li>
  <li> Support SVG rotation about a point (e.g. rotate(45 75 75)).</li>
  <li> Fix fault in DCM coder (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=8618).</li>
  <li> Check for a NULL parser in SVGReference in coders/svg.c (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=3&amp;t=8609).</li>
  <li> Add --disable-deprecated configure script option.</li>
  <li> Composite mask now works properly with transparent images.</li>
<dt>2007-03-04  Daniel Kobras &lt;kobras@debia...&gt;</dt>
  <li> Fixed additional data-driven faults (reference    http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=412945).</li>
  <li> Allocate proper scanline length to prevent a PCX overflow.</li>
<dt>2007-03-03  6.3.3-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Patch ImageMagick to permit referenced labels: -set option:mylabel    "color = %[pixel:u[0].p{12,26}]" label:'%[mylabel]'</li>
<dt>2007-02-24  6.3.3-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Escape indirect labels and comments (e.g. -label @file).</li>
  <li> Added -format %C to return the image compression type.</li>
  <li> Do not report channel statistics if -ping -format is specified with the    identify program.</li>
  <li> Add ResetImagePage() to reset the image page canvas and position.</li>
  <li> Upgrade to LCMS 1.16</li>
  <li> Configure Ghostscript for library or framework (reference    https://imagemagick.org/discourse-server//viewtopic.html?f=2&amp;t=8557).</li>
  <li> Add -taint option to convert/mogrify to mark image as ineligible for</li>
  <li> Fixed various data-driven faults (reference    http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=412945).  The corrupt    JP2 image faults but its failing in the JP2 jas_image_decode() method,    not MagickCore.  The corrupt XWD image faults but its failing in    the X11 XGetPixel() method, not MagickCore.</li>
<dt>2007-02-20  6.3.2-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Use -define quantum:polarity=min-is-black or -define    quantum:polarity=min-is-white to toggle the photometric interpretation for    a bilevel TIFF image.</li>
<dt>2007-02-17  6.3.2-8 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Don't interpret embedded format characters when reading comments/labels    from a file.</li>
  <li> Reading an image from stdin stopped working.</li>
<dt>2007-02-17  6.3.2-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> PerlMagick Label() no longer faults.</li>
  <li> Fix double-free when using the display/animate -geometry option.</li>
  <li> Add GetStringInfoLength() and GetStringInfoDatum(); deprecate    profile-&gt;length and profile-&gt;datum.</li>
<dt>2007-02-16  6.3.2-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix file leak in InjectImageBlob().</li>
  <li> Do not reinterpret image properties (e.g. -comment %%w).</li>
<dt>2007-02-14  6.3.2-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Don't over-allocate file buffers.</li>
<dt>2007-02-12  6.3.2-5 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Format strings in the POSIX locale.</li>
  <li> Make font metrics invariant to the strokewidth.</li>
<dt>2007-02-10  6.3.2-4 Albert Chin  &lt;china@thewr...&gt;</dt>
  <li> Patch to fix configure.ac typo.</li>
<dt>2007-02-08  6.3.2-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Permit ImageMagick to run as a service under Windows.</li>
  <li> Remove duplicate EXIF properties.</li>
  <li> Support strokewidth option for the caption format.</li>
  <li> Don't use Ghostscript for rendering fonts if Freetype is available.</li>
<dt>2007-02-02  6.3.2-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Added thumbnail format to write EXIF thumbnails.</li>
  <li> Move ReadByteImage() out of Min() macro of ReadPALMImage().</li>
  <li> Move EXIF properties to the EXIF namespace (e.g. exif:XResolution).</li>
<dt>2007-01-26  6.3.2-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Add interpolate and background options to PerlMagick's AffineTransform().</li>
  <li> Revert to Postscript rendering if Freetype delegate library is not    available.</li>
<dt>2007-01-20  6.3.2-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Accept Fx expressions from a file with -fx @filename.</li>
  <li> Enhance -fill and -stroke to accept image filenames as patterns.</li>
<dt>2007-01-16  6.3.2-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Save grayscale images as JPEG-compressed grayscale when writing in the TIFF    format.</li>
  <li> Update EXIF resolution fields when image density changes.</li>
<dt>2007-01-07  6.3.1-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> The -polaroid option now respects -gravity.</li>
  <li> Deprecate Get/SetImageAttribute().  Recommend Get/SetImageProperty()    instead.</li>
  <li> Any form of "-crop" with a percentage, implies an offset for the crop.</li>
  <li> Fixed percent option for -border (e.g. -border 10%x0%).</li>
  <li> Add -path option to the mogrify program to specify where to write the    images.</li>
<dt>2007-01-06  6.3.1-6 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
  <li> Fix the -auto-orient to work with an image sequence (reference    https://imagemagick.org/discourse-server//viewtopic.html?t=8100).</li>
  <li> Add -polaroid option to simulate a Polaroid picture.</li>
  <li> Eliminate double-free bug in GradientImage().</li>
  <li> Set AppendImage() matte channel only when image has matte attribute set.</li>
  <li> The -crop with negative offsets do not modify the virtual canvas.</li>
  <li> Caption: Given both the width and height ("-size") of the area to fill,    adjust the fonts "-pointsize" until the text just filles the whole space    without overflowing.</li>
  <li> Generate proper Windows icon image files (patch provided by    Robert M. Jansen).</li></li></dl></div>    </div>
  </main><!-- /.container -->
  <footer class="magick-footer">
    <div class="container">
    <p><a href="security-policy.html">Security</a> •
    <a href="news.html">News</a>
     
    <a href="changelog.html#"><img class="d-inline" id="wand" alt="And Now a Touch of Magick" width="16" height="16" src="../images/wand.ico"/></a>
     
    <a href="links.html">Related</a> •
     <a href="sitemap.html">Sitemap</a>
    <br/>
       
    <a href="support.html">Sponsor</a> •
    <a href="http://pgp.mit.edu/pks/lookup?op=get&amp;search=0x89AB63D48277377A">Public Key</a> •
    <a href="https://imagemagick.org/script/contact.php">Contact Us</a> 
    <br/>
    <a href="https://github.com/imagemagick/imagemagick6" target="_blank" rel="noopener" aria-label="GitHub"><svg xmlns="http://www.w3.org/2000/svg" class="navbar-nav-svg" viewBox="0 0 512 499.36" width="2%" height="2%" role="img" focusable="false"><title>GitHub</title><path fill="currentColor" fill-rule="evenodd" d="M256 0C114.64 0 0 114.61 0 256c0 113.09 73.34 209 175.08 242.9 12.8 2.35 17.47-5.56 17.47-12.34 0-6.08-.22-22.18-.35-43.54-71.2 15.49-86.2-34.34-86.2-34.34-11.64-29.57-28.42-37.45-28.42-37.45-23.27-15.84 1.73-15.55 1.73-15.55 25.69 1.81 39.21 26.38 39.21 26.38 22.84 39.12 59.92 27.82 74.5 21.27 2.33-16.54 8.94-27.82 16.25-34.22-56.84-6.43-116.6-28.43-116.6-126.49 0-27.95 10-50.8 26.35-68.69-2.63-6.48-11.42-32.5 2.51-67.75 0 0 21.49-6.88 70.4 26.24a242.65 242.65 0 0 1 128.18 0c48.87-33.13 70.33-26.24 70.33-26.24 14 35.25 5.18 61.27 2.55 67.75 16.41 17.9 26.31 40.75 26.31 68.69 0 98.35-59.85 120-116.88 126.32 9.19 7.9 17.38 23.53 17.38 47.41 0 34.22-.31 61.83-.31 70.23 0 6.85 4.61 14.81 17.6 12.31C438.72 464.97 512 369.08 512 256.02 512 114.62 397.37 0 256 0z"/></svg></a> •
        <a href="https://twitter.com/imagemagick" target="_blank" rel="noopener" aria-label="Twitter"><svg xmlns="http://www.w3.org/2000/svg" class="navbar-nav-svg" viewBox="0 0 512 416.32" width="2%" height="2%" role="img" focusable="false"><title>Twitter</title><path fill="currentColor" d="M160.83 416.32c193.2 0 298.92-160.22 298.92-298.92 0-4.51 0-9-.2-13.52A214 214 0 0 0 512 49.38a212.93 212.93 0 0 1-60.44 16.6 105.7 105.7 0 0 0 46.3-58.19 209 209 0 0 1-66.79 25.37 105.09 105.09 0 0 0-181.73 71.91 116.12 116.12 0 0 0 2.66 24c-87.28-4.3-164.73-46.3-216.56-109.82A105.48 105.48 0 0 0 68 159.6a106.27 106.27 0 0 1-47.53-13.11v1.43a105.28 105.28 0 0 0 84.21 103.06 105.67 105.67 0 0 1-47.33 1.84 105.06 105.06 0 0 0 98.14 72.94A210.72 210.72 0 0 1 25 370.84a202.17 202.17 0 0 1-25-1.43 298.85 298.85 0 0 0 160.83 46.92"/></svg></a>
    <br/>
    <small>© 1999-2021 ImageMagick Studio LLC</small></p>
    </div>
  </footer>

  <!-- Javascript assets -->
  <script>window.jQuery || document.write('&lt;script src="assets/jquery.slim.min.js"&gt;&lt;\/script&gt;')</script><script src="assets/bootstrap.bundle.min.js" crossorigin="anonymous">
</body>
</html>