-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
2500 lines (2002 loc) · 111 KB
/
ChangeLog
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
2008-03-21 6.4.0-0 Cristy <quetzlzacatenango@image...>
* SpreadImage() no longer introduces noise into the resulting image (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10892).
* Properly handle min-is-white TIFF gray scale images.
* Use CompositeImage() instead of DrawAffineImage() if the affine expansion
factor is 1.0.
2008-03-20 6.3.9-10 Cristy <quetzlzacatenango@image...>
* Writing pyramid TIFF images no longer fails if a tile size is specified
(e.g. ptif:image.tif[128x128]).
* Reset page geometry when interactively cropping an image with the display
program.
2008-03-18 6.3.9-9 Cristy <quetzlzacatenango@image...>
* With a single swap argument should swap the image with the *last* image.
2008-03-16 6.3.9-8 Cristy <quetzlzacatenango@image...>
* Make sure we don't sync a blob after it has been closed.
2008-03-14 6.3.9-7 Cristy <quetzlzacatenango@image...>
* Patch mpeg:encode delegate to properly produce an MPEG image sequence.
2008-03-11 6.3.9-6 Cristy <quetzlzacatenango@image...>
* Support both GTK and CAIRO interfaces to RSVG (reference
ttp://www.imagemagick.org/discourse-server/viewtopic.php?f=2&t=10802).
* Display colormapped PNG images with alpha properly (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10819).
2008-03-09 6.3.9-5 Cristy <quetzlzacatenango@image...>
* Define inline to _magickcore_inline (to satisfy HP's aCC compiler).
2008-03-08 6.3.9-4 Cristy <quetzlzacatenango@image...>
* The rsvg delegate library depends on cairo-svg.
* Account for min-is-white 8-bit gray TIFF images.
2008-02-29 6.3.9-2 Cristy <quetzlzacatenango@image...>
* Add support for the Postable Document Archive Format.
* Add support for Braille images.
* Add support for DDS images (contributed by Bianca van Schaik).
* Add GetImageAlphaChannel() method.
* PSD clipping paths are once again recognized.
2008-02-24 6.3.9-1 Cristy <quetzlzacatenango@image...>
* Return the actual image format for HTTP: or FTP: format (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=10715).
* Fix so image.quantize(true) returns error as expected (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=10735).
2008-02-20 6.3.9-0 Cristy <quetzlzacatenango@image...>
* Fixed a small memory leak (8 bytes) in TransformImages().
* Render to Cairo surface rather than a GDK buffer when rendering SVG.
* Identify now reports both actual and reported image depths (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=10716).
2008-02-17 6.3.8-10 Cristy <quetzlzacatenango@image...>
* Speed up converting large PDF/PS images when only selecting a few pages
(e.g. pdffile.pdf[195-199]).
* Deprecate HSLTransform() and TransformHSL().
2008-02-16 6.3.8-9 Cristy <quetzlzacatenango@image...>
* Fix Magick++-config script to reflect the MagickWand / MagickCore
dependencies.
2008-02-14 6.3.8-7 Cristy <quetzlzacatenango@image...>
* Promote colormapped to truecolor images when enciphering.
2008-02-08 6.3.8-6 Cristy <quetzlzacatenango@image...>
* Add EncipherImage() / DecipherImage() methods.
* Add -encipher / -decipher options to the command-line utilities.
2008-02-03 6.3.8-5 Cristy <quetzlzacatenango@image...>
* New Unix/Linux refactoring (should be transparent since changes are
reflected in Magick-config and ImageMagick.pc pkg-config files):
/usr/local/include => /usr/local/include/ImageMagick
libMagick => libMagickCore
libWand => libMagickWand
Magick-config (deprecated) => MagickCore-config
Wand-config (deprecated) => MagickWand-config
Add Magick++-config, MagickCore.pc, MagickWand.pc, Magick++.pc
2008-01-28 6.3.8-3 Cristy <quetzlzacatenango@image...>
* Liquid rescale limits the final size to twice the original size (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=10536).
* Read EXIF data in TIFF images; writing is pending until we can figure out
how to use the libtiff delegate library to write EXIF data.
2008-01-24 6.3.8-2 Cristy <quetzlzacatenango@image...>
* Add support for liquid rescaling (e.g. -liquid-rescale).
* Support a ^ meta character in an image geometry (.e.g
convert 640x480.png -resize 240^ returns a 320x240 result).
2008-01-20 6.3.8-1 Cristy <quetzlzacatenango@image...>
* Fix transient bug where "identify -format '%w;%[exif:Model]'" failed to
return camera model number.
2008-01-14 6.3.8-0 Cristy <quetzlzacatenango@image...>
* Monochome EPS3 images are no longer corrupt (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10422).
* Eliminate memory corruption with broken PICT image (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10447).
* Return a Grayscale colorspace for grayscale DPX image (previously
returned Log colorspace).
* Fix -g option for PCL6 support (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10462).
2008-01-08 6.3.7-10 Cristy <quetzlzacatenango@image...>
* Only read ICON alpha mask if BPP is <= 16.
* Add support for +opaque and +transparent (requested by Anthony).
* Throw an exception *before* we call wmf_api_destroy() (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10420).
2008-01-01 6.3.7-9 Cristy <quetzlzacatenango@image...>
* Use explicit format specifier to render transparent Adobe Illustrator
files (i.e. convert ai:image.ai image.png).
* Set RSVG base URI (patch provided by tsdineen).
2007-12-20 6.3.7-7 Cristy <quetzlzacatenango@image...>
* `Magick-config --version` returns Q16 instead of
Q@MAGICKCORE_QUANTUM_DEPTH@.
* Permit commas in numbers in certain locales (e.g. german +100,000).
2007-12-13 6.3.7-5 Cristy <quetzlzacatenango@image...>
* Added an exception reason to BlobToImage() in the event an image has no
magic number and neither the image magick or filename is set.
* Do not pass PhotoYCC data thru gamma-corrected lookup-table.
* Fix bug in GetEXIFProperty() (reference
https://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10300).
2007-12-12 6.3.7-4 Cristy <quetzlzacatenango@image...>
* Adding comments to your image is now possible with the display program.
2007-12-09 6.3.7-3 Anthony <anthony@griffith...>
* Adjusted -clut multiplyer for correct handling of
"-interpolation Integer" in color lookup.
2007-12-01 6.3.7-3 Cristy <quetzlzacatenango@image...>
* Fix 'insufficient image data' for DCM format (reference
https://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10227).
* Force a colormapped image if Palm bits-per-pixel < 16.
* Fix multiple problems with Palm Data Base reader (patch from
1tms@gmx.d...).
* Do not exit after first image with the display --immutable option.
* Update autoconf/automake/libtool configuration files.
* Add support for resource limit units (e.g. -limit memory 16mb).
* Return original image if gaussian blur sigma is 0.0.
* Colormapped multi-image PDF's are no longer corrupt (reference
https://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10258).
2007-11-27 6.3.7-2 Anthony <anthony@griffith...>
* Finalisation of new resize filters, "Lagrange" self-windowing filter
now adjusts automatically with different support window size.
* Added "Bohman" (another 2'rd order cosine function) and "Bartlett"
(triangluar) resize windowing filters.
* Adjusted -clut to use a grayscale image (with no alpha) to select colors
from the Lookup Table image.
2007-11-26 6.3.7-2 Cristy <quetzlzacatenango@image...>
* Not all DCM tags were being saved as image attributes (patch provided by
jcupitt@gmail...).
* Normalize pixel values when quantum format is floating-point.
* Initialize the pixel sum to zero when averaging image pixels.
2007-11-23 6.3.7-1 Anthony <anthony@griffith...>
* Bug fix in height calculation for -layers merge operation
2007-11-02 6.3.7-0 Cristy <quetzlzacatenango@image...>
* Add support for SCT grayscale images.
* Fixed transparancy bug for the ICO image format.
* Fixed small memory leak in the caption and label coders.
* Fixed -threshold option to return all white for -threshold 0 (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10126).
2007-11-06 6.3.6-10 Chris Madison <madisonblu@hotma...>
* Corrected CGM delegate command in config/delegate.xml.
2007-11-05 6.3.6-9 Chris Madison <madisonblu@hotma...>
* Reclassified X server open error from fatal to non-fatal.
* New SetImageAlphaChannel() method to activate, deactivate, reset, or
set the image alpha channel.
* Patch for Scanalytics IPLab image format for non 8-bit images
(contributed by Sean Burke).
2007-11-04 6.3.6-8 Chris Madison <madisonblu@hotma...>
* Remove ctrl-M characters on in various source files.
* Fix signature for Magick++ averageImages() regression tests for HDRI.
* Only invoke PerlMagick x11 regression test if DISPLAY variable is set.
2007-11-03 6.3.6-7 Chris Madison <madisonblu@hotma...>
* MAGICK_ERX_SRCS should be MAGICK_EXR_SRCS in coders/Makefile.am.
2007-11-02 6.3.6-6 Cristy <quetzlzacatenango@image...>
* Upgrade to FPX version libfpx-1.2.0.14 (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10041).
* Modules are searched first in the directories specified by the environment
variables, and then -- if the desired module is not found -- in the
compiled-in path. (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10039).
2007-11-01 6.3.6-5 Cristy <quetzlzacatenango@image...>
* Update FPX regression test reference images.
* Fixed Magick++ compile error for Sun Studio 10 compiler.
2007-10-25 6.3.6-4 Cristy <quetzlzacatenango@image...>
* The -equalize option now respects the -channel option.
2007-10-23 6.3.6-4 Anthony <anthony@griffith...>
* Additional Filters: Welsh, Parzen, Lagrangian
* Addition of Cubic filter B,C controls
* 'verbose' filter plotting output using -define "filter:verbose"
2007-10-20 6.3.6-3 Anthony <anthony@griffith...>
* Further expandsion and handling of filters with expert options.
-filter selects from a table of standard filter settings, while
expert options allow complete selection of filter, windowing, support
and blurring options. Includes automatic switch from Sinc to Bessel
for operators using 2 dimentional cylindrical filter, rather than
two pass 1 dimentional orthogonal filters.
2007-10-14 6.3.6-3 Cristy <quetzlzacatenango@image...>
* Obsolete -support (set filter blur factor)
* Expandsion to add -set/define filter options
2007-10-12 6.3.6-2 Anthony <anthony@griffith...>
* Least Squares coordinate handling added for -distort methods Affine,
Perspective, Bilinear. This allows for more than the minimal number of
coordinates to be used to 'fit' a distortion function to an image.
This addition will allow the use of image registration to generate
panarama overviews and better geographical coordinate correction.
* Cosolidated the simular methods FlattenImage() and MosaicImage()
into a new layers function MergeImageLayers() method, adding 'flatten'
and 'mosaic' layer methods.
* Addition of another simular layers method 'merge' which 'unlocks' the
normal flatten/mosaic layer merger from the origin, The resulting image
will have a virtual canvas of minimal size with an offset. Also images
with negative offsets will not be clipped by the 'merge' form of the
command. This was created for better layering of distorted images, such
as panarama overlays.
* Bug fix in handling transparency for EWA resampling.
* Access to Resize Filter Functions from resize.c (for resample.c)
with posible future filter sources... Acquire/Destory/Call ResizeFilter()
* All resize filters added to resampling, but filter handling is incomplete.
2007-10-05 6.3.6-2 Cristy <quetzlzacatenango@image...>
* The box filter no longer produces a black grid when resizing an image
under Mac OS X.
* Respect cropbox for PDF with a subimage specification (e.g.
image.pdf[1-3]).
* Detect proper PDF bounding box when offsets are negative.
2007-10-02 6.3.6-1 Cristy <quetzlzacatenango@image...>
* Speed up the Fx interpreter.
* Use ULL not ui64 for MinGW 64-bit constants.
* Call SyncCacheView() instead of SyncImagePixels() in WaveImage().
* Close all references to a pixel cache on disk before removing the temporary
file as required under Windows.
2007-09-29 6.3.6-0 Anthony <anthony@griffith...>
* Added Scaling 'derivitives' to -distort Arc, so image arcing is now
sharp and clear as you approach the center of the distort.
* Added " -set option:distort:viewport 'geometry' " special option
that can be used to override the output image size and offset.
* Fixed experimental use of -filter and -support in Resampling (more later).
* Changed order for coordinate arguments in -distort (for later leastsq
multiple coordinate distortion function fitting)
2007-09-22 6.3.6-0 Cristy <quetzlzacatenango@image...>
* Check the API version and quantum depth before loading a coder module or
image filter (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9780).
* Add exception to the image filter signature.
* Get the execution path under Mac OS X.
* TIFFTAG_STRIPBYTECOUNTS requires a uint32 pointer (magick/compress.c).
* Fixed memory leak in CloneString() (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9763).
* Set S_IRUSR | S_IWUSR | S_IRGRP mode when writing a file in
CopyDelegateFile().
2007-09-18 6.3.5-9 Anthony <anthony@griffith...>
* Bug fix for +distort in Perspective, also effected PerspectiveProjection
2007-09-17 6.3.5-10 Cristy <quetzlzacatenango@image...>
* Replace all InterpolatePixelColor() calls to use the ResamplePixelColor()
method instead.
* Map the display program pan icon window for each oversized image.
* The ufraw delegate does not like quotes around the output filename.
* Adjust the sensitivity of a few PerlMagick tests to pass the validation on
a 64-bit FreeBSD system.
* The -level option now works properly for colormapped images.
* Allow Extrapolated blending of images using -blend
http://netpbm.sourceforge.net/doc/extendedopacity.html
2007-09-12 6.3.5-9 Anthony <anthony@griffith...>
* Major Addition, Area Resampling Functions, (scaled interpolation)
for pixel lookup in Distortion functions. This improves the look in
areas of minification enormousally, especially in situations of infinite
tiling and horizon views. All virtual pixel methods have been handled
to minimise computation time involved with area resampling. To use the
new function distortions need to be able to determine scaling vectors
(distortion function derivitives) for correct working. All
-distort methods, except Arc, uses scaled area resampling.
* Improvements to perspective distort method, to include the correct
differentation between the 'ground' on which the image lies, and the
'sky', the color of which can be set using the -mattecolor setting
(as the distortion invalid pixel color). Background color is retains
for surrounding ground areas. The horizon is also correct anti-aliased
and transparent colors are also allowed, allowing you to add backdrops
of gradients and patterns.
2007-09-04 6.3.5-9 Cristy <quetzlzacatenango@image...>
* Read/Write Scanalytics IPLab image format (contributed by Sean Burke).
* Patched ReadBlobString() to fix a off-by-one vulnerability (alert from
iDefense).
* Patched ReadDIBImage() to fix a sign extension vulnerability (alert from
iDefense).
* Patched AllocateImageColormap() to fix an integer overflow vulnerability
(alert from iDefense).
* Patched ReadDCMImage() to fix an integer overflow vulnerability
(alert from iDefense).
* Patched ReadDIBImage() to fix an integer overflow vulnerability
(alert from iDefense).
* Patched ReadXBMImage() to fix an integer overflow vulnerability
(alert from iDefense).
* Patched ReadDCMImage() to fix an denial of service vulnerability
(alert from iDefense).
* Patched ReadXCFImage() to fix an denial of service vulnerability
(alert from iDefense).
* If image size changes, don't trust DPX orientation attributes.
2007-09-04 6.3.5-9 Gozer404
* Add French to the messaging system (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=2&t=9601).
* Add -fopenmp to MAGICK_PCFLAGS (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9608).
2007-08-14 6.3.5-7 Cristy <quetzlzacatenango@image...>
* Add -alpha {activate,deactivate,reset} option to activate, deactivate, or
reset the alpha channel.
* Render proper image labels for VID coder.
* Resolved a conflict for the -list option. Use -list font to list
ImageMagick fonts and -list type to list image types.
* Catch any errors returned by pthread_mutex_init() (problem report
from devman@gmx-t...).
* TransformHSL() returns a proper hue component.
* Added -clut option and the ClutImage() method.
* Fix glyph memory leak in AnnotateImage (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9523).
* Rename analyze.c to Analyze.c (reference
ttp://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9538).
2007-08-07 6.3.5-6 Anthony <anthony@griffith...>
* Enabled use of +distort to auto resize destination image to 'bestfit'
the distorted input image. This also enabled the use of virtual canvas
offsets in source and destination images for most distortion methods.
2007-08-05 6.3.5-6 Cristy <quetzlzacatenango@image...>
* Remove atexit in Magick++ code to avoid possible client crash (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9270).
2007-08-01 6.3.5-5 Cristy <quetzlzacatenango@image...>
* Read/Write Scanalytics IPLab image format (contributed by Sean Burke).
2007-07-30 6.3.5-5 Anthony <anthony@griffith...>
* Added -distort arc. This update also allows the destination image
size and offset to be set according to the specific distortion being
applied.
2007-07-29 6.3.5-5 Cristy <quetzlzacatenango@image...>
* Set the -poloroid border color with the -bordercolor option.
2007-07-25 6.3.5-4 Cristy <quetzlzacatenango@image...>
* Remove extranous break statement so -type option properly sets the
image_info->type member (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9261).
2007-07-21 6.3.5-4 Anthony <anthony@griffith...>
* Allow the use of optional arguments in -distort SRT
2007-06-29 6.3.5-0 Anthony <anthony@griffith...>
* Initial addition of three Affine Distortions to -distort with the affine
mapping defined by the use of; an Affine Matrix, Coordinates of Triangles,
or separate Scale-Rotate-Translate actions.
2007-06-18 6.3.5-0 Cristy <quetzlzacatenango@image...>
* Fix X11 font ascender.
* Add -distort option.
* Add random noise option (e.g. +noise random).
* Many internal algorithms are now threaded to take advantage of speed-ups
offered by the new dual and quad-core processor technologies.
and quad-core processor technology.
* Tiff images in the LAB colorspace are no longer identified as RGB
(reference http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9015).
* Update image color_profile and iptc_profile members in the JPEG coder
(reference http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9063);
2007-06-13 6.3.4-10 Cristy <quetzlzacatenango@image...>
* Fix composite mask bug (reference
http://www.imagemagick.org/Usage/bugs/composite_mask/).
* Speed up GetPixelOpacity() method (patch from seth@price...).
* Set icon image width/height before allocating the image colormap.
* Remove Photoshop string segment from JPEG profile (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9006).
2007-06-11 6.3.4-9 Cristy <quetzlzacatenango@image...>
* Converting a jpg to pdf is creating an empty pdf object (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=8954).
* Respect the '-set type:hinting off option' (bug report from Richard
Jones).
* WritePSDImage vulnerable to exploitable heap corruption (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=8967).
2007-06-09 6.3.4-8 Cristy <quetzlzacatenango@image...>
* SetMagickRegistry() post-increment the value 'id' (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=8944).
2007-06-02 6.3.4-6 Cristy <quetzlzacatenango@image...>
* Read/write 10 & 12-bit packed DPX images.
* Reduce stack requirements for messaging system.
* Small memory leak for raw profiles in the PNG coder.
2007-06-01 6.3.4-5 Glenn <glennrp@image...>
* Added GIF, JPEG, and PNG interlace types. For backward compatibility,
you can continue to use "-interlace Plane" to request these.
2007-04-30 6.3.4-0 Anthony <anthony@griffith...>
* Fixed minor bug in the 'curl' for Polaroid of very non-square images.
2007-06-01 6.3.4-5 Cristy <quetzlzacatenango@image...>
* Set min-is-white for Group4-compressed PDF.
* Add PaintFloodfillImage() method.
2007-05-30 6.3.4-4 Cristy <quetzlzacatenango@image...>
* Add MEPP metric to compare program. Returns the mean error per pixel
along with the normalize mean and maximum error.
* Attach an XMP profile to an image (e.g.
convert input.tif -profile xmp:metadata.xmp output.tif).
2007-05-22 6.3.4-3 Cristy <quetzlzacatenango@image...>
* Fixed mogrify conversions with -format and -path (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=9127).
2007-05-15 6.3.4-2 Cristy <quetzlzacatenango@image...>
* SVG style element was not always parsed properly.
* Do not dither when the number of unique colors is already less than the
maximum.
* Return normalized PAE metric (compare utility).
2007-05-03 6.3.4-1 Cristy <quetzlzacatenango@image...>
* Add support for PFM images.
* Check for corrupt EXIF image profiles.
* Writing JPEG YCbCr TIFF images no longer faults (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=8896).
2007-04-30 6.3.4-0 Anthony <anthony@griffith...>
* Fixed minor bug for crop missed images and 'background' GIF disposal.
2007-04-28 6.3.4-0 Glenn <glennrp@image...>
* Added profile support to the GIF decoder/encoder. They are stored
as GIF Application Extensions. Known extensions include existing ICCRGB1
(for ICC profiles) and new MGKIPTC0 and MGK8BIM0 (for IPTC and 8BIM
profiles). Unknown extensions found in GIF files are read as gifappNNN.
2007-04-28 6.3.4-0 Anthony <anthony@griffith...>
* Invert Opacity change for user defined ordered dither threshold maps,
so that 'off' map is transparent, and 'on' is opaque.
2007-04-24 6.3.4-0 Anthony <anthony@griffith...>
* Added an initial Coalesce Images, and a final +map local colortable
optimization to the -layers Optimize method, for a simple to use
GIF optimization operation. (more work to come)
2007-04-22 6.3.4-0 Cristy <quetzlzacatenango@image...>
* Properly set the virtual canvas of a multi-frame GIF image sequence.
* Add AcquireOneVirtualPixel() method.
* Set Log colorspace properly when writing DPX images.
* Add -tile-offset option.
* Add support for the EXR image format.
* Improve support for DPX images.
* Add --enable-hdri option to the configure script.
* Add support for high dynamic-range images (HDRI).
2007-04-20 6.3.3-9 Peter Hull <peterhull90@gmail...>
* Improve support for writing multiple image icons.
2007-04-18 6.3.3-9 Anthony <anthony@griffith...>
* Separated -layers Optimize from -layers OptimizeFrame to allow
the former expansion into a general (multiple method) optimizer
of GIF animations
* merged -layers OptimizeTransparency into -layers Optimize method
2007-04-12 6.3.3-8 Chris Madison <madisonblu@hotma...>
* Fix fault whem comparing a colormapped image with a non-colormapped one.
* Fix race condition when spawning delegate programs.
* TIFF JPEG now respects the -quality comptression setting.
* The -fx option now properly groks the logical and operator.
* DPX tilestamp property should be timestamp.
2007-04-13 6.3.3-7 Anthony <anthony@griffith...>
* Added GravityAdjustGeometry() to "geometry.c" to adjust geometry settings
according to given gravity and canvas area it applies to. This is for
code simplification thoughout MagickCore.
2007-04-09 6.3.3-6 Anthony <anthony@griffith...>
* Fixed CoalesceImages() to reset virtual canvas info on second and later
frames. Other animation handlers may also need to reset virtual canvas
sizes to match the first frame, as well.
2007-04-06 6.3.3-6 Anthony <anthony@griffith...>
* Addition of a CompositeImages() "layer.c" function to compose two
separate image lists together (with a virtual canvas offset) in three
different ways, depending on the size of the lists.
* A 'hack' for command line use (the two lists separates by the special
"NULL" image, which is junked) has also been added. Specifically...
"-layers Composite".
2007-04-04 6.3.3-6 Anthony <anthony@griffith...>
* Add -layers RemoveDups method to remove duplicate sequential images in
coalesced animations.
* Add -layers RemoveZero method to remove images with a zero time delay
(with no action and a warning is all images have zero time delay)
2007-04-01 6.3.3-6 Cristy <quetzlzacatenango@image...>
* Permit generic profiles (e.g. -profile name:profile).
2007-03-31 6.3.3-5 Cristy <quetzlzacatenango@image...>
* Fixed DCM and XWD buffer overflow vulnerabilities (reference
http://labs.idefense.com/intelligence/vulnerabilities/display.php?id=496).
2007-03-28 6.3.3-4 Anthony <anthony@griffith...>
* Code duplication, simplification, and possible logic faults in "list.c".
* Added new Composition method, 'ChangeMask' to return pixels
that have changed or will cause a color change in overlays
* Used 'ChangeMask' to implement the "-layers" method
"OptimizeTransparency" to improve the compressibility of
frame optimized GIF animations. See IM Examples...
http://www.imagemagick.org/Usage/anim_opt/#opt_trans
2007-03-19 6.3.3-4 Cristy <quetzlzacatenango@image...>
* Fixed two memory leaks in wand/magick-image.c and magick/stream.c and made
some minor changes to the GIF coder to make reading and pinging images
faster (patch provided by mstemm@cloud...).
2007-03-19 6.3.3-3 Cristy <quetzlzacatenango@image...>
* Patch RotateImage() to properly rotate CMYK images.
* Patch the XWD coder to prevent heap overflow vulnerability (vulnerability
report from idefense.com [IDEF2108] [IDEF2221] [IDEF2226]).
2007-03-19 6.3.3-3 Anthony <Anthony@griffith...>
* Fixed bug for GIF Optimization for images without a matte channel.
* Improved image handling for "-layers" method "Dispose".
2007-03-11 6.3.3-2 Cristy <quetzlzacatenango@image...>
* Improve configure script to better support Ghostscript under Mac OSX (
reference http://www.imagemagick.org/discourse-server/viewtopic.php?t=8557).
* Force a virtual pixel method of Tile for GetFillColor() and
GetStrokeColor().
* Add -reverse option to reverse the image list.
2007-03-08 6.3.3-1 Cristy <quetzlzacatenango@image...>
* Support versions 2.1.0 and above (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=2&t=8620).
* Support SVG rotation about a point (e.g. rotate(45 75 75)).
* Fix fault in DCM coder (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=8618).
* Check for a NULL parser in SVGReference in coders/svg.c (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=8609).
* Add --disable-deprecated configure script option.
* Composite mask now works properly with transparent images.
2007-03-04 Daniel Kobras <kobras@debia...>
* Fixed additional data-driven faults (reference
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=412945).
* Allocate proper scanline length to prevent a PCX overflow.
2007-03-03 6.3.3-1 Cristy <quetzlzacatenango@image...>
* Patch ImageMagick to permit referenced labels: -set option:mylabel
"color = %[pixel:u[0].p{12,26}]" label:'%[mylabel]'
2007-02-24 6.3.3-0 Cristy <quetzlzacatenango@image...>
* Escape indirect labels and comments (e.g. -label @file).
* Added -format %C to return the image compression type.
* Do not report channel statistics if -ping -format is specified with the
identify program.
* Add ResetImagePage() to reset the image page canvas and position.
* Upgrade to LCMS 1.16
* Configure Ghostscript for library or framework (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?f=2&t=8557).
* Add -taint option to convert/mogrify to mark image as ineligible for
* Fixed various data-driven faults (reference
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=412945). The corrupt
JP2 image faults but its failing in the JP2 jas_image_decode() method,
not MagickCore. The corrupt XWD image faults but its failing in
the X11 XGetPixel() method, not MagickCore.
2007-02-20 6.3.2-8 Cristy <quetzlzacatenango@image...>
* Use -define quantum:polarity=min-is-black or -define
quantum:polarity=min-is-white to toggle the photometric interpretation for
a bilevel TIFF image.
2007-02-17 6.3.2-8 Cristy <quetzlzacatenango@image...>
* Don't interpret embedded format characters when reading comments/labels
from a file.
* Reading an image from stdin stopped working.
2007-02-17 6.3.2-7 Cristy <quetzlzacatenango@image...>
* PerlMagick Label() no longer faults.
* Fix double-free when using the display/animate -geometry option.
* Add GetStringInfoLength() and GetStringInfoDatum(); deprecate
profile->length and profile->datum.
2007-02-16 6.3.2-6 Cristy <quetzlzacatenango@image...>
* Fix file leak in InjectImageBlob().
* Do not reinterpret image properties (e.g. -comment %%w).
2007-02-14 6.3.2-5 Cristy <quetzlzacatenango@image...>
* Don't over-allocate file buffers.
2007-02-12 6.3.2-5 Cristy <quetzlzacatenango@image...>
* Format strings in the POSIX locale.
* Make font metrics invarient to the strokewidth.
2007-02-10 6.3.2-4 Albert Chin <china@thewr...>
* Patch to fix configure.ac typo.
2007-02-08 6.3.2-4 Cristy <quetzlzacatenango@image...>
* Permit ImageMagick to run as a service under Windows.
* Remove duplicate EXIF properties.
* Support strokewidth option for the caption format.
* Don't use Ghostscript for rendering fonts if Freetype is available.
2007-02-02 6.3.2-3 Cristy <quetzlzacatenango@image...>
* Added thumbnail format to write EXIF thumbnails.
* Move ReadByteImage() out of Min() macro of ReadPALMImage().
* Move EXIF properties to the EXIF namespace (e.g. exif:XResolution).
2007-01-26 6.3.2-2 Cristy <quetzlzacatenango@image...>
* Add interpolate and background options to PerlMagick's AffineTransform().
* Revert to Postscript rendering if Freetype delegate library is not
available.
2007-01-20 6.3.2-1 Cristy <quetzlzacatenango@image...>
* Accept Fx expressions from a file with -fx @filename.
* Enhance -fill and -stroke to accept image filenames as patterns.
2007-01-16 6.3.2-0 Cristy <quetzlzacatenango@image...>
* Save grayscale images as JPEG-compressed grayscale when writing in the TIFF
format.
* Update EXIF resolution fields when image density changes.
2007-01-07 6.3.1-7 Cristy <quetzlzacatenango@image...>
* The -polaroid option now respects -gravity.
* Deprecate Get/SetImageAttribute(). Recommend Get/SetImageProperty()
instead.
* Any form of "-crop" with a percentage, implies an offset for the crop.
* Fixed percent option for -border (e.g. -border 10%x0%).
* Add -path option to the mogrify program to specify where to write the
images.
2007-01-06 6.3.1-6 Cristy <quetzlzacatenango@image...>
* Fix the -auto-orient to work with an image sequence (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?t=8100).
* Add -polaroid option to simulate a Polaroid picture.
* Eliminate double-free bug in GradientImage().
* Set AppendImage() matte channel only when image has matte attribute set.
* The -crop with negative offsets do not modify the virtual canvas.
* Caption: Given both the width and height ("-size") of the area to fill,
adjust the fonts "-pointsize" until the text just filles the whole space
without overflowing.
* Generate proper Windows icon image files (patch provided by
Robert M. Jansen).
2006-12-31 6.3.1-5 Cristy <quetzlzacatenango@image...>
* Add text parameter to PerlMagick Draw() method.
2006-12-26 6.3.1-5 Masayuki Koshiji <koshiji@users...>
* Fix 16-bit raw image write with interlace option (line, plane, and
partition).
2006-12-23 6.3.1-4 Cristy <quetzlzacatenango@image...>
* Remove excess whitespace when converting an XMLTree to XML (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?t=8053).
* GetTypeMetrics() now returns proper width when rotating text.
* Add -origin command line option.
2006-12-17 6.3.1-3 Cristy <quetzlzacatenango@image...>
* Tiled TIFF images are now read using a memory efficient algorithm.
* Add additional checks for valid IPTC profiles.
* Add -recolor option to translate, scale, shear, or rotate image colors.
* CompareStringInfo() no longer returns incorrect results if one string is
a substring of the other.
2006-12-13 6.3.1-2 Cristy <quetzlzacatenango@image...>
* Fix 'no window with specified ID exists' bug (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?t=6315).
* Bilevel TIFF images require a bilevel alpha channel.
* Fix missing object when writing PDF images.
2006-12-06 6.3.1-1 Cristy <quetzlzacatenango@image...>
* Use soft rather than hard shadows with montage.
* Under some circumstances, identify did not report the transparent colormap
color.
* Patch TIFF coder to read separated CMYKA images.
* Patch gradient coder to permit transparent gradients.
* Fix tiling of display program pan icon (reference
http://www.imagemagick.org/discourse-server/viewtopic.php?p=24214).
* Add -linear-stretch option (suggested by Anthony).
2006-12-05 6.3.1-0 Cristy <quetzlzacatenango@image...>
* Fix memory leak when EmbeddableMagick is defined.
* Fix memory leak when EmbeddableMagick is defined.
2006-12-02 6.3.0-8 Marko Mahnic <marko.mahnic@email...>
* Fix drawing boundary condition to prevent rendering ghost lines.
2006-12-01 6.3.0-8 Chris Madison <madisonblu@hotma...>
* Fix corrupt Group4/Fax-compressed PDF object.
* Generate a proper grayscale image when using a gray profile.
2006-11-30 6.3.0-7 Cristy <quetzlzacatenango@image...>
* Revert TIFF samples-per-pixel patch.
2006-11-15 6.3.0-5 Cristy <quetzlzacatenango@image...>
* Generate proper Postscript for bilevel transparent images.
* Generate proper Windows icon image files (patch provided by
Robert M. Jansen).
2006-11-11 6.3.0-4 Cristy <quetzlzacatenango@image...>
* Prevent buffer overflow in PNG coder (reference
http://redux.imagemagick.org/discussion-server/viewtopic.php?t=7781).
* Add image.resolution.{x,y} to the Fx language.
2006-11-03 6.3.0-3 Cristy <quetzlzacatenango@image...>
* Prevent buffer overflow in DCM and PALM coders (ref
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2006-5456).
* Set opacity channel of splice image to that of the image background color.
* Properly read/write 16-bit FITS images.
2006-11-01 6.3.0-2 Cristy <quetzlzacatenango@image...>
* Don't truncate image comment (e.g. convert ... -format %c ...).
* Write Group-4 compressed TIFF images if the image is monochome and opaque.
* Color reduction with the HSB colorspace no longer faults.
2006-10-23 6.3.0-1 Cristy <quetzlzacatenango@image...>
* Speed up XPM coder (patch from luis@luispe...).
* PNG images with 16 colors or less are no longer corrupted.
2006-10-02 6.3.0-0 Cristy <quetzlzacatenango@image...>
* Destroy MagickCore API environment when END{} is called in PerlMagick
(patch provided by Dmitry Karasik).
* Support -fx conditionals (e.g. x ? y : z), assignment (e.g. zz=3.1), and
statement separators (e.g. zz=2.1; zz).
* Add new pixel: attribute (e.g. -format '%[pixel:s]').
* Add support for Supplementary Plane Unicode characters (reference
http://redux.imagemagick.org/discussion-server/viewtopic.php?p=23065#23065).
2006-09-25 6.2.9-8 Cristy <quetzlzacatenango@image...>
* The plasma: coder is once again opaque.
* Bogus relinquish in rare circustances produced incorrect resource
utilization statistics.
2006-09-18 6.2.9-7 Cristy <quetzlzacatenango@image...>
* Add CMYK support to the PAM image format.
* Do not write PDF soft mask if image is PaletteMatteType.
* Patches from Sven Koehler to improve PerlMagick's build script.
2006-09-18 6.2.9-7 Anthony Thyssen <anthony@griff...>
* Add additional ordered-dithering options.
2006-09-15 6.2.9-6 Cristy <quetzlzacatenango@image...>
* Ensure cache_resources in magick/cache.c is a valid splay-tree before we
add/remove nodes to/from it.
* Automatically threshold the alpha channel at 50% when color reducing an
image.
* Make ParseMagickOptions() more robust to handle ordered dither options.
2006-09-11 6.2.9-5 Cristy <quetzlzacatenango@image...>
* Improve -monochrome option.
* %% now works in output image filename (reference
http://redux.imagemagick.org/discussion-server/viewtopic.php?p=22393).
* Install check to ensure the blob offset is less than the blob length in
ReadBlob() to prevent accidental or malicious buffer overflow (reference
[AD_LAB-06010]).
* fix PerlMagick per-object leak (reference
http://redux.imagemagick.org/discussion-server/viewtopic.php?p=22418).
2006-09-02 6.2.9-4 Cristy <quetzlzacatenango@image...>
* Add -resample option to the display and animate program.
* Fix boolean transparency bug for GIF images.
2006-08-28 6.2.9-3 Cristy <quetzlzacatenango@image...>
* Add -clip-mask option to clip as defined by an image mask.
2006-08-20 6.2.9-2 Cristy <quetzlzacatenango@image...>
* Add >>, <<, >=, and <= operators to -fx.
2006-08-12 6.2.9-1 Cristy <koyaanisqatsi@image...>
* Add -interpolate option.
* Respect -type option when writing PNG images (reference
http://redux.imagemagick.org/discussion-server/viewtopic.php?t=7254).
* Missing bounds checks in XCF and SUN image decoders (patch by
(taviso@googl...).
* Enhance -fx to respect -interpolate.
* display -window id image no longer generates a seg-fault.
* Use -transparent-color wheat to define the GIF transparency color.
* Fix -fx and operator (&).
* Validate runlength fields in SGI images (reference CVE-2006-4144).
2006-08-08 6.2.9-0 Cristy <koyaanisqatsi@image...>
* Add -adaptive-resize option.
* Permit x100 as a geometry in Magick++.
* Respect width/height for image MVG element.
2006-08-01 6.2.8-8 Cristy <koyaanisqatsi@image...>
* Add -unique-colors to discard all but one of any pixel color.
* The montage program properly parses the -channel option.
* Make -colors work consistently as an image operator.
* Some DPX images do not contain a television header.
* Restore ability to read 10-bit grayscale Cineon images.
* Improve handling of corrupt GIF images.
2006-07-28 6.2.8-7 Cristy <koyaanisqatsi@image...>
* Handle undefined colorspace in TransformRGBImage().
* Add ParseAffineGeometry() to parse the affine geometry.
2006-07-24 6.2.8-6 Glenn Randers-Pehrson <glennrp@glenn...>
* Extend ordered-dither to accept a few more values 2x1, 4x1, 6x1, and
8x1 are halftone patterns.
2006-07-15 6.2.8-6 Cristy <koyaanisqatsi@image...>
* Add -sketch option (e.g. -sketch 0x20+135). See
http://redux.imagemagick.org/discussion-server/viewtopic.php?t=7023.
* Add -regard-warnings option to ImageMagick utilities.
* The -colorspace option is an operator, not a setting.
* Fix -affine so it rotates at the proper offset.
2006-07-15 6.2.8-5 Cristy <koyaanisqatsi@image...>
* Fixed a threading flaw in RemoveNodeByValue() in the magick/splay.c (report
by fedor57).
* Properly scale for 16-bit unsigned FITS image.
* PosterizeImage() is working properly again.
* Don't expand filenames for CAPTION: or LABEL: image formats.
* Add -adaptive-blur command-line option
2006-07-06 6.2.8-4 Cristy <koyaanisqatsi@image...>
* Add IsImageSimiliar() method to MagickCore API.
* Improve color reduction algorithm for images with transparency.
2006-07-02 6.2.8-3 Cristy <koyaanisqatsi@image...>
* The -page A4 option no longer returns a width/height of 0.
* GetMagickModulePath() at line 803 in magick/module.c the variable 'home'
is not freed before returning.
* Magick::throwException should not call MagickLib::GetException().
2006-07-01 6.2.8-2 Cristy <koyaanisqatsi@image...>
* The DPX orientation header elements are 8 not 16.
* Fix the ImageMagick web pages so they render properly.
2006-06-16 6.2.8-1 Cristy <koyaanisqatsi@image...>
* Fix off-by-one error in DrawAffineImage().
* Set the offset to layer #2 of XCF images.
2006-06-12 6.2.8-1 Cristy <koyaanisqatsi@image...>
* Set proper precendence so -fx 'p{u[1]*w,u[2]*h}' parses properly (bug
report by Anthony).
* Some fonts improperly return a negative max advance metric.
2006-06-07 6.2.8-1 Cristy <koyaanisqatsi@image...>
* Do not normalize -convolve kernel.
2006-06-06 6.2.8-0 Cristy <koyaanisqatsi@image...>
* Fixed a number of bugs found on Anthony's bug page,
http://www.cit.gu.edu.au/~anthony/graphics/imagick6/bugs/testing/.
2006-05-21 6.2.7-8 Cristy <koyaanisqatsi@image...>
* Added -auth-orient, -transpose, and -transverse options to the convert
command line.
* +extract properly resets the extract geometry.
2006-05-18 6.2.7-7 Cristy <koyaanisqatsi@image...>
* Don't fault when processing bad TIFF profiles (4 characters or less).
* Masks are now read properly for 16-bit DIB's.
* The pixel cache file descriptor limit code failed because the pixel cache
timestamp was not always being set properly.
* Fixed a small memory leak in IsGrayImage().
* Fixed Cineon writing bug for very long filenames in 6.2.7 (reference
http://redux.imagemagick.org/discussion-server/viewtopic.php?t=6590)
* Begin the long journey of enhancing the conjure utility to support
all options that are supported by the convert utility and PerlMagick
(e.g. border, guassian-blur, etc.).
* Fixed access violation in ImageMagickObject (patch provided by Milan
Dadok).
2006-05-10 6.2.7-6 Cristy <koyaanisqatsi@image...>
* Clear exception in ListMagickInfo() if any formats are returned.
* Patch to correctly read 32-bit TGA image.
2006-05-09 6.2.7-5 Cristy <koyaanisqatsi@image...>
* Default quantum scale to QuantumRange/(maximum-minimum) in magick/quantum.c.
2006-05-08 6.2.7-4 Cristy <koyaanisqatsi@image...>
* Remove debugging statement from magick/cache.c.
2006-05-01 6.2.7-3 Cristy <koyaanisqatsi@image...>
* Add -adaptive-sharpen to the convert and mogrify programs.
2006-04-24 6.2.7-2 Cristy <nagual@image...>
* Generate proper image filenames when filename has more than one embedded
period (e.g. image.gif.eps becomes image.gif-0.eps, image.gif-1.eps,
etc.).
* CompositeImage() is now thread-safe.
2006-04-17 6.2.7-1 Chris Madison <madisonblu@hotma...>
* The OpenModules() is now thread-safe (bug report from
rachael.sandefer@kabir...)
* Grabbing subimages from a TIFF image now works properly (e.g.
image.tif[3,7,11-13]).
2006-04-14 6.2.7-0 Chris Madison <madisonblu@hotma...>
* The GIF image format is now thread-safe (bug report from
rachael.sandefer@kabir...)
2006-04-11 6.2.7-0 Glenn Randers-Pehrson <glennrp@glenn...>
* Icon module was logging TraceEvent instead of CoderEvent; added logging
if header info.
2006-04-10 6.2.7-0 Cristy <nagual@image...>
* Load system fonts with the fontconfig delegate library.
* The -opaque option now respects -channel.
* Put/get TIFF image position attribute.
* Read PSD pre-combined layer.
* Set the fuzz factor for -opque and -transparent.
* Add -black-point-compensation option. Use in concert with the -profile
option.
2006-03-31 6.2.6-8 Chris Madison <madisonblu@hotma...>
* 'convert existing-image.png -background' no longer generates a fault.
* -define pdf:use-cropbox=true actually works now.
* Slight mods to magick/xwindow.c to compile under BEOS (path provided by
henrimoi@hotma...).
* #000000 improperly set the opacity channel (bug report and patch from
digipete@shaw....).
2006-03-31 6.2.6-8 Jacob (=Jouk) Jansen <joukj@hrem...>
* Patch for OpenVMS compile support.
2006-03-30 6.2.6-7 Anthony Thyssen <anthony@griff...>
* Added the 'Dispose' layers function to return the 'GIF dispose' images of
an animation.
2006-03-30 6.2.6-7 Cristy <nagual@image...>
* File is already closed, do not call fclose() on it in magick/blob.c.
* PS3/EPS3 now writes a proper image mask when compression is None.
* Patch to properly read interlaced GIF's.
* DestroyMagick() is not always reliably available when atexit() unwinds.
2006-03-26 6.2.6-6 Cristy <stentz@image...>
* Specify '-depth 32 -define quantum:format=floating-point' to read/write
single precision floating point TIFF and raw formats.
* Specify '-depth 64 -define quantum:format=floating-point' to read/write
double precision floating point TIFF and raw formats.
* If you overlaying an image with a negative offset, the image is no
longer wrapped around the left and right edges of the canvas.
2006-03-20 6.2.6-5 Cristy <stentz@image...>
* Fix Group4-compression in the PDF writer.
2006-03-06 6.2.6-4 Cristy <stentz@image...>
* Read image filenames that start with a dash (e.g. display -- -logo.png).
* Do not set the image opacity when reading a PSD colormap index (reference
http://redux.imagemagick.org/discussion-server/viewtopic.php?p=18026).
* By default, ImageMagick sets the page size to the MediaBox. Some
PDF files, however, have a CropBox that is smaller than the MediaBox and
may include white space, registration or cutting marks outside the CropBox.
To force ImageMagick to use the CropBox rather than the MediaBox, use
-define (e.g. -define pdf:use-cropbox=true).
* RGB to CMYK color conversion is now scaled properly.
2006-03-01 6.2.6-3 Cristy <stentz@image...>
* The command line utilities properly returns a non-zero status when an
exception is thrown.
2006-02-20 6.2.6-2 Cristy <stentz@image...>
* Fix a memory leak in each of CompositeImageCommand() and CompositeImage()
(bug report by gscott...@gmail...).
* Add new options -layers compare-any, -layers compare-clear,
-layers compare-overlay, and -layers optimize.
2006-02-16 6.2.6-2 Marko Mahnič <marko.m...>
* Draw last dash in a dashed polyline.
2006-02-15 6.2.6-2 Cristy <stentz@image...>
* See http://www.cit.gu.edu.au/~anthony/graphics/imagick6/basics/#notes
-geometry implementation notes.
2006-02-13 6.2.6-2 Cristy <stentz@image...>
* Add %D to -format to return the image disposal method.
* ncorrect handling of file:// URIs causes data loss (patch from Daniel
Kobras).
* Set default BMP resolution units to PixelsPerCentimeter (problem report
from digipete@shaw...).