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
|
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="Docutils 0.16: http://docutils.sourceforge.net/" />
<title>ChangeLog-2002.rst</title>
<link rel="stylesheet" href="docutils-articles.css" type="text/css" />
</head>
<body>
<div class="banner">
<img src="images/gm-107x76.png" alt="GraphicMagick logo" width="107" height="76" />
<span class="title">GraphicsMagick</span>
<form action="http://www.google.com/search">
<input type="hidden" name="domains" value="www.graphicsmagick.org" />
<input type="hidden" name="sitesearch" value="www.graphicsmagick.org" />
<span class="nowrap"><input type="text" name="q" size="25" maxlength="255" /> <input type="submit" name="sa" value="Search" /></span>
</form>
</div>
<div class="navmenu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="project.html">Project</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="README.html">Install</a></li>
<li><a href="Hg.html">Source</a></li>
<li><a href="NEWS.html">News</a> </li>
<li><a href="utilities.html">Utilities</a></li>
<li><a href="programming.html">Programming</a></li>
<li><a href="reference.html">Reference</a></li>
</ul>
</div>
<div class="document">
<p>2002-12-31 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>magick/command.c: Do not quantize CMYK (bug fix).</li>
<li>magick/render.c: Ensure that stroke is not drawn wider than
requested when antialiasing is disabled (bug fix).</li>
</ul>
</blockquote>
<p>2002-12-30 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>magick/image.c: For TransformRGBImage() and RGBTransformImage()
round values to int when creating tables rather than using scaling
to avoid rounding.</li>
</ul>
</blockquote>
<p>2002-12-30 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>coders/png.c: Fixed compile problems.</li>
<li>magick/image.c: SyncImage() performance optimizations.</li>
<li>TransformRGBImage() cleanup/enhancements. Some rounding issues
remain.</li>
<li>RGBTransformImage() cleanup/enhancements. Some rounding issues
remain.</li>
</ul>
</blockquote>
<p>2002-12-24 Glenn Randers-Pehrson <<a class="reference external" href="mailto:randeg%40alum.rpi.edu">randeg<span>@</span>alum<span>.</span>rpi<span>.</span>edu</a>></p>
<blockquote>
<ul class="simple">
<li>BUGFIX: Fixed bug, introduced on 12/18/02, in which a misplaced
"}" caused an assertion failure after reading any opaque JNG
image.</li>
<li>Added CloseBlob before returning a NULL JNG image.</li>
<li>Merged png.c with IM-5.5.3-1, including a seemingly pointless
rename of SaveImageText string to SaveImageTag.</li>
</ul>
</blockquote>
<p>2002-12-27 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>magick/image.c: Optimized gray x, y, z, tables creation in
RGBTransformImage().</li>
</ul>
</blockquote>
<p>2002-12-27 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>coders/pcd.c: IsPCDImage() fix offset to test header magic.</li>
<li>coders/pcd.c: Ensure that blob is closed on error.</li>
<li>coders (all): Pass image->colorspace to TransformRGBImage()</li>
<li>magick (animate.c, command.c, display.c, image.c, nt_feature.c)
Pass image->colorspace to TransformRGBImage().</li>
<li>magick/nt_feature.c: Ensure that image is RGB prior to transfer
to HBITMAP.</li>
</ul>
</blockquote>
<p>2002-12-26 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>magick/image.c: Re-worked TransformRGBImage() again so that it
is now smoking fast for Q:8 and Q:16. Changed lookup tables, and
all per-pixel transforms to use only integer arithmetic. A
pre-multiplication scheme is used which should actually improve
the quantization error over using double arithmetic. It is
actually possible to improve Q:32 performance a bit more but is it
worth the effort?</li>
</ul>
</blockquote>
<p>2002-12-24 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>magick/image.c: Implemented logging for TransformRGBImage() and
RGBTransformImage().</li>
</ul>
</blockquote>
<p>2002-12-24 Glenn Randers-Pehrson <<a class="reference external" href="mailto:randeg%40alum.rpi.edu">randeg<span>@</span>alum<span>.</span>rpi<span>.</span>edu</a>></p>
<blockquote>
<ul class="simple">
<li>The png codec would close the blob twice (second time raising an
assertion) if a libpng error was encountered.</li>
<li>Sometimes the PNG writer would receive an invalid bit depth from
CompositeImages(); this is now ignored.</li>
</ul>
</blockquote>
<p>2002-12-23 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>magick/image.c: Re-wrote TransformRGBImage() so that it does not
penalize a Q:8 build. The function should be faster now, but no
timings have been made to verify that.</li>
</ul>
</blockquote>
<p>2002-12-21 Glenn Randers-Pehrson <<a class="reference external" href="mailto:randeg%40alum.rpi.edu">randeg<span>@</span>alum<span>.</span>rpi<span>.</span>edu</a>></p>
<blockquote>
<ul class="simple">
<li>Elimimated unused transparent_pixel array in png.c.</li>
<li>Reverted to incrementing loops in bmp.c where the counter "i" is
used in the loop.</li>
</ul>
</blockquote>
<p>2002-12-20 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>magick/command.c: Update MogrifyImage() so that gm is 9X faster
when transforming a color image to grayscale.</li>
</ul>
</blockquote>
<p>2002-12-19 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Updated coders to use VerifyColormapIndex macro rather than slow
ConstrainColormapIndex() function.</li>
<li>magick/constitute.c: Trial use of VerifyColormapIndex in
PushImagePixels() IndexQuantum case.</li>
</ul>
</blockquote>
<p>2002-12-19 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>magick/color.c: Added VerifyColormapIndex macro to verify range
of color index without a function call.</li>
<li>coders/bmp.c: Updated to use VerifyColormapIndex macro.</li>
</ul>
</blockquote>
<p>2002-12-19 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>coders/bmp.c: Sped up RLE expansion and sped up byte-size
PseudoColor scanline conversion. Results in 50% speed-up when
running on SPARC.</li>
</ul>
</blockquote>
<p>2002-12-18 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>utilities: Removed legacy ImageMagick utilities which have been
rolled up into gm.c/command.c.</li>
</ul>
</blockquote>
<p>2002-12-18 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>PerlMagick/Magick.xs: Fixed FormatString() format problems
identified by the compiler.</li>
</ul>
</blockquote>
<p>2002-12-18 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>magick/image.h: Moved function prototypes for functions
implemented in code modules other than image.c to seperate header
files with names based on the implementation files.</li>
</ul>
</blockquote>
<p>2002-12-17 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>magick/enhance.c: Report appropriate message while leveling
image.</li>
</ul>
</blockquote>
<p>2002-12-18 Glenn Randers-Pehrson <<a class="reference external" href="mailto:randeg%40alum.rpi.edu">randeg<span>@</span>alum<span>.</span>rpi<span>.</span>edu</a>></p>
<blockquote>
<ul class="simple">
<li>Sync png.c and fx.c with IM-5.5.3. "gm convert -list format"
now includes zlib version info among the PNG info.</li>
<li>ConvolveImage() logs kernel info as a "Transform" debug event.</li>
<li>ReadJNGImage() now skips decoding JPEG subimage when "pinging"</li>
</ul>
</blockquote>
<p>2002-12-17 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>SVG element <cite>stroke-dasharray: 0</cite> no longer causes a
segmentation fault.</li>
</ul>
</blockquote>
<p>2002-12-17 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>CoaleseceImage() properly handles a dispose method of
BackgroundDispose.</li>
</ul>
</blockquote>
<p>2002-12-17 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>configure.ac: Updated to substitute for @GMDelegate@.</li>
<li>magick/effect.c: Changed AdaptiveThresholdImage offset to double
so that it works with QuantumDepth=32. Thanks to Glenn for
pointing out this problem.</li>
<li>magick/image.c: Adapted to AdaptiveThresholdImage API change.</li>
<li>magick/image.h: Annotated global constants and functions with
the name of the source file where they are implemented. This is
in preparation to break up image.h into multiple header files to
diminish unnecessary header dependencies.</li>
<li>coders/delegates.mgk.in: Updated to use @GMDelegate@ definition
and <cite>gm</cite> program rather than ImageMagick utility names.</li>
<li>PerlMagick/t/read.t: Converted gradient test (which was not
working at all) to compare with a reference image.</li>
<li>PerlMagick/t/jpeg/read.t: Re-wrote to compare with reference
image.</li>
<li>PerlMagick/t/jpeg/write.t: Re-wrote to compare with reference
image.</li>
<li>magick/image.c, magick/command.c: Moved MogrifyImage and
MogrifyImages from image.c to command.c in order to diminish
unnecessary inter-object coupling. Only functions in command.c
should use MogrifyImage or MogrifyImages. Some work remains to
accomplish that.</li>
</ul>
</blockquote>
<p>2002-12-16 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>coders/jpeg.c: Add missing break statements to fix colorspace
handling when image colorspace is CMYKColorspace or
YCbCrColorspace.</li>
<li>magick/decorate.c: Cast to double in calculation.</li>
<li>magick/enhance.c: Tweaks to equalization map calculation to
(hopefully) provide more consistent results.</li>
<li>magick/resize.c: Use type double rather than long for minify
weighting constants.</li>
</ul>
</blockquote>
<p>2002-12-13 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>coders/image.h: AdaptiveThresholdImage offset must be a signed
type.</li>
</ul>
</blockquote>
<p>2002-12-13 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Re-wrote PerlMagick filter.t tests so that they all compare
results with reference images rather than compare signatures.
This makes the tests easier to maintain and also makes it easier
to find errors in ImageMagick.</li>
</ul>
</blockquote>
<p>2002-12-13 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>magick/command.c: Warnings reduction</li>
<li>magick/list.c: Warnings reduction</li>
</ul>
</blockquote>
<p>2002-12-13 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Updated PerlMagick tests for Emboss, Equalize, Gamma, Normalize,
OilPaint, and Gradient so that they pass at Q:8 under Windows.</li>
<li>Updated PerlMagick tests for Emboss, and reading WMF, so that
they pass at Q:16 under Windows.</li>
<li>VisualMagickinstallerImageMagick-16.iss: Ported over from
ImageMagick-8.iss and verified.</li>
</ul>
</blockquote>
<p>2002-12-13 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Major smashing of ImageMagick to GraphicsMagick in .txt files
and .html files.</li>
<li>ImageMagick.html: Renamed to index.html.</li>
<li>www/ImageMagick.html: Renamed to www/GraphicsMagick.html</li>
</ul>
</blockquote>
<p>2002-12-12 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>magick/list.c: Added GetFirstImageInList() function.</li>
<li>magick/list.c: Added GetLastImageInList() function.</li>
<li>coders/pcd.c: Re-implemented image tile labeling to avoid use of
MogrifyImages().</li>
</ul>
</blockquote>
<p>2002-12-12 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Added <cite>commit</cite> shell script to CVS for those who chose to use
it.</li>
</ul>
</blockquote>
<p>2002-12-12 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>magick/magick.c: Ensure that operating system call error return
values are never used in resource limit calculation.</li>
</ul>
</blockquote>
<p>2002-12-12 William Radcliffe <<a class="reference external" href="mailto:billr%40corbis.com">billr<span>@</span>corbis<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>magick/magick.c: Fixed bugs in InitializeMagick, but I also
heavily commented the code so show what it seems to be doing. It
appears broken and needs testing on all platforms. Toward that
end, I added Log events so that we can see what it is doing.</li>
</ul>
</blockquote>
<p>2002-12-12 William Radcliffe <<a class="reference external" href="mailto:billr%40corbis.com">billr<span>@</span>corbis<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>utilities/gm.c: Fixes a crashing bug in gm.c caused by an
attempt to free a bad pointer. Added comments to the code that
explain why this happens so that future developers don't fall into
the same trap. * win2k/IMDisplay/IMDisplay.rc Modified some of
the string resources that define supported file formats that were
in error. One example was eps with had a *.eps in the string
instead of just .eps. This caused the document class to ASSERT
under the debug build.</li>
</ul>
</blockquote>
<p>2002-12-12 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Enable the module loading code for shared/DLL builds regardless
of whether the build is a "modules" build. This allows users to
add their own modules without requiring the use of a special
"modules" build.</li>
</ul>
</blockquote>
<p>2002-12-11 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>magick/image.h: Backed out arbitrary name change from
ChannelThresholdImage() to ThresholdImageChannel() that snuck in
from Cristy's image.h changes.</li>
</ul>
</blockquote>
<p>2002-12-11 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>coders/psd.c: Reference cloned image Blob (not sure why needed
but must be important).</li>
</ul>
</blockquote>
<p>2002-12-11 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>magick/enhance.c: Fixed LevelImage() to accept percent
black/white points (.i.e. 90%).</li>
<li>magick/enhance.c: Added LevelImageChannel().</li>
<li>magick/enhance.c: Improved Q:8 performance of color
transformations (e.g. for Gamma) which are based on a mapping
array.</li>
<li>coders/pcl.c: Fixed PCL coder to output proper color PCL
instructions.</li>
</ul>
</blockquote>
<p>2002-12-09 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>magick/image.c: Disabled SetImageInfo() code which uses
GetImageMagick() to test file magic via Is* methods so that we can
learn if eliminating use of these tests causes any ill effects.</li>
</ul>
</blockquote>
<p>2002-12-09 William Radcliffe <<a class="reference external" href="mailto:billr%40corbis.com">billr<span>@</span>corbis<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Moved xtrn.c from contrib area into coders area so that it can
be used from within the COM object. This is windows only code that
provides a back door way for the COM object to have data read or
written into VB arrays.</li>
</ul>
</blockquote>
<p>2002-12-08 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>magick/mac.c: Merged in fixes from ImageMagick version.</li>
<li>magick/magick.mgk: Merged in fixes from ImageMagick version.</li>
</ul>
</blockquote>
<p>2002-12-07 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>magick/image.c: Fix ChannelImage() so that it does not destroy
CMYK(A) channels by forcing RGB.</li>
</ul>
</blockquote>
<p>2002-12-06 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>magick/version.h: Changed to release 1.0.0.</li>
<li>magick/nt_base.c: Changed "ImageMagick" to "GraphicsMagick" so
registry lookups work for GraphicsMagick. Probably should be
configured via a magick_config.h define.</li>
<li>VisualMagick/installer/ImageMagick-8.iss:
Changed for GraphicsMagick.</li>
<li>utilities/conjure.c: Fix unterminated comment.</li>
</ul>
</blockquote>
<p>2002-12-06 William Radcliffe <<a class="reference external" href="mailto:billr%40corbis.com">billr<span>@</span>corbis<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>coders/jpeg.c: Modification of JPEG APP1 detection logic to name
EXIF and XMP profiles as EXIF and XMP instead of APP1. THe current
algorithm is brute force.</li>
<li>coders/meta.c: Modification deal with EXIF and XMP requests so
that you can ask for these blobs specifically if they exist.</li>
<li>coders/pdf.c,ps.c,ps2.c,ps3.c: Cristy bug fixes to eliminate
redundant file access checking and fix embedded JPEG support.</li>
<li>magick/random.c: Upgraded this to match current Cristy code. The
upgrade is to support more robust temporary filenames in another
change to this in utility.c however, I have not upgraded this code
yet because I don't understand it well enough.</li>
</ul>
</blockquote>
<p>2002-12-06 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Added build support for utilities/gm.c</li>
</ul>
</blockquote>
<p>2002-12-06 Glenn Randers-Pehrson <<a class="reference external" href="mailto:randeg%40alum.rpi.edu">randeg<span>@</span>alum<span>.</span>rpi<span>.</span>edu</a>></p>
<blockquote>
<ul class="simple">
<li>Relocated animate, conjure, display, and import functions into
command.c.</li>
<li>Added utilities/gm.c; gm is a driver for all of the utility
functions (animate, composite, conjure, convert, display,
identify, import, mongrify, and montage), which are now run with
"gm convert [convert_options]", "gm identify [identify_options]",
etc.</li>
</ul>
</blockquote>
<p>2002-12-05 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>coders/pdf.c: Remove bogus code for handling temporary file.</li>
</ul>
</blockquote>
<p>2002-12-04 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Updated to Autoconf 2.57.</li>
<li>Install libraries as -lGraphicsMagick and -lGraphicsMagick++
under Unix.</li>
<li>Install headers under ${PREFIX}/include/GraphicsMagick under
Unix.</li>
<li>Update *-config scripts to produce correct library and include
statements.</li>
<li>Update PerlMagick to use correct library and include statements.</li>
</ul>
</blockquote>
<p>2002-12-04 William Radcliffe <<a class="reference external" href="mailto:billr%40corbis.com">billr<span>@</span>corbis<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>contrib/win32/ATL7/ImageMagickObject/ImageMagickObject.cpp:
Fixed serious problem with not installing custom error and warning
handlers in the new version of the COM object.</li>
</ul>
</blockquote>
<p>2002-12-04 William Radcliffe <<a class="reference external" href="mailto:billr%40corbis.com">billr<span>@</span>corbis<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>magick/constitute.c: Pass exceptions on write up into the
exception structure passed into the WriteImages function.</li>
</ul>
</blockquote>
<p>2002-12-04 William Radcliffe <<a class="reference external" href="mailto:billr%40corbis.com">billr<span>@</span>corbis<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>magick/image.c: Added orphan image functionality changes that
are purported to fix bugs in PDF and PS coders.</li>
</ul>
</blockquote>
<p>2002-12-04 William Radcliffe <<a class="reference external" href="mailto:billr%40corbis.com">billr<span>@</span>corbis<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>magick/locale.c: Hard coded the locale as per Cristy fix, but
also added a comment and disabled useless code.</li>
</ul>
</blockquote>
<p>2002-12-04 William Radcliffe <<a class="reference external" href="mailto:billr%40corbis.com">billr<span>@</span>corbis<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>VisualMagick/bin/magic.mgk: Added JNG as per the copy in magick
subdirectory.</li>
</ul>
</blockquote>
<p>2002-12-04 William Radcliffe <<a class="reference external" href="mailto:billr%40corbis.com">billr<span>@</span>corbis<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>tiff/libtiff/tiff.h: Minor changes to make reading older
Photoshop TIFF files spew fewer warnings.</li>
</ul>
</blockquote>
<p>2002-12-04 Glenn Randers-Pehrson <<a class="reference external" href="mailto:randeg%40alum.rpi.edu">randeg<span>@</span>alum<span>.</span>rpi<span>.</span>edu</a>></p>
<blockquote>
<ul class="simple">
<li>Optimized ConvolveImage() by normalizing the kernel values
instead of normalizing the pixels.</li>
</ul>
</blockquote>
<p>2002-12-01 Glenn Randers-Pehrson <<a class="reference external" href="mailto:randeg%40alum.rpi.edu">randeg<span>@</span>alum<span>.</span>rpi<span>.</span>edu</a>></p>
<blockquote>
<ul class="simple">
<li>www/formats.html: Add JNG and fix libpng links.</li>
</ul>
</blockquote>
<p>2002-12-01 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>ChangeLog: Updated this ChangeLog to use the format prescribed
by the GNU coding standards.</li>
</ul>
</blockquote>
<p>2002-12-01 Glenn Randers-Pehrson <<a class="reference external" href="mailto:randeg%40alum.rpi.edu">randeg<span>@</span>alum<span>.</span>rpi<span>.</span>edu</a>></p>
<blockquote>
<ul class="simple">
<li>coders/png.c: Use PNG_SETJMP_NOT_THREAD_SAFE to indicate that
the C library's setjmp() API is not thread safe.</li>
<li>Fix use of image_info->blob.</li>
</ul>
</blockquote>
<p>2002-11-19 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Set up new CVS repository for GraphicsMagick based on current
ImageMagick 5.5.2 (pre-release) sources.</li>
</ul>
</blockquote>
<p>2002-11-15 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Flashpix library now uses C++ standard <new> and iostreams
rather than legacy new and iostreams.</li>
</ul>
</blockquote>
<p>2002-11-15 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>The blob methods were enhanced to use GZip or BZip API methods
to compress/uncompress images (previously the external programs
gunzip or bunzip2 were used).</li>
</ul>
</blockquote>
<p>2002-11-15 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Update to Autoconf 2.56</li>
</ul>
</blockquote>
<p>2002-11-14 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Update to Autoconf 2.55</li>
</ul>
</blockquote>
<p>2002-11-13 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Moved coder Register/Unregister method prototypes to static.h
since they are only needed by static.c.</li>
<li>Removed defunct HDF and libmpeg2 support since it was confusing
to users.</li>
</ul>
</blockquote>
<p>2002-11-11 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>coders/wmf.c: Set white background of embedded bitmaps to
transparent if the image background is a texture image, not-white,
or non-opaque. This improves the output when the WMF is rendered
on a non-default background.</li>
</ul>
</blockquote>
<p>2002-11-10 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Updated Windows CVS to FreeType 2.1.2.</li>
</ul>
</blockquote>
<p>2002-11-09 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Updated Windows CVS to Jasper 1.600.0.</li>
</ul>
</blockquote>
<p>2002-11-09 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Verify sanity of sysconf(_SC_PAGE_SIZE) and
sysconf(_SC_PHYS_PAGES) before using their values.</li>
</ul>
</blockquote>
<p>2002-11-05 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Modified IMdisplay so that larger images may be loaded
(primarily limited by Windows bitmap size limits).</li>
<li>Added some more file types (EPS, GIF, MIFF, SVG, & WMF) to
IMdisplay's file open list.</li>
<li>The list management methods were given more meaningful names.</li>
</ul>
</blockquote>
<p>2002-11-04 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Modified IMdisplay so that Magick++ Images are stored by value
rather than via pointer.</li>
<li>IMdisplay now uses minify(), magnify(), and zoom() methods where
appropriate.</li>
</ul>
</blockquote>
<p>2002-11-04 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Quantizing a DirectClass image with less than 256 unique colors
is no longer lossy.</li>
<li>Transparent TGA images had incorrect opacity values.</li>
</ul>
</blockquote>
<p>2002-10-31 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Added configure test for compiler __func__ support
(HAS___func__).</li>
<li>Added configure test for ftime().</li>
</ul>
</blockquote>
<p>2002-10-31 Leonard Rosenthol <<a class="reference external" href="mailto:leonardr%40lazerware.com">leonardr<span>@</span>lazerware<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>CMYK + alpha layered PSD files now correctly read!</li>
</ul>
</blockquote>
<p>2002-10-30 Leonard Rosenthol <<a class="reference external" href="mailto:leonardr%40lazerware.com">leonardr<span>@</span>lazerware<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>ReadPSDImage() is now fully instrumented with logging</li>
<li>Fixed long standing bug in ReadPSDImage, so it no longer returns
an extra layer</li>
</ul>
</blockquote>
<p>2002-10-29 Glenn Randers-Pehrson <<a class="reference external" href="mailto:randeg%40alum.rpi.edu">randeg<span>@</span>alum<span>.</span>rpi<span>.</span>edu</a>></p>
<blockquote>
<ul class="simple">
<li>Added three output formats: PNG24 (24-bit RGB PNG, opaque only),
PNG32 32-bit (RGBA PNG, semitransparency OK), and PNG8 (8-bit
indexed PNG, binary transparency only).</li>
</ul>
</blockquote>
<p>2002-10-27 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>coders/vid.c: Modified to be 10X faster for large images and to
take advantage of JPEG size optimizations.</li>
</ul>
</blockquote>
<p>2002-10-27 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>magick/xwindow.c: Optimize loading of TrueColor images with
gamma = 1.0.</li>
</ul>
</blockquote>
<p>2002-10-27 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>coders/wmf.c: Added logging facilities.</li>
</ul>
</blockquote>
<p>2002-10-27 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>display.c: removed unnecessary SignatureImage() calls which
dramatically slowed down loading images and quiting the program.</li>
<li>xwindow.c: optimized image size reduction for the case where the
target size is a small fraction of the original size. This makes
creation of display's panner and thumbnail images tremendously
faster, with no noticeable degradation of thumbnail quality.</li>
</ul>
</blockquote>
<p>2002-10-21 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Added Windows95 define to VisualMagick magick_config.h to
disable use of features not available under Windows '95</li>
</ul>
</blockquote>
<p>2002-10-21 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Added large file pixel cache support for Windows NT.</li>
</ul>
</blockquote>
<p>2002-10-21 Leonard Rosenthol <<a class="reference external" href="mailto:leonardr%40lazerware.com">leonardr<span>@</span>lazerware<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>PDF coder no longer uses ASCII85 encoding with TIFF for MUCH
smaller files!</li>
<li>Cleaned up a few other things in PDF coder.</li>
</ul>
</blockquote>
<p>2002-10-19 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Updated to Automake 1.7.1.</li>
</ul>
</blockquote>
<p>2002-10-18 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>PingBlob() improperly set the length of BlobInfo to zero.</li>
<li>Fixed Ping() memory leak in PerlMagick.</li>
<li>Fixed -map problem in convert/mogrify utilities.</li>
<li>Fixed -remote problem with display utility (returns correct
error status).</li>
</ul>
</blockquote>
<p>2002-10-16 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>-border with a single value now produces correct results
(e.g. -border 10).</li>
<li>Added -lat to convert/mogrify (local adaptive thresholding).</li>
</ul>
</blockquote>
<p>2002-10-15 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Set locale type LC_NUMERIC to "C".</li>
<li>Bug fix for PS2 encoder.</li>
<li>Added PS-Adobe preamble to PS3 encoder.</li>
</ul>
</blockquote>
<p>2002-10-14 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>ImageMagick 5.5.1 released.</li>
</ul>
</blockquote>
<p>2002-10-12 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Use ImageMagick release number to allow multiple ImageMagick
releases to co-exist without interference on the same machine.</li>
</ul>
</blockquote>
<p>2002-10-09 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Decided that DrawGet functions should return by value.</li>
</ul>
</blockquote>
<p>2002-10-06 Glenn Randers-Pehrson <<a class="reference external" href="mailto:randeg%40alum.rpi.edu">randeg<span>@</span>alum<span>.</span>rpi<span>.</span>edu</a>></p>
<blockquote>
<ul class="simple">
<li>Added detailed logging to BMP, PNG, and JPEG codecs, including
JPEG quality estimate.</li>
</ul>
</blockquote>
<p>2002-10-01 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Added draw.h "DrawGet" equivalents to most of the "DrawSet"
functions.</li>
<li>Added an array size argument to DrawSetDashPattern and got rid
of the zero-termination garbage.</li>
<li>Remove <cite>Set</cite> from the names of draw.h functions which update the
current affine transformation array (e.g. DrawSetRotate becomes
DrawRotate).</li>
</ul>
</blockquote>
<p>2002-09-29 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Updated to Automake 1.7.</li>
</ul>
</blockquote>
<p>2002-09-29 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Under Windows, a DllMain function which automatically
initializes ImageMagick (when ImageMagick is built using DLLs) may
be added by defining ProvideDllMain in magick_config.h</li>
</ul>
</blockquote>
<p>2002-09-28 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Added resource consumption methods, see magick/resource.c.</li>
</ul>
</blockquote>
<p>2002-09-27 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Replaced underscores in commandline options with hyphens. For
backward compatibility, underscores will continue to be
recognized.</li>
<li>Added -blue-primary, -green-primary, -red-primary, -white-point
options.</li>
</ul>
</blockquote>
<p>2002-09-27 Glenn Randers-Pehrson <<a class="reference external" href="mailto:randeg%40alum.rpi.edu">randeg<span>@</span>alum<span>.</span>rpi<span>.</span>edu</a>></p>
<blockquote>
<ul class="simple">
<li>Added BMP2 and BMP3 output formats.</li>
<li>Changed chromaticity primary.z from 1.0 to
1.0-(primary.x+primary.y) in the PNG and PCD codecs.</li>
</ul>
</blockquote>
<p>2002-09-21 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Added <cite>exception</cite> parameter to the ImageMagick progress monitor
API.</li>
<li>Added enumerated types for the dispose member of the Image
structure.</li>
<li>Added -version option to commandline utilities.</li>
</ul>
</blockquote>
<p>2002-09-21 Glenn Randers-Pehrson <<a class="reference external" href="mailto:randeg%40alum.rpi.edu">randeg<span>@</span>alum<span>.</span>rpi<span>.</span>edu</a>></p>
<blockquote>
<ul class="simple">
<li>The xcf decoder would sometimes create artifacts when reading
RLE-encoded grayscale images, due to the green and blue samples
not being defined.</li>
</ul>
</blockquote>
<p>2002-09-13 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Update to Autoconf 2.54.</li>
</ul>
</blockquote>
<p>2002-08-08 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Added logging capabilities to the CORE API. This facility is
useful for debugging. Added "events" parameter to the -debug
commandline option.</li>
<li>AcquireImagePixels() did not always return the same pixel values
for virtual pixels when the cache was stored on disk (very rare).</li>
<li>new -virtual-pixel command line option.</li>
<li>new PerlMagick virtual-pixel image attribute.</li>
</ul>
</blockquote>
<p>2002-08-07 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>ImageMagick 5.4.9 released.</li>
</ul>
</blockquote>
<p>2002-09-06 Leonard Rosenthol <<a class="reference external" href="mailto:leonardr%40lazerware.com">leonardr<span>@</span>lazerware<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Fixed some bugs in the Clipboard coder</li>
<li>Added new ImageToHBITMAP function to NTFeature.c/.h in core</li>
<li>Added support for Quantum==32 to IMDisplay</li>
</ul>
</blockquote>
<p>2002-08-30 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Fix formatting in the *.mgk files so that they are XML conformant</li>
</ul>
</blockquote>
<p>2002-08-30 Glenn Randers-Pehrson <<a class="reference external" href="mailto:randeg%40alum.rpi.edu">randeg<span>@</span>alum<span>.</span>rpi<span>.</span>edu</a>></p>
<blockquote>
<ul class="simple">
<li>QuantizeImage() did not always produce proper bilevel images.</li>
</ul>
</blockquote>
<p>2002-08-23 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Apply prefix/suffix transformations to ImageMagick program names
which are substituted into delegates.mgk. This fix was requested
by Glenn Randers-Pehrson.</li>
</ul>
</blockquote>
<p>2002-08-25 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Arcs are now rendered properly.</li>
<li>Use -authenticate to specifiy a password when viewing encrypted
PDF's.</li>
<li>-page was previouly being ignored.</li>
<li>Configure files are returned as blobs now (suggested by William
Radcliffe).</li>
</ul>
</blockquote>
<p>2002-08-23 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Added --disable-installed option to configure to support
building an ImageMagick which is not installed via hard-coded
paths. This is intended to be used for the ad-hoc binary
distributions built by ImageMagick Studio.</li>
<li>The UseInstalledImageMagick define is to be used by builds
formally installed under a prefix, or via the Windows registry.</li>
<li>Replaced GetMagickConfigurePath() with the three functions
FindConfigurationFile(), FindFontFile(), and FindModuleFile().</li>
<li>Re-implemented InitializeMagick() to try harder at finding the
uninstalled ImageMagick without the help of MAGICK_HOME. In the
future, it can try even harder.</li>
<li>Unix binaries packages (built with --disable-installed) should
now work using the same file layout as the distribution file.
There is no longer a need to put all files in the same directory.</li>
</ul>
</blockquote>
<p>2002-08-22 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Under Windows, define UseInstalledImageMagick to locate
components using the registry rather than scanning the filesystem.</li>
</ul>
</blockquote>
<p>2002-08-19 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Added DrawSetTextEncoding() function to specify text encoding
(e.g. "UTF-8").</li>
</ul>
</blockquote>
<p>2002-08-16 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Extend <cite>convert -list type</cite> output so it prints more details.</li>
<li>Fix draw.c problem when specifying font family names that
contain spaces.</li>
</ul>
</blockquote>
<p>2002-08-15 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Finished 32-Bit QuantumDepth support.</li>
<li>Subimage memory leak fixed (bug report by William Radcliffe).</li>
<li>Fixed subimage specification memory overrun.</li>
<li>Subimage specification did not work properly under Windows.</li>
</ul>
</blockquote>
<p>2002-08-15 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Fix problem with TEXT encoder. It was prepending the filename
to the text.</li>
</ul>
</blockquote>
<p>2002-08-15 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Render Postscript via Ghostscript DLL (gsdll32.dll) under
Windows if it can be loaded. Only ps.c currently uses this to
verify there are no problems.</li>
</ul>
</blockquote>
<p>2002-08-14 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Added 16-bit raw write support to PPM.</li>
</ul>
</blockquote>
<p>2002-08-13 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Re-implemented ReadTTFImage() using the draw.h APIs.</li>
</ul>
</blockquote>
<p>2002-08-09 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Fixed a libtool bug in order to allow passing -m64 to allow
building 64-bit ImageMagick using gcc 3.1 or later under SPARC
Solaris.</li>
</ul>
</blockquote>
<p>2002-08-04 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Added experimental 32-bit QuantumDepth pixel support.</li>
<li>Stream support was not thread-safe (bug report by William Radcliffe).</li>
<li>Push/PopImagePixels() now recognizes the proper buffer length
(previously it operated on one scanline at a time).</li>
<li>Deprecated Down/Upscale defines. Replaced them with
Scale*ToQuantum() and ScaleQuantumTo*() methods.</li>
</ul>
</blockquote>
<p>2002-08-02 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Changed configure argument --disable-16bit-pixel to
--with-quantum-depth in order to make its usage more
straightforward and generic. Build ImageMagick using an eight-bit
quantum via --with-quantum-depth=8.</li>
<li>Magick++ library builds as a DLL under Windows now.</li>
</ul>
</blockquote>
<p>2002-07-31 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Delegates/modules are restricted to hard-coded search paths (a
security feature suggested by Bob Friesenhahn).</li>
</ul>
</blockquote>
<p>2002-07-29 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Added SubstituteString to utility.c for performing substitions
on strings.</li>
<li>Added support for performing Ghostscript-related substitutions
while reading delegates.mgk and type.mgk files.</li>
</ul>
</blockquote>
<p>2002-07-27 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Added the Windows utility functions NTGhostscriptDLL(),
NTGhostscriptEXE(), and NTGhostscriptFonts(), to find the DLL,
executable, and font directory corresponding to the newest
Ghostscript install on the system.</li>
</ul>
</blockquote>
<p>2002-07-25 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Split nt.c into ntbase.c and ntfeature.c</li>
<li>Split nt.h into ntbase.h and ntfeature.h</li>
<li>Invoke NTIsMagickConflict() under Cygwin to ensure that drive
letters in file specifications are not confused with magick
strings.</li>
<li>Invoke NTGetTypeList() under Cygwin to read the list of Windows
fonts.</li>
</ul>
</blockquote>
<p>2002-07-21 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Created Windows "setup.exe" style installation package for
ImageMagick.</li>
<li>Include PerlMagick Perl extension for ActiveState ActivePerl as
checkmark install option in Windows installation package.</li>
<li>Include ImageMagickObject OLE Object for WSH and Visual Basic
(not IIS!!!) as checkmark install option in Windows installation
package.</li>
<li>Windows installation package establishes file extension
associations for ImageMagick.</li>
</ul>
</blockquote>
<p>2002-07-17 Glenn Randers-Pehrson <<a class="reference external" href="mailto:randeg%40alum.rpi.edu">randeg<span>@</span>alum<span>.</span>rpi<span>.</span>edu</a>></p>
<blockquote>
<ul class="simple">
<li>PPM files were being written in P4 or P5 format if all pixels
were gray. This is correct behavior for the PNM format but not
for the PPM format.</li>
</ul>
</blockquote>
<p>2002-07-13 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Load font information from Windows rather than depending on hand
edited type-windows.mgk file. Still not incorporated in Cygwin
build.</li>
</ul>
</blockquote>
<p>2002-07-04 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Typos corrected in perl.html (thanks to Ron Savage);</li>
<li>A color profile is now correctly referred to as ICM instead of
IPTC.</li>
<li>Added XPM color compliance to colors.mgk.</li>
<li>$image->Get(<cite>clip-mask</cite>) now returns the clipping image.</li>
</ul>
</blockquote>
<p>2002-07-03 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Added NTRegistryKeyLookup() to nt.c in order to look up
ImageMagick installation parameters from the Windows Registry.</li>
<li>Updated GetMagickConfigurePath() in magick.c to use installation
path data from the Windows Registry (if available).</li>
<li>Updated VisualMagick/ImageMagick.iss so that Windows Registry is
updated by install package.</li>
</ul>
</blockquote>
<p>2002-07-03 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Semaphore.c will compile now when pthreads are not present.</li>
<li>8-Bit Quantum PCD images now read correctly.</li>
<li>The antialias member of the ImageInfo structure was not being
cloned.</li>
</ul>
</blockquote>
<p>2002-07-01 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>ImageMagick 5.4.7 released.</li>
</ul>
</blockquote>
<p>2002-06-30 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>magick/nt.c (readdir): Make readdir re-entrant for each instance
of DIR. This should improve thread safety.</li>
<li>ltdl/ltdl.c : Support building as DLL under Win32.</li>
</ul>
</blockquote>
<p>2002-06-20 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Update to use Automake 1.6.2</li>
</ul>
</blockquote>
<p>2002-06-20 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Try harder when searching for Ghostscript fonts under Linux.</li>
</ul>
</blockquote>
<p>2002-06-19 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Identify PICT files via magic.mgk.</li>
</ul>
</blockquote>
<p>2002-06-18 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Added PerlMagick threading support (patch by Doug MacEachern).</li>
</ul>
</blockquote>
<p>2002-06-16 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>CLIPBOARD and EMF modules compile under MinGW and Cygwin.</li>
</ul>
</blockquote>
<p>2002-06-14 Glenn Randers-Pehrson <<a class="reference external" href="mailto:randeg%40alum.rpi.edu">randeg<span>@</span>alum<span>.</span>rpi<span>.</span>edu</a>></p>
<blockquote>
<ul class="simple">
<li>The wbmp writer would dump core if it received a DirectClass
image that contained only black and white pixels, because no
colormap exists.</li>
</ul>
</blockquote>
<p>2002-06-09 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Label color could not be set (bug report by Ron Savage).</li>
<li>Added CatchException() method to magick/error.c.</li>
</ul>
</blockquote>
<p>2002-06-06 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>ImageMagick, version 5.4.6-1 released.</li>
</ul>
</blockquote>
<p>2002-06-05 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Added -encoding option to command line utilities.</li>
</ul>
</blockquote>
<dl class="docutils">
<dt>2002-06-02 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></dt>
<dd><ul class="first last simple">
<li>ImageMagick, version 5.4.6 released.</li>
</ul>
</dd>
</dl>
<p>2002-05-29 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>ImageMagick may now be built (static build only) using the free
MinGW development package from <a class="reference external" href="http://www.mingw.org">http://www.mingw.org</a>. Leonard's
"clipboard" coder is included in the build.</li>
</ul>
</blockquote>
<p>2002-05-28 Leonard Rosenthol <<a class="reference external" href="mailto:leonardr%40lazerware.com">leonardr<span>@</span>lazerware<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Added new "clipboard" coder for reading/writing the system's
clipboard. Currently this is only implemented on Windows. For
example: <cite>convert logo: clipboard:</cite>, <cite>convert clipboard: foo.png</cite>.</li>
</ul>
</blockquote>
<p>2002-05-28 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Support autotrace via delegates.mgk. For example: <cite>convert
autotrace:file.png file.mvg</cite>.</li>
</ul>
</blockquote>
<p>2002-05-25 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Added progress monitor support to DrawImage().</li>
</ul>
</blockquote>
<p>2002-05-25 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Added progress monitor support to wmf.c.</li>
</ul>
</blockquote>
<p>2002-05-11 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Added EscapeText() to utility.c to support escaping text.</li>
</ul>
</blockquote>
<p>2002-05-11 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Text escaping for -draw and DrawAnnotation was not working
properly. Now it does. Backslash should act as a escape for the
the active quote character (', ", or }) as well as backslash. The
backslash should be discarded if it was used as an escape
character. In order to reliably pass a backslash, two successive
backslashes are required
(e.g. "\").</li>
</ul>
</blockquote>
<p>2002-05-11 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Modified Base64Encode() of utility.c so that it returns the
number of characters encoded. This avoids having to invoke
strlen() on possibly megabytes of data.</li>
</ul>
</blockquote>
<p>2002-05-11 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Fixed compilation error with Sun Workshop compiler (wmf.c).</li>
</ul>
</blockquote>
<p>2002-05-11 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Implement polypolygon support in WMF renderer. Requires libwmf
0.2.4 with draw_polypolygon IPA callback.</li>
</ul>
</blockquote>
<p>2002-05-10 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Added --enable-ccmalloc configure option.</li>
</ul>
</blockquote>
<p>2002-05-09 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>DCM patch provided by Shane Blackett.</li>
</ul>
</blockquote>
<p>2002-05-07 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Lock mutex when destroying a SemaphoreInfo structure (patch
provided by William Radcliffe).</li>
<li>Added mingw patches provided by Derry Bryson.</li>
</ul>
</blockquote>
<p>2002-05-05 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>ImageMagick, version 5.4.5-1 released.</li>
</ul>
</blockquote>
<p>2002-04-30 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Subimage specification did not work for TIFF (e.g. convert
<cite>image.tiff[1]</cite> image.png).</li>
</ul>
</blockquote>
<p>2002-04-30 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>ImageMagick, version 5.4.5 released.</li>
</ul>
</blockquote>
<p>2002-04-20 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Added magic string detection for the FPX format (patch provided by
Marc).</li>
</ul>
</blockquote>
<p>2002-04-18 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Added ExceptionInfo parameter to C API method,
QueryColorDatabase().</li>
</ul>
</blockquote>
<p>2002-04-17 Leonard Rosenthol <<a class="reference external" href="mailto:leonardr%40lazerware.com">leonardr<span>@</span>lazerware<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Fixed all known bugs with the IMDisplay utility for Windows.</li>
</ul>
</blockquote>
<p>2002-04-17 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>configure.ac (libtool_build_static_libs): Added
--enable-delegate-build option to suuport building ImageMagick
using delegate libraries in subdirectories of the ImageMagick
source directory.</li>
</ul>
</blockquote>
<p>2002-04-16 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>WMF now supplies bitmaps as inline images rather than via a mpri
reference.</li>
</ul>
</blockquote>
<p>2002-04-15 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Fixed DrawImage() to properly handle affine image transforms.</li>
<li>Added AffineTransformImage() to C API.</li>
<li>Added -transform option to convert/mogrify program.</li>
</ul>
</blockquote>
<p>2002-04-13 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>magick/magick.c (MagickToMime): New method to return the MIME
media type corresponding to a specified magick tag.</li>
</ul>
</blockquote>
<p>2002-04-12 Leonard Rosenthol <<a class="reference external" href="mailto:leonardr%40lazerware.com">leonardr<span>@</span>lazerware<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Fixed a bug in writing layer names in PSD files.</li>
</ul>
</blockquote>
<p>2002-04-10 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Fixed PingImage() memory leak (thanks to Timo Vogel).</li>
<li>Added encoding and unicode attributes to PerlMagick (patch
provided by Youki Kadobayashi).</li>
</ul>
</blockquote>
<p>2002-04-08 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Added reference counted blobs.</li>
<li>Added MagickFatalError() and SetFatalErrorHandler() to the C
API.</li>
<li>One color images caused memory corruption in QuantizeImage()
(thanks to Vincent Broz).</li>
<li>Memory leak in NormalizeImage() (thanks to Vincent Broz).</li>
</ul>
</blockquote>
<p>2002-04-06 Glenn Randers-Pehrson <<a class="reference external" href="mailto:randeg%40alum.rpi.edu">randeg<span>@</span>alum<span>.</span>rpi<span>.</span>edu</a>></p>
<blockquote>
<ul class="simple">
<li>Added CCIS-601 4:2:2 YUV format read-write support.</li>
<li>Added CCIS-601 4:2:2 MPEG-2 format write support.</li>
<li>Fixed a bug introduced in 5.4.0 that caused files with "M2V"
suffix to be written in MPEG-1 instead of MPEG-2 format.</li>
</ul>
</blockquote>
<p>2002-03-28 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>ImageToBlob() only returned the first frame of a multi-frame
image.</li>
</ul>
</blockquote>
<p>2002-04-05 Leonard Rosenthol <<a class="reference external" href="mailto:leonardr%40lazerware.com">leonardr<span>@</span>lazerware<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Fixed inversion of colors when converting CMYk JPEG to PDF</li>
</ul>
</blockquote>
<p>2002-04-01 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Fixed TTF preview function.</li>
</ul>
</blockquote>
<p>2002-03-28 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>DCM patches provided by Syam Gadde.</li>
<li>Multi-frame MPC image files caused a fault under Windows.</li>
<li>Copy entire comment from SVG (bug report from Bob Friesenhahn).</li>
<li>Enlarged scanline buffer for JPEG-compressed TIFF's (bug report
from Bob Friesenhahn).</li>
</ul>
</blockquote>
<p>2002-03-27 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>ImageMagick, version 5.4.4, released.</li>
</ul>
</blockquote>
<p>2002-03-26 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Added preliminary version of C API for vector drawing commands
(draw.h & draw.c). This interface is subject to change, and has
not even been tested yet so it should not be used to support
production code. The previous draw.h and draw.c have been renamed
to render.h and render.c respectively.</li>
</ul>
</blockquote>
<p>2002-03-25 Leonard Rosenthol <<a class="reference external" href="mailto:leonardr%40lazerware.com">leonardr<span>@</span>lazerware<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Fixed bugs related to layered CMYK PSD images.</li>
</ul>
</blockquote>
<p>2002-03-13 Leonard Rosenthol <<a class="reference external" href="mailto:leonardr%40lazerware.com">leonardr<span>@</span>lazerware<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>PSD coder now saves layer information (name, offset & opacity)
in hidden attributes.</li>
</ul>
</blockquote>
<p>2002-03-13 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Enhanced MPC to read/write image sequences.</li>
</ul>
</blockquote>
<p>2002-03-13 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>A number of formats (e.g. JPEG, PS) did not handle DirectClass
grayscale images properly.</li>
</ul>
</blockquote>
<p>2002-03-12 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Changed Clone*Info() API so structure members are set directly rather
than by the *clone=*info method (suggested by William Radcliffe).</li>
</ul>
</blockquote>
<p>2002-03-11 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Added AcquireString() to allocate read-only strings.</li>
</ul>
</blockquote>
<p>2002-03-10 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>coders/null.c (WriteNULLImage): Support writing "null:" image
type for use when profiling or testing ImageMagick.</li>
</ul>
</blockquote>
<p>2002-03-08 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Update to Autoconf 2.53 (new release)</li>
<li>Update to Automake 1.6 (new release)</li>
</ul>
</blockquote>
<p>2002-03-07 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Bob Friesenhahn's execution profile results in a number of
speed-ups with a faster LocaleCompare() algorithm and
self-adjusting lists.</li>
<li>Recognize additional DCM metadata (suggested by Barry Branham).</li>
<li>Fixed CopyOpacity composite operator for CMYKA images.</li>
</ul>
</blockquote>
<p>2002-03-06 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Inlined AlphaComposite() and ValidateColormapIndex().</li>
<li>Corrected compositing algorithm for the case where both source
and destination pixels had opacity values that were neither fully
transparent nor fully opaque.</li>
</ul>
</blockquote>
<p>2002-03-05 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Memory overrun when drawing large circles.</li>
</ul>
</blockquote>
<p>2002-03-04 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Removed bug introduced into Bob's Base64Encode() method.</li>
</ul>
</blockquote>
<p>2002-03-02 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Added Base64Decode() and Base64Encode() to utility.c and updated
ReadInlineImage() in magick/constitute.c to use Base64Decode().</li>
</ul>
</blockquote>
<p>2002-03-01 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>GetTypeInfoByFamily() null pointer fault (reported by Bob
Friesenhahn).</li>
<li>Added module version number (patch by Glenn Randers-Pehrson).</li>
</ul>
</blockquote>
<p>2002-03-01 Glenn Randers-Pehrson <<a class="reference external" href="mailto:randeg%40alum.rpi.edu">randeg<span>@</span>alum<span>.</span>rpi<span>.</span>edu</a>></p>
<blockquote>
<ul class="simple">
<li>image->matte was not being set when reading GRAY-ALPHA PNG
files.</li>
</ul>
</blockquote>
<p>2002-02-26 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Potential infinite loop in SyncBlob() (reported by Vladimir
Faiden).</li>
</ul>
</blockquote>
<p>2002-02-26 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Gravity not respected when drawing text with the convert
program.</li>
</ul>
</blockquote>
<p>2002-02-21 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>MPEG multi-part filenames require an embedded %d, not %lu.</li>
<li>WriteStream() did not write to fifo (thanks to William
Radcliffe).</li>
</ul>
</blockquote>
<p>2002-02-20 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Annotation did not support SJIS properly (patch provided by
Katsutoshi Shibuya).</li>
</ul>
</blockquote>
<p>2002-02-18 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Fixed memory overrun with -format option of the mogrify program.</li>
<li>Labels were not positioned correctly for VID format.</li>
</ul>
</blockquote>
<p>2002-02-16 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Replaced -copy/-replace options with +/-write in the convert
program.</li>
<li>Median filtering speed enhancement using skip list contributed
by Mike Edmonds.</li>
</ul>
</blockquote>
<p>2002-02-14 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Command line options now stay in effect for any image in command
line order until a another option is encountered or if -noop is
specified.</li>
</ul>
</blockquote>
<p>2002-02-07 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>SVG coders understands inline images.</li>
</ul>
</blockquote>
<p>2002-02-06 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>>, Glenn Randers-Pehrson</p>
<blockquote>
<ul class="simple">
<li>Made -scene consistent across all utilities. -snaps replaces
previous functionality of -scene for import program.</li>
</ul>
</blockquote>
<p>2002-01-30 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Correctly draw arc when arc end/start are not integer
(patch contributed by Giuliano Pochini).</li>
</ul>
</blockquote>
<p>2002-01-28 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>>, Glenn Randers-Pehrson</p>
<blockquote>
<ul class="simple">
<li>Geometry strings respect -gravity (e.g. -gravity SouthWest -crop
100x100).</li>
<li>Postive offsets in geometry strings move within the image canvas
with respect to the gravity (SouthWest gravity is similar to
Postscript page offsets).</li>
</ul>
</blockquote>
<p>2002-01-24 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Use -trim to trim the edges of an image.</li>
<li>Palm pixmap supported contributed by Christopher R. Hawks.</li>
<li>Added -mask to the convert/mogrify programs to add clips masks
to an image.</li>
</ul>
</blockquote>
<p>2002-01-21 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Fixed occasional small memory leak associated with exceptions.</li>
<li>Persistent cache is no longer updated (MPC coder).</li>
</ul>
</blockquote>
<p>2002-01-20 Glenn Randers-Pehrson <<a class="reference external" href="mailto:randeg%40alum.rpi.edu">randeg<span>@</span>alum<span>.</span>rpi<span>.</span>edu</a>></p>
<blockquote>
<ul class="simple">
<li>Fixed some bugs in the uncompressed PGM and PPM reader/writer
(pnm.c).</li>
</ul>
</blockquote>
<p>2002-01-14 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>configure.ac: Removed test for libwmf/font.h.</li>
</ul>
</blockquote>
<p>2002-01-13 Leonard Rosenthol <<a class="reference external" href="mailto:leonardr%40lazerware.com">leonardr<span>@</span>lazerware<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>More bug fixes and improvements in PSD writer.</li>
</ul>
</blockquote>
<p>2002-01-13 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>magick/magic.mgk: Added entries for detecting PFA and PFB
formats. Is this file used for anything anymore?</li>
<li>coders/modules.mgk: Add support for PFA fonts.</li>
<li>coders/ttf.c (RegisterTTFImage): Add support for PFA fonts.</li>
<li>magick/annotate.c (RenderType): Add support for PFA fonts.</li>
</ul>
</blockquote>
<p>2002-01-12 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Modified type.mgk so that it may include the additional files
type-windows.mgk, type-solaris.mgk, and type-ghostscript.mgk
depending on the operating system used, and the font files
available.</li>
</ul>
</blockquote>
<p>2002-01-11 Leonard Rosenthol <<a class="reference external" href="mailto:leonardr%40lazerware.com">leonardr<span>@</span>lazerware<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>PSD now supports writing layered images and IPTC data</li>
<li>Fixed some bugs in XCF</li>
</ul>
</blockquote>
<p>2002-01-11 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Added image list methods to the API.</li>
</ul>
</blockquote>
<p>2002-01-10 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>configure.ac : Renamed configure option --with-ttf-fontpath to
--with-fontpath since ImageMagick loads more than TrueType fonts.</li>
<li>ChangeLog : Renamed Changelog.txt to ChangeLog in order to
conform to GNU and open-source standards.</li>
</ul>
</blockquote>
<p>2002-01-06 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Makefile.am : $(DESTDIR) already contains trailing <cite>/</cite>.</li>
</ul>
</blockquote>
<p>2002-01-06 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>coders/wmf.c (wmf_magick_device_begin): Fix non-opaque fills.
Now properly fills with texture image.</li>
</ul>
</blockquote>
<p>2002-01-05 Glenn Randers-Pehrson <<a class="reference external" href="mailto:randeg%40alum.rpi.edu">randeg<span>@</span>alum<span>.</span>rpi<span>.</span>edu</a>></p>
<blockquote>
<ul class="simple">
<li>Fixed an out-of-bounds memset() and two other memory overruns
when decoding 1-bit AVI, BMP, and DIB images.</li>
</ul>
</blockquote>
<p>2002-01-04 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>Fix lcms header inclusion in transform.c.</li>
</ul>
</blockquote>
<p>2002-01-03 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p>
<blockquote>
<ul class="simple">
<li>coders/wmf.c (magick_brush): Fixed bug with setting fill color.</li>
</ul>
</blockquote>
<p>2002-01-03 Cristy <<a class="reference external" href="mailto:cristy%40mystic.es.dupont.com">cristy<span>@</span>mystic<span>.</span>es<span>.</span>dupont<span>.</span>com</a>></p>
<blockquote>
<ul class="simple">
<li>Postscript Level II is now DCS compliant.</li>
</ul>
</blockquote>
</div>
<hr class="docutils">
<div class="document">
<p><a href="Copyright.html">Copyright</a> © GraphicsMagick Group 2002 - 2022<!--SPONSOR_LOGO--></p>
</div>
</body>
</html>
|