]> granicus.if.org Git - imagemagick/blob - ChangeLog
(no commit message)
[imagemagick] / ChangeLog
1 2010-03-05  6.6.0-3 Cristy  <quetzlzacatenango@image...>
2   * The -evaluate-sequence option behaves like -evaluate except it operates
3     on a sequence of images.
4
5 2010-03-05  6.6.0-2 Cristy  <quetzlzacatenango@image...>
6   * Add support for the -maximum and -minimum options.
7
8 2010-02-27  6.6.0-1 Cristy  <quetzlzacatenango@image...>
9   * Check to see if ICON image width /height exceeds that of the image canvas.
10   * Set the DPX descriptor to Luma only if the image type is not TrueColor.
11   * Add support for the Adobe Large Document format.
12   * Add support for -fx airy(), j0(), j1(), jinc(), and sinc() (reference
13     http://www.imagemagick.org/discourse-server/viewtopic.php?f=2&t=15685).
14     Anthony, review these for correctness.
15   * Don't embed an XMP profile in an EPS image for now.
16
17 2010-02-21  6.6.0-0 Cristy  <quetzlzacatenango@image...>
18   * Insufficient image data in EPT is a warning rather than an error.
19   * Respect -type TrueColor when writing gray DPX images.
20   * Fix problem reading 10-bit grayscale DPX images when scanline length is
21     not a multiple of 3.
22   * BMP has an alpha channel, it was treated as an opacity channel.
23
24 2010-02-20  6.5.9-10 Cristy  <quetzlzacatenango@image...>
25   * Write 10-bit grayscale DPX images properly.
26
27 2010-02-18  6.5.9-8 Cristy  <quetzlzacatenango@image...>
28   * Detect PDF ICCBased colorspace.
29
30 2010-02-18  6.5.9-7 Anthony Thyssen <A.Thyssen@griffith...>
31   * Finalized -set option:convolve:scale  kernel normalize/scale option
32
33 2010-02-16  6.5.9-7 Cristy  <quetzlzacatenango@image...>
34   * TransformImage() resets the image blob when called in the PICT decoder;
35     use SetImageExtent() instead.
36
37 2010-02-14  6.5.9-6 Cristy  <quetzlzacatenango@image...>
38   * Support PSD RLE compression.
39
40 2010-02-13  6.5.9-5 Cristy  <quetzlzacatenango@image...>
41   * The jpeg:extent define sometimes exceeded the specified limit.
42
43 2010-02-09  6.5.9-4 Cristy  <quetzlzacatenango@image...>
44   * Resolve "too many open files"  (reference
45     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=15546).
46
47 2010-02-08  6.5.9-3 Anthony Thyssen <A.Thyssen@griffith...>
48   * Added Correlate method which does a Convolve without reflecting the kernel.
49
50 2010-02-07  6.5.9-3 Cristy  <quetzlzacatenango@image...>
51   * Initialize grayscale colormap for PSD images.
52
53 2010-02-07  6.5.9-3 Anthony Thyssen <A.Thyssen@griffith...>
54   * Final testing and fixing of basic morphology operators
55   * Addition Third-level Subtractive Morphology Methods:
56     EdgeIn, EdgeOut, Edge, TopHat, BottomHat
57   * Ensuring original kernels passed to morphology are cloned before being
58     modifified for use by specific methods (EG: convolve scale/normalize)
59
60 2010-02-03  6.5.9-2 Cristy  <quetzlzacatenango@image...>
61   * display -immutable to display transparent image without a checkboard.
62
63 2010-01-27  6.5.9-1 Glenn Randers-Pehrson <glennrp@image...>
64   * Make -define png:color-type less persnickity about what it will accept.
65
66 2010-01-24  6.5.9-1 Anthony Thyssen <A.Thyssen@griffith...>
67   * added use of -precision in 'showkernel' output of -morphology
68   * correct use of a 'reflected kernel' for 'Convolve' 'Dilate' and
69     'Distance' Morphology primatives. This does not have a performance hit,
70     though is only truely applicable when the kernel is asymmetric.  Note that
71     'Erode' does not use a 'reflected' kernel, so that 'Open' and 'Close'
72     operations work properly.  This 'reflected usage is defined by online
73     morphology lecture notes (Google for "EECE Binary Morphology")
74   * Added convolve kernel scaling setting "-set option:convolve:scale N"
75     If undefined morphology convolve does not do any scaling or normalization
76     of the convolution kernel.  A value of 0.0 causes normalization for both
77     zero and non-zero (added weights) kernel types.
78
79 2010-01-15  6.5.9-1 Cristy  <quetzlzacatenango@image...>
80   * Speed up reading the PSD image format.
81   * Add the -precision option.  Use it to set the maximum number of significant
82     digits to be printed.
83   * Add -features option to the identify program to display channel features.
84   * Add -unique option to the identify program to display channel features.
85
86 2010-01-01  6.5.9-0 Cristy  <quetzlzacatenango@image...>
87   * Add support for compact floating point (i.e. -depth 16 -define
88     quantum:format=floating-point).
89   * Transparent images no longer flicker on certain system when using the
90     display program.
91   * Permit interactive resizing with the display program.
92   * Support heterogeneous distributed processing, see
93     http://www.imagemagick.org/script/architecture.php#distributed.
94   * Fix semaphore assertion when reading a corrupt image with Magick++.
95   * Add support for -brightness-contrast option.
96
97 2010-01-05  6.5.9-0 Stephan Menzel  <stephan.menzel@gmail...>
98   * Add support for the BGRA raw image format.
99
100 2010-01-04  6.5.9-0 Anthony Thyssen <A.Thyssen@griffith...>
101   * Added Kernel Generator to generate kernels from user strings, which
102     allows the generation in many built in kernels for both Convolution
103     and other Morphological methods.  New Kernels currently include..
104       Convolution: Gaussian, Blur, Comet
105       Morphological: Rectangle, Square, Diamond, Disk, Plus
106       Distance: Chebyshev, Manhatten, Knight, Euclidean
107     And both old and new (rectangular) user defined kernel specifications
108     including the use of 'nan' to represent elements which are not part
109     of the kernel definition.  List built-in kernel types use "-list kernel"
110   * Added -morphology {method}[:{iteration}] {kernel_string}
111     Initial methods includes no only the basic morphology methods: Dilate,
112     Erode, Open, Close; and a pixel color preserving 'Intensity' version, but
113     also the special methods: Convolve, and Distance.  Of course the
114     appropriate kernel should be provided for each specific method.
115
116 2010-01-01  6.5.9-0 Cristy  <quetzlzacatenango@image...>
117   * Add OpenCL-enabled filter (e.g.  convert image.png -process
118     "convolve '-1, -1, -1, -1, 9, -1, -1, -1, -1'" image.jpg).
119   * Added StringTo...() processing functions
120
121 2009-12-27  6.5.8-9 Anthony Thyssen <A.Thyssen@griffith...>
122   * Added MxN tile cropping with overlapping and space handling.
123     See IM Examples, Cutting and Bordering, Cropping roughly Equal
124
125 2009-12-23  6.5.8-8 Anthony Thyssen <A.Thyssen@griffith...>
126   * angle bug fix in variable blur composition with vertical ellipses
127   * Added ability to have variable angles for ellipses in variable blur
128     composition.  See IM Examples, Composition, Variable Blur for details
129
130 2009-12-20  6.5.8-8 Cristy  <quetzlzacatenango@image...>
131   * JPEG does not grok the HSL colorspace.
132
133 2009-12-18  6.5.8-7 Cristy  <quetzlzacatenango@image...>
134   * Off by 1 error when allocating the dash-pattern array in PerlMagick.
135   * The -gaussian-blur over blurred the opacity channel (reference
136     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=15218).
137
138 2009-12-13  6.5.8-6 Cristy  <quetzlzacatenango@image...>
139   * Declare InverseFourierTransformImage in Magick++/Include.h.
140
141 2009-12-09  6.5.8-5 Glenn Randers-Pehrson <glennrp@image...>
142   * The PNG8 encoder would fail to write a 1-color image, due to
143     a bogus MagickFail return from CompressColormapTransFirst().
144
145 2009-12-05  6.5.8-4 Cristy  <quetzlzacatenango@image...>
146   * SVG images are no longer double sized with the -density option.
147
148 2009-12-04  6.5.8-3 Glenn Randers-Pehrson <glennrp@image...>
149   * Changed the one instance of PNG_COLOR_TYPE_RGBA to PNG_COLOR_TYPE_RGB_ALPHA
150     in coders/png.c
151
152 2009-12-03  6.5.8-3 Cristy  <quetzlzacatenango@image...>
153   * It's interword-spacing, not interword_spacing (reference
154     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=1515).
155   * All JP2 depths (e.g. 4, 10, 12, 16) are now supported properly.
156
157 2009-11-28  6.5.8-2 Glenn Randers-Pehrson <glennrp@image...>
158   * Changed the one remaining ping_info->trans to ping_info->trans_values
159     in coders/png.c
160
161 2009-11-26  6.5.8-1 Chris Madison  <madisonblu@gmail...>
162   * Eliminate bogus 'skip to sync byte' exception for PCD image format.
163   * -threshold option: threshold to white if the computed intensity of the
164     color channels exceeds the threshold.
165   * Add -define jpeg:extent option to restrict the maximum JPEG image file size.
166
167 2009-11-26  6.5.8-1 Dr. Ingo Bremer <bremer@wias-...>
168   * Escape single quote in when writing the UIL format.
169
170 2009-11-25  6.5.8-1 Jee Teck  <jee.teck@cteca...>
171   * The mogrify program +opaque option now recognizes its required argument.
172
173 2009-11-19  6.5.8-0 Cristy  <quetzlzacatenango@image...>
174   * Add magick/morphlogy.{c,h} source templates.
175   * Sync image option when reading MPR images.
176   * Optimize ping for SVG images.
177   * SetLogFormat() no longer causes crash (reference
178     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=15091).
179   * Do not call MagickCoreTerminus() when memory allocation fails inside
180     the locale component.
181
182 2009-11-18  6.5.7-9 Cristy  <quetzlzacatenango@image...>
183   * Read / write 32-bit SUN raster images with a odd width.
184   * Cairo format returns pixels with the alpha premultiplied (reference
185     http://www.imagemagick.org/discourse-server/viewtopic.php?f=2&t=15081).
186
187 2009-11-12  6.5.7-8 Cristy  <quetzlzacatenango@image...>
188   * Thumb::URI file URI now has the correct number of forward slashes.
189
190 2009-11-09  6.5.7-7 Glenn Randers-Pehrson <glennrp@image...>
191   * Suppress libpng pedantic warnings and warn about using old libpng-1.4.0
192     beta versions.
193
194 2009-11-09  6.5.7-7 Cristy  <quetzlzacatenango@image...>
195   * Bump library age.
196   * Restore -tile-offset functionality (bug report from Anthony).
197
198 2009-11-06  6.5.7-6 Cristy  <quetzlzacatenango@image...>
199   * Animate command line options are no longer ignored.
200
201 2009-11-04  6.5.7-5 Anthony Thyssen <A.Thyssen@griffith...>
202   * Bug Fix for Polynomial distortion. which is now working.
203
204 2009-11-01  6.5.7-4 Cristy  <quetzlzacatenango@image...>
205   * Use -define delegate:bimodal=true to activate any bimodal delegates.
206   * Make sure MagickWand semaphore is acquired before locking it.
207
208 2009-10-28  6.5.7-3 Cristy  <quetzlzacatenango@image...>
209   * Convert SVG clipping path points from unsigned to long.
210
211 2009-10-26  6.5.7-2 Chris Madison  <madisonblu@gmail...>
212   * Only call InstantiateXComponent() if X11 support is included.
213   * Correct hue computation for the HSB colorspace.
214
215 2009-10-23  6.5.7-1 Samuel Thibault  <samuel.thibault@ens-l...>
216   * Braille coder fix for DirectClass images
217
218 2009-10-19  6.5.7-1 Wang Dataton <wang@datat...>
219   * Use fdopen() rather than MagickOpenStream() in coders/pict.c.
220
221 2009-10-18  6.5.7-1 Cristy  <quetzlzacatenango@image...>
222   * Alpha blending is not required for ScaleImage().
223   * Gaussian noise operator is not longer discontinuous.
224
225 2009-10-14  6.5.7-0 Pino Toscano  <pino@kde...>
226   * ImageMagick fails to build in GNU/HURD due to absence of PATH_MAX.
227
228 2009-10-14  6.5.7-0 Cristy  <quetzlzacatenango@image...>
229   * Black channel is now set properly when resizing CMYKA images.
230
231 2009-10-10  6.5.7-0 Anthony Thyssen <A.Thyssen@griffith...>
232   * Bug Fixes for degenerate 'affine' cases of BilinearForward distortion.
233
234 2009-10-06  6.5.6-10 Cristy  <quetzlzacatenango@image...>
235   * Declare the  MagickCore method SpliceImage() in Magick++/Include.h.
236
237     QueueCacheViewAuthenticPixels() for the CopyComposite optimization.
238 2009-10-04  6.5.6-9 Cristy  <quetzlzacatenango@image...>
239   * Use GetCacheViewAuthenticPixels() rather than
240     QueueCacheViewAuthenticPixels() for the CopyComposite optimization.
241
242 2009-10-03  6.5.6-8 Nick Wellnhofer <wellnhofer@aevum...>
243   * Add missing libraries to the LIBADD entries in coders/Makefile.am,
244     filters/Makefile.am and wand/Makefile.am.
245   * Use LIBS rather than LDFLAGS in configure.ac for the Freetype delegate
246     library.
247
248 2009-10-01  6.5.6-7 Cristy  <quetzlzacatenango@image...>
249   * Don't use group4 compression if the image is truecolor.
250   * If image is gray, write grayscale DPX images.
251   * We no longer lose a scanline when reading multi-frame raw images
252     (Y, R, C, etc.).
253   * Properly update the EXIF orientation tag.
254
255 2009-09-25  6.5.6-6 Cristy  <quetzlzacatenango@image...>
256   * Permit percentage of hue for HSL (e.g. hsl(12%,...)).
257
258 2009-09-25  6.5.6-5 Cristy  <quetzlzacatenango@image...>
259   * Support -clamp option.
260   * Patch for IsMagickColorEqual() for HDRI.
261   * Permit non-percentage HSL colors (e.g. hsl(12.6316,134.58339,219.00012)).
262
263 2009-09-25  6.5.6-5 Elf  <elf@ephem...>
264   * Patch to fix configure's framework's undefinedness (only if the gslib
265     tests are run).
266
267 2009-09-22  6.5.6-4 Cristy  <quetzlzacatenango@image...>
268   * Don't compile Huffman2DEncodeImage() unless the TIFF delegate library
269     is enabled.
270   * Hue in hsl() format is 0-360 and does not use %.
271
272 2009-09-21  6.5.6-3 Cristy  <quetzlzacatenango@image...>
273   * Deprecate LevelImageColors(), replace with LevelColorsImage().
274
275 2009-09-17  6.5.6-2 Cristy  <quetzlzacatenango@image...>
276   * Optimize copy composite operator.
277
278 2009-09-15  6.5.6-2 Cristy  <quetzlzacatenango@image...>
279   * Use -define jpeg:size to scale a JPEG image to the specified size.
280
281 2009-09-13  6.5.6-0 Cristy  <quetzlzacatenango@image...>
282   * Fix ICON alpha mask scanline pad.
283
284 2009-09-11  6.5.5-10 Cristy  <quetzlzacatenango@image...>
285   * Return the global maximum threads to avoid the rare cache view assertions.
286   * Throw an end-of-file exception for truncated raw gray images.
287
288 2009-09-10  6.5.5-9 Cristy  <quetzlzacatenango@image...>
289   * Do not include last line of text in the interline spacing computation.
290
291 2009-09-07  6.5.5-8 Cristy  <quetzlzacatenango@image...>
292   * Check that quantum_info is defined before destroying it in the PNG coder.
293   * Add -interline-spacing option to convert.
294
295 2009-09-03  6.5.5-7 Cristy  <quetzlzacatenango@image...>
296   * Support multi-page transparent Postscript and PDF.
297
298 2009-09-01  6.5.5-6 Cristy  <quetzlzacatenango@image...>
299   * A union is required when converting a thread ID to an unsigned long.
300
301 2009-08-28  6.5.5-5 Cristy  <quetzlzacatenango@image...>
302   * Add support for TIFF 3.9.1.
303
304 2009-08-27  6.5.5-4 Cristy  <quetzlzacatenango@image...>
305   * Validate with the netscape: reference image.
306
307 2009-08-26  6.5.5-3 Cristy  <quetzlzacatenango@image...>
308   * Fix memory leak for threaded PerlMagick scripts.
309
310 2009-08-24  6.5.5-2 Cristy  <quetzlzacatenango@image...>
311   * SVG compile error when if MAGICKCORE_CAIRO_DELEGATE is not defined.
312
313 2009-08-23  6.5.5-1 Anthony Thyssen <A.Thyssen@griffith...>
314   * Bug Fix for transparency handling in Composite Variable Blur
315   * Addition of -auto-level and -auto-gamma  image enhancements
316     (under trial not yet final)
317   * Addition of a special -channel flag 'sync' which means that the specified
318     channels are to be modified together by the same amount.  The flag is
319     enabled by default.  This replaces the current 'channels not modified'
320     type handling thought IM.
321   * Modified -channel parsing to continue looking for words, after handling
322     any shorthand channel options.  For example:  -channel RGB,sync
323
324 2009-08-10  6.5.5-0 Cristy  <quetzlzacatenango@image...>
325   * identify -format %c logo.png returns the image comment as expected.
326   * Clone ImageInfo members scene and number_scenes (reference
327     http://www.imagemagick.org/discourse-server/viewtopic.php?f=2&t=14437).
328   * Fix memory leak with the -remote option of the animate program (bug report
329     from Anthony).
330   * If a grayscale TIFF image has a colormap write it as a colormapped image.
331   * MVG partial opacity not set properly (reference
332     http://www.imagemagick.org/discourse-server/viewtopic.php?f=6&t=14442).
333   * Black channel was not blurring properly (reference
334     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=14473).
335
336 2009-08-06  6.5.4-10 Cristy  <quetzlzacatenango@image...>
337   * The display program honors -loop.
338   * (ab) of Lab colorspace was not offset correctly.
339   * Scale mag/phase and real/imaginary the same for HDRI and non-HDRI builds.
340   * SVG permits multiple arc paths with an omitted 'A' (reference
341     http://www.imagemagick.org/discourse-server/viewtopic.php?f=6&t=14377).
342   * The 'skewY' MVG attribute produced incorrect angles (reference
343     http://www.imagemagick.org/discourse-server/viewtopic.php?f=6&t=14144).
344
345 2009-08-02  6.5.4-9 Cristy  <quetzlzacatenango@image...>
346   * Optimize GammaImage() method.
347
348 2009-08-02  6.5.4-8 Cristy  <quetzlzacatenango@image...>
349   * OpenMP-enable GetSimilarityMetric().
350
351 2009-07-30  6.5.4-7 Bernhard Rosenkraenzer <bero@arkli...>
352   * Structure trans_values was renamed to trans_color and trans was
353     renamed to trans_alpha in PNG version 1.4.
354
355 2009-07-29  6.5.4-7 Cristy  <quetzlzacatenango@image...>
356   * Replace color blending in DrawGradientImage() to use Composite Blend.
357     this makes Gradients handle transparency correctly!
358
359 2009-07-28  6.5.4-7 Cristy  <quetzlzacatenango@image...>
360   * The -thumbnail option no longer removes color profiles (reference
361     http://www.imagemagick.org/discourse-server/viewtopic.php?f=2&t=14312).
362   * Do not scale real / imaginary FFT / IFT.
363   * Check for localtime() NULL return.
364   * import --help requires an X server (reference
365     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=14323).
366   * Fails to load MS Windows icons with compressed PNG elements (reference
367     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=14324).
368
369 2009-07-25  6.5.4-6 Cristy  <quetzlzacatenango@image...>
370   * Support the new JPEG version 7 delegate library.
371
372 2009-07-24  6.5.4-6 Alexander E. Patrakov <patrakov@gmail...> 
373   * Incorrect use of setjmp in coders/png.c.
374
375 2009-07-23  6.5.4-5 Cristy  <quetzlzacatenango@image...>
376   * We broke -scene when we fixed the -dispose option.  Try again.
377
378 2009-07-21  6.5.4-4 Cristy  <quetzlzacatenango@image...>
379   * Update autoconf support files.
380   * More than one -dispose setting overwrote previous settings (reference
381     http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=14252).
382   * Don't use JPEG's color reduction algorithm for less than 8 colors.
383
384 2009-07-13  6.5.4-3 Anthony Thyssen <A.Thyssen@griffith...>
385   * Final testing and bug fixes for all mathematical compose methods
386     Including non-overlapping regions bugs found in in operators Divide,
387     ColorDodge,  VividLight.  And the handling of transparency to follow
388     standard 'Over' Blending in Divide.  Only math methods not looked at are
389     the addition methods Plus, Add, Minus, and Subtract, which do not follow
390     normal 'Over' alpha blending behaviour, for the purposes of mask handling.
391
392 2009-07-12  6.5.4-3 Anthony Thyssen <A.Thyssen@griffith...>
393   * Addition of user definable 'Mathematics' compose method
394       -compose Mathematics -set option:compose:args A,B,C,D -composite
395     Will implement the formula    f(Sc,Dc) = A*Sc*Dc + B*Sc + C*Dc + D
396     this lets you implement most smooth polynomial compose methods.
397     (requested by Fred WienHaus)
398
399 2009-07-11  6.5.4-3 Anthony Thyssen <A.Thyssen@griffith...>
400   * Finished the recoding of Composite methods to allow easier debugging
401     and faster access.
402   * Added PegtopLight compose method as an alternative simpler Softlight
403     alternative.  See notes and comparision to SoftLight in...
404        http://www.pegtop.net/delphi/articles/blendmodes/softlight.htm
405   * From the notes on Photoshop blend modes at
406        http://www.simplefilter.de/en/basics/mixmods.html
407     Added extra composition modes:
408        VividLight, PinLight, LinearBurn, LinearDodge
409     NOTE: 'LinearBurn' the same as 'Plus' but with the normal 'Over' blending.
410
411 2009-07-10  6.5.4-3 Anthony Thyssen <A.Thyssen@griffith...>
412   * Re-coding of Composite methods HardLight, SoftLight, Overlay, LinearLight,
413     ColorBurn, ColorDodge, Multiply, Screen  to make it more readable, easier
414     to debug, and directly comparable to SVG specifications.
415   * Specifications changed for  SoftLight, ColorBurn, ColorDodge
416     Though only SoftLight changed to significantly.
417   * However implementation errors were found for  ColorBurn, LinearLight
418
419 2009-07-01  6.5.4-3 Cristy  <quetzlzacatenango@image...>
420   * Add -blue-shift option.
421   * Add compression flag for each channel of a PSD layer.
422   * Implement experimental forward and inverse fourier transforms (contributed
423     by Sean Burke and Fred Weinhaus).  The -fft / -ifft option is not ready for
424     prime time just yet.
425   * Support -cdl (color decision list) option.
426   * Support breaks in Chinese characters which traditionally do not include
427     spaces.
428   * Don't process directories as filenames when using wildcard paths
429     (i.e. logo[1]/png).
430
431 2009-07-01  6.5.4-2 Cristy  <quetzlzacatenango@image...>
432   * Can't bit shift a float.
433
434 2009-06-25  6.5.4-1 Cristy  <quetzlzacatenango@image...>
435   * Off by one error for multi-frame raw grayscale images.
436   * Can't stat() a Zip or Bzip opaque structure.
437   * DPX user bits are no longer truncated.
438   * Return image colorspace for -format [%colorspace] option.
439   * ThumbnailImage(): don't subsample if image is already thumbnail size.
440
441 2009-06-23  6.5.4-0 Anthony Thyssen <A.Thyssen@griffith...>
442   * Automatic determination of B from C and C from B for a 'Keys Filter'
443     when using the B,C Cubic Filter Expert options was broken.
444     See http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=14037
445
446 2009-06-19  6.5.4-0 Anthony Thyssen <A.Thyssen@griffith...>
447   * Added -compose 'Blur', variable blur mapping to CompositeImages
448     Arguments   X_scale x Y_scale + angle   of the blurring ellipse.
449   * Added "-blur" special compose option to "composite"
450   * Cleanup of "composite" compose argument handling
451
452 2009-06-18  6.5.3-10 Cristy  <quetzlzacatenango@image...>
453   * Clone pixel cache when cloning image to prevent RMagick semaphore lock.
454   * Set compare similarity image to NULL to prevent double free.
455
456 2009-06-16  6.5.3-8 Cristy  <quetzlzacatenango@image...>
457   * Set camera formats to require a seekable stream.
458   * Do not let display program image window exceed the screen size.
459
460 2009-06-14  6.5.3-7 Cristy  <quetzlzacatenango@image...>
461   * Improve FITS keyword parser.
462
463 2009-06-14  6.5.3-7 Anthony Thyssen <A.Thyssen@griffith...>
464   * Cleanup of compose 'displace' of old useless code that is not used.
465   * Implement a compose 'distort' mapping method,
466     This is basically exactly like 'displace' but relative to a fixed point
467     which may be user supplied as +X+Y
468   * Default scaling to width/2 and height/2 of overlay (100% scale)
469     with a distortion 'center' to the middle of the overlay image
470   * If a '%' flag given scale displacement relative to image size
471   * If a '!' flag given make scale and center relative to 'background' image 
472     instead of the overlay map.
473   * If no 'height' scale given, use the X scale.
474
475 2009-06-13  6.5.3-6 Anthony Thyssen <A.Thyssen@griffith...>
476   * Fixed bug for compose methods, Hue, Saturate, Luminize
477
478 2009-06-11  6.5.3-6 Cristy  <quetzlzacatenango@image...>
479   * Report the correct transparent pixel values in the display program
480     magnify windows.
481   * Do not advance when finalizing image settings in the mogrify program.
482
483 2009-06-11  6.5.3-5 Anthony Thyssen <A.Thyssen@griffith...>
484   * Fixed "convert" to merge the third 'mask' image into the 'source' image
485     for correct handling of 2 dimensional -compose "displace".
486   * Fixed PerlMagick Composite() for the same thing.
487   * Modified compose "Displace" so displacement image's alpha channel can be
488     used to mask the transparency of the overlay area.
489
490 2009-06-07  6.5.3-4 Cristy  <quetzlzacatenango@image...>
491   * Added the HALD image Color LUT, and a no-op HALD: image generator.
492     See Introduction at  http://www.quelsolaar.com/technology/clut.html
493
494 2009-06-07  6.5.3-4 Anthony Thyssen <A.Thyssen@griffith...>
495   * Changed CompositeImageChannel() so that extra compose arguments are
496     now passed in the ImageArtifact "compose:args". This can be assigned to
497     images using   -set "option:compose:args" 'args'  where args are defined
498     using 'geometry' style or 'comma separated numbers'.
499   * Declared the special flag needed for Composite Tiling as the ImageArtifact
500     "compose:outside-overlay".
501   * Documentation update for CompositeImageChannel() in Core Library to
502     reflect these changes.
503   * Documentation update for DistortImage() in Core Library with the extra
504     ImageArtifact controls it can use.
505   * Bug correction in normalization of GetOptimalKernelWidth2D() of gem.c
506
507 2009-06-06  6.5.3-3 Anthony Thyssen <A.Thyssen@griffith...>
508   * Documentation update for CompositeImageChannel() in Core Library.
509     This adds the information on how extra compose arguments needed for
510     specific compose methods are actually passed to the library function.
511     Compose methods such as Blend, Dissolve and Displace.
512
513 2009-06-01  6.5.3-3 Priya Hariharan <priya.hariharan@globa...>
514   * The target profile in ProfileImage() is no longer accessed after it is
515     freed.
516
517 2009-06-01  6.5.3-1 Cristy  <quetzlzacatenango@image...>
518   * Bug fix for -page.
519
520 2009-05-31  6.5.3-1 Anthony Thyssen <A.Thyssen@griffith...>
521   * Minor change to -function Arctan to make first argument match slope
522
523 2009-05-29  6.5.3-0 Cristy  <quetzlzacatenango@image...>
524   * Do not treat -page as a global option (reference
525     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13864).
526
527 2009-05-28  6.5.2-10 Cristy  <quetzlzacatenango@image...>
528   * Create thread set for pseudo-random number generator.
529
530 2009-05-25  6.5.2-9 Cristy  <quetzlzacatenango@image...>
531   * Do not change opacity value for the -alpha background option.
532   * Rebuild automake / autoconf scripts.
533
534 2009-05-23  6.5.2-8 Cristy  <quetzlzacatenango@image...>
535   * Check for XMakeImage() integer overflow vulnerability (Secunia Advisory
536     SA35216).
537
538 2009-05-23  6.5.2-8 Cristy  <quetzlzacatenango@image...>
539   * Permit reading a specific frame of a multi-page TIFF with blobs.
540
541 2009-05-22  6.5.2-8 Anthony Thyssen <A.Thyssen@griffith...>
542   * Added new -function methods  Arcsin  and Arctan
543
544 2009-05-19  6.5.2-8 Glenn Randers-Pehrson <glennrp@image...>
545   * Fixed a regression with PNG8: format.
546
547 2009-05-19  6.5.2-7 Cristy  <quetzlzacatenango@image...>
548   * The -geometry option was improperly applied twice.
549
550 2009-05-18  6.5.2-6 Richard Oehlinger <richard.oehlinger@celum...>
551   * Set image colorspace to YCbCrColorspace if JPEG color space is JCS_YCbCr.
552
553 2009-05-14  6.5.2-5 Glenn Randers-Pehrson <glennrp@image...>
554   * Updated help output and command-line options documentation to bring
555     the -alpha options up to date with what's actually in the code.
556
557 2009-05-13  6.5.2-5 Glenn Randers-Pehrson <glennrp@image...>
558   * Change "depreciated" to "deprecated" in several files.
559
560 2009-05-10  6.5.2-5 Cristy  <quetzlzacatenango@image...>
561   * Change OpenMP schedule from dynamic to static for RenderFreeType().
562   * Recognize unicode strings when computing caption word wrapping.
563   * New -alpha background option to set fully-transparent pixels to the
564     background color.
565
566 2009-05-08  6.5.2-4 Cristy  <quetzlzacatenango@image...>
567   * Combined layer of transparent PSD image was not being read properly.
568
569 2009-05-06  6.5.2-3 Glenn Randers-Pehrson <glennrp@image...>
570   * Progress on "-define png:bit-depth=value" and "-define png:color-type=value"
571     It is now able to write an opaque black-and-white image in any of the 15
572     valid combinations of PNG color-type and bit-depth.
573   * Fixed a regression with writing sub-8-bit grayscale PNGs.
574
575 2009-05-06  6.5.2-2 Chris Madison  <madisonblu@gmail...>
576   * Create 8-bit TIFF images if -depth is set to 8 and HDRI-enable ImageMagick.
577
578 2009-05-04  6.5.2-1 Chris Madison  <madisonblu@gmail...>
579   * Accept file lists on the command line (e.g. echo "rose: rose.png" | 
580     convert @- ...).
581   * Duplicate line in tiff.c breaking read of zip compressed tif (reference
582     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13688).
583   * Support policies to permit or deny any coder, delegate, filter, or file
584     path (see policy.xml).
585
586 2009-05-02  6.5.2-0 Chris Madison  <madisonblu@gmail...>
587   * The mogrify -crop option returns multiple images if an x/y offset is not
588     specified (e.g. -crop 100x100).
589   * Generate a proper file path for -path @filelist.txt (reference
590     http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=13671).
591
592 2009-05-01  6.5.2-0 Glenn Randers-Pehrson <glennrp@image...>
593   * Accept "-define png:bit-depth=value" and "-define png:color-type=value"
594     options.  This is work-in-progress with the objective of being able to
595     precisely specify the type of PNG file to be written.  The previously-used
596     internal attribute "png:bit-depth" that was used to communicate between
597     the PNG writer and the JNG writer is changed to "png:bit-depth-written".
598     This feature needs testing.  It is important to note that this feature
599     cannot be used to force the PNG to use a bit-depth or color-type that
600     does not losslessly represent the image.  You can, however, cause
601     the writer to use a larger depth or to use the RGB colorspace when
602     grayscale or indexed would have been sufficent.
603
604 2009-05-01  6.5.1-10 Anthony Thyssen <A.Thyssen@griffith...>
605   * Fixed the Rmin usage in Depolar and Polar distortions
606   * The 6th argument (Ato) for Polar/Depolar is now optional and defaults
607     to Afrom + 360 degrees (or a fill circle from the given start angle)
608
609 2009-04-30  6.5.1-10 Cristy  <quetzlzacatenango@image...>
610   * Do not return a black image for -channel RGBA -gaussian (reference
611     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13669).
612
613 2009-04-28  6.5.1-9 Cristy  <quetzlzacatenango@image...>
614   * Fix 'conflicting types for Huffman2DEncodeImage' compile exception.
615
616 2009-04-25  6.5.1-9 Cristy  <quetzlzacatenango@image...>
617   * Generate BMP 32-bit ARGB format for images with transparency (reference
618     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13633).
619
620 2009-04-24  6.5.1-7 Cristy  <quetzlzacatenango@image...>
621   * Grok 'image.psd[0]' and 'image.mpg[0]' (reference
622     http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=13609).
623   * Normalize similarity based on reconstruction not the original (reference
624     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13626).
625   * Support multiple JPEG images encapsulated within DICOM.
626
627 2009-04-23  6.5.1-6 Cristy  <quetzlzacatenango@image...>
628   * Msys does not understand NAME_MAX.
629
630 2009-04-22  6.5.1-5 Cristy  <quetzlzacatenango@image...>
631   * Check for valid linked list before assigning next / previous pointers.
632
633 2009-04-21  6.5.1-4 Glenn Randers-Pehrson <glennrp@image...>
634   * Check error return from CompressColormapTransFirst() in coders/png.c
635
636 2009-04-21  6.5.1-4 Glenn Randers-Pehrson <glennrp@image...>
637   * Refrain from modifying image struct members (color, depth, matte)
638     while writing PNG datastreams.
639
640 2009-04-21  6.5.1-4 Glenn Randers-Pehrson <glennrp@image...>
641   * Sometimes the PNG8: format would produce 1-, 2-, or 4-bit PNG datastreams.
642     Now it always produces 8-bit datastreams as users probably expect.
643
644 2009-04-21  6.5.1-4 Glenn Randers-Pehrson <glennrp@image...>
645   * Suppressed "shadowed declaration" warnings in coders/jpeg.c and
646     coders/png.c that are triggered by "-Wshadow" gcc compiler flag.
647
648 2009-04-17  6.5.1-3 Cristy  <quetzlzacatenango@image...>
649   * The display program now returns a 0 exit code on success (reference
650     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13579).
651
652 2009-04-14  6.5.1-3 Glenn Randers-Pehrson <glennrp@image...>
653   * Folded some long lines and made other cosmetic changes.in coders/png.c
654
655 2009-04-13  6.5.1-3 Cristy  <quetzlzacatenango@image...>
656   * MVG autodetection failing (reference
657     http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=13542).
658
659 2009-04-11  6.5.1-2 Cristy  <quetzlzacatenango@image...>
660   * Image not properly placed when displaying to the X server root (reference
661     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13532).
662   * fmax() is not support on some platforms (reference
663     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13533).
664
665 2009-04-11  6.5.1-2 Anthony Thyssen <A.Thyssen@griffith...>
666   * Rename existing "Bilinear" distortion as  "BilinearReverse"
667   * Added forward mapped bilinear distort as  "BilinearForward"
668   * The "Bilinear" distort is temporarily obsoleted but will eventually
669     be added as a  "BilinearReverse" and "BilinearForward" combination
670     mapping though a unit square.
671   * Sparse Gradient internally uses "BilinearReverse" for its "Bilinear"
672     gradient function as that method is the direct use of such equations.
673
674 2009-04-01  6.5.1-1 Cristy  <quetzlzacatenango@image...>
675   * Default to min-is-white Photometric for fax / group4 compression (reference
676     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13468).
677   * Respect image resolution when setting PDF MediaBox (reference
678     http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=13350).
679   * Add SimilarityImage() to return how similar one image is to another.
680
681 2009-03-28  6.5.1-0 Cristy  <quetzlzacatenango@image...>
682   * Graceful exit in djvu coder when EOF is thrown.
683   * Support -unsharp option for the montage program. 
684
685 2009-03-28  6.5.0-10 Cristy  <quetzlzacatenango@image...>
686   * Reduce deskew blurring: use AffineTransformImage() rather than
687     RotateImage().
688   * Unexpected end-of-file @ xwd.c/ReadXWDImage/252 (reference
689     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13430).
690
691 2009-03-26  6.5.0-10 Markus Dahms <markus.dahms@progr...>
692   * Support for -density & -units options in PSD writer.
693
694 2009-03-26  6.5.0-10 Samuel Thibault  <samuel.thibault@ens-l...>
695   * Fix bug in the braille coder which makes it always segfault.
696
697 2009-03-25  6.5.0-9 Cristy  <quetzlzacatenango@image...>
698   * Enhance the compare program to locate a template image within a larger
699     image.
700   * Eliminate assertion when generating a PDF thumbnail.
701
702 2009-03-25  6.5.0-8 Cristy  <quetzlzacatenango@image...>
703   * Fix assertion in IntegralRotateImage (reference
704     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13410).
705
706 2009-03-24  6.5.0-7 Cristy  <quetzlzacatenango@image...>
707   * Referenced counted blob was incremented incorrectedly in CloneImage().
708
709     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13410).
710 2009-03-23  6.5.0-6 Chris Madison  <madisonblu@gmail...>
711   * Assertion failure reading PSD image (reference
712     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13397).
713
714 2009-03-21  6.5.0-5 Chris Madison  <madisonblu@gmail...>
715   * Change -selective-blur to use gaussian kernel.
716
717 2009-03-21  6.5.0-4 ERB  <entropy@xebec...>
718   * Missing locks in blob - race condition (reference
719     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13385).
720
721 2009-03-19  6.5.0-3 Chris Madison  <madisonblu@gmail...>
722   * Use default SVG resolution unless resolution is explicitly set (reference
723     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13373).
724   * Add support for -selective-blur option.
725
726 2009-03-19  6.5.0-3 ragesteel  <iimagemagic-org-iapied0o@gt2.r...>
727   * ImageToBlob() no longer faults if Jasper compression is wrong (reference
728     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13372).
729
730 2009-03-19  6.5.0-3 ERB  <entropy@xebec...>
731   * Check the 8BIM profile resource block length (reference
732     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13368).
733   * Unlocked read in DeleteNodeByValueFromSplayTree (reference
734     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13370).
735
736 2009-03-18  6.5.0-2 ERB  <entropy@xebec...>
737   * Eliminate race condition when acquiring a wand (reference
738     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13357).
739   * Use of "localtime" in FormatMagickTime not thread-safe (reference
740     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13358).
741
742 2009-03-18  6.5.0-2 Cristy  <quetzlzacatenango@image...>
743   * Fix the image compose operator at OverCompositeOP for shadows (reference
744     http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=13330).
745
746 2009-03-14  6.5.0-1 Paul Smedley  <paul@smedl...>
747   * Patches to get ImageMagick working under OS2.
748
749 2009-03-10  6.5.0-1 Anthony Thyssen <A.Thyssen@griffith...>
750   * Expansion of Virtual-Pixel (Cache) handling, to include corrected Mirror,
751     plus addition of  CheckerTile, HorizontalTileEdge and VerticalTileEdge
752
753 2009-03-10  6.5.0-0 John Cupitt  <jcupitt@gmail...>,
754                     Glenn Randers-Pehrson <glennrp@image...>
755   * DICOM reader not handling signed pixels properly.
756
757 2009-03-09  6.4.9-10 Alexander E. Patrakov <patrakov@gmail...> 
758   * Don't call GetValueFromSplayTree() if image properties is NULL.
759
760 2009-03-09  6.4.9-10 Anthony Thyssen <A.Thyssen@griffith...>
761   * Fix minor size issue with bestfit +distort operation.
762   * Enable listing of -distort Polynomial
763   * Minor tweeks and center fixes for Polar/Depolar
764
765 2009-03-01  6.4.9-9 Cristy  <quetzlzacatenango@image...>
766   * Convert returns MagickFalse for the -version option (reference
767     http://www.imagemagick.org/discourse-server/viewtopic.php?f=2&t=13230).
768   * Don't set pixel opacity unless the image alpha channel is active (reference
769     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13189).
770
771 2009-02-27  6.4.9-8 Anthony Thyssen <A.Thyssen@griffith...>
772   * Fix old -clut bug for re-coloring gray images using transparent and
773     semi-transparent colors.
774
775 2009-02-22  6.4.9-7 Rick Mabry  <rick.mabry@anony...>
776   * Changes have been made to scores of the files that generate the
777     documentation. The most noticeable cosmetic changes are to the command-line
778     examples and command-line snippets, which now have a new look: dark blue
779     boxes with white/yellow text to indicate sample input/output.  Inclusion of
780     current version and release dates in appropriate places are now
781     automatically generated. Also, many changes have been made to begin to
782     bring the pages into strict W3C compliance with respect to both HTML and
783     CSS.
784
785 2009-02-21  6.4.9-7 Chris Madison  <madisonblu@gmail...>
786   * The identify program reads the image pixels when the -format option is
787     asking for image statistics.
788   * Much improved ImageMagick validation suite (exercise with 'make check').
789
790 2009-02-18  6.4.9-5 Jon  <jon@brick...>
791   * Processing the arg list -tile is replaced by -sans0 which is 1 char longer
792     and which overwrites the allocated area.
793
794 2009-02-16  6.4.9-5 Chris Madison  <madisonblu@gmail...>
795   * Add section to license to alert users to third-party licenses in the
796     NOTICE file.
797
798 2009-02-11  6.4.9-3 Anthony  <A.Thyssen@griffith...>
799   * Replaced geometry string parsing using ParseGravityGeometry() in
800     "composite" with more direct use of GravityAdjustGeometry();
801
802 2009-02-10  6.4.9-3 Cristy  <quetzlzacatenango@image...>
803   * Support file descriptors (e.g. convert image.jpg fd:3 ...).
804   * The stream utility no longer go into an infinite loop (reference
805     http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=13102).
806
807 2009-02-04  6.4.9-2 Cristy  <quetzlzacatenango@image...>
808   * JPEG to PDF was not always reversible (reference
809     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13020).
810
811 2009-01-30  6.4.9-0 Cristy  <quetzlzacatenango@image...>
812   * Stroking when annotating failed for stroks widths > 2 (reference
813     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=13009).
814
815 2009-01-24  6.4.8-10 Cristy  <quetzlzacatenango@image...>
816   * TransformImageColorspace() returns GRAYColorspace when set (reference
817     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=12990).
818   * Don;t assume CMYK unless document process colors include Cyan, Magenta,
819     or Yellow.
820
821 2009-01-23  6.4.8-9 Cristy  <quetzlzacatenango@image...>
822   * Increase random angle range for +polaroid from -7..7 to -15..15 degrees.
823
824 2009-01-22  6.4.8-8 Anthony  <A.Thyssen@griffith...>
825   * Fixed a -evaluate AddModulus 'patch' for correct 'negative' handling
826
827 2009-01-20  6.4.8-7 Cristy  <quetzlzacatenango@image...>
828   * Removed previous patches for -shear directions.
829
830 2009-01-20  6.4.8-8 Thomas Stegemann  <Thomas.Stegemann@mater...>
831   * SVG with resolutions other than 72.0 dpi, text is no longer transformed
832     twice.
833
834 2009-01-20  6.4.8-8 Anthony  <A.Thyssen@griffith...>
835   * Renamed -evaluate methods 'sin' and 'cos' to math C math library names
836   * Added  "-function polynomial  a,b,c,...."   Eg:  a*x^2 + b*x + c
837   * Added  "-function sinusoid freq,phase,amplitude,bias  (all optional)
838
839 2009-01-18  6.4.8-7 Anthony  <A.Thyssen@griffith...>
840   * Removed "annotate" patches, which causes no end of problems.
841     Original coding worked perfectly fine.  Annotate isn't part of SVG!
842
843 2009-01-18  6.4.8-7 Cristy  <quetzlzacatenango@image...>
844   * Respect mouse wheel movements for display program (reference
845     http://www.imagemagick.org/discourse-server/viewtopic.php?f=2&t=12938).
846   * Grab button in Display Open menu now works consistently (reference
847     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=12942).
848   * Patch for problem with opacity in MVG (reference
849     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=12946).
850
851 2009-01-14  6.4.8-6 Cristy  <quetzlzacatenango@image...>
852   * Don't accept discontinuous shear angles for the -annotate option.
853     -- REMOVED
854
855 2009-01-14  6.4.8-6 Mark Freeman <mark.freeman@porci...>
856   * Apply patch so ImageMagick compiles with Visual Studio 6.
857
858 2009-01-12  6.4.8-5 Alexander E. Patrakov <patrakov@gmail...> 
859   * Fix small memory leak on truncated PNG images.
860   * Do not allocate pixels when pinging a PNG image.
861
862 2009-01-11  6.4.8-6 Chris Madison  <madisonblu@gmail...>
863   * Set the stroke opacity for "opacity" SVG element (reference
864     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10594).
865
866 2009-01-10  6.4.8-5 Matthew Litwin <mlitwin@sonic...>
867   * Convert to windows .ico format no longer inverts alpha channel.
868
869 2009-01-10  6.4.8-5 Cristy  <quetzlzacatenango@image...>
870   * Interpret geometry correctly for negative angles (-shear 30x-10).
871
872 2009-01-08  6.4.8-4 Eberhard Mattes  <eberhard.mattes@web.d...>
873   * Fix GetMagickToken() to accept locales that use "," as radix character.
874
875 2009-01-08  6.4.8-4 Anthony  <A.Thyssen@griffith...>
876   * Add (and Fix) -evaluate methods   Sine, Cosine, AddModulus
877
878 2009-01-05  6.4.8-4 Rick Mabry  <rick.mabry@anony...>
879   * Check for negative offsets (bevel widths) for the -frame option.
880
881 2009-01-04  6.4.8-4 Alexander E. Patrakov <patrakov@gmail...> 
882   * Patch for a memory leak and a logical bug in coders/gif.c.
883   * CopyMagickString() now returns the minimum of the source string length
884     or the length parameter.
885   * Properly set alpha channel in PNGs with palette and tRNS.
886
887 2009-01-01  6.4.8-4 Cristy  <quetzlzacatenango@image...>
888   * Support %[] embedded filename tag (e.g. convert rose: -set area "%wx%h"
889     'rose-%[area].png').
890   * Do not set the fill element when 'opacity' is set (reference
891     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10594).
892   * Restore support for decoding the DVI format.
893   * Add perl and math lib reference to PerlMagick Makefile (reference
894     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=12840).
895   * Fix crash on invalid JPEG XML profile.
896   * Export libtool symbols in MagickCore.sym and MagickWand.sym.
897   * Support sine and cosine as arguments to the -evaluate option.
898
899 2008-12-31  6.4.8-4 Amartyo Banerjee" <amartyo@gmail...>
900   * Calculate the kurtosis and skewness of image channels (reference
901     http://amartyosscrapbook.blogspot.com/2008/12/formulas-used-to-calculate-kurtosis-and.html).
902
903 2008-12-28  6.4.8-4 Rick Mabry  <rick.mabry@anony...>
904   * Patch magick/display.c and PerlMagick/ContrastStretchImage() to return the
905     same results as the -contrast-stretch option.
906   * ContrastStretchImageChannel() no longer interpretted as Contast() by
907     MogrifyRegion() in PerlMagick.
908
909 2008-12-28  6.4.8-3 Rick Mabry  <rick.mabry@anony...>
910   * Reverse argument and option in Throw*InvalidArgumentException()
911     macro for proper exception message.
912   * Recognize negative geometries for -shear and -annotate (.e.g. 45x-30).
913   * Fix Y shear angle for -shear option.
914
915 2008-12-26  6.4.8-2 Cristy  <quetzlzacatenango@image...>
916   * Use GetImageArtifact() to retrieve -attentuate option value for +noise.
917   * Support reading FITS test files (reference
918     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=12799).
919   * Replace input.ttf with the public domain Tuffy.ttf font.
920   * MagickNewImage() no longer faults when parameters are incorrect (reference
921     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=12817).
922   * Allocate strings returned by XGetResourceInstance() (reference
923     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=12818).
924   * The -append gravity is relative to the container (reference
925     http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=12821).
926
927 2008-12-19  6.4.8-1 Cristy  <quetzlzacatenango@image...>
928   * Reference cache rather than acquiring when cloning an image.
929
930 2008-12-19  6.4.8-0 Cashish Kulkarni <ashkulz@redif...>
931   * Cross-compilation failure using MinGW on Linux for ImageMagick trunk
932
933 2008-12-19  6.4.8-0 Cristy  <quetzlzacatenango@image...>
934   * Add -interword-spacing option to convert.
935   * Initialize the black channel when testing the CMY colorspace (reference
936     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=12685).
937   * remove calls to exit() in MagickWand (reference
938     http://www.imagemagick.org/discourse-server/viewtopic.php?f=2&t=12772).
939   * Validate -affine arguments.
940   * Accept -attentuate as an option for convert.
941   * Properly create RGBA image if colormapped image has transparency.
942   * Support X11 geometry like this: +-4+-4;  wierd but X11 supports it.
943
944 2008-12-17  6.4.7-10 Chris Madison  <madisonblu@gmail...>
945   * Fix off-by-one problem with -shear.
946   * Clone pixel cache method when cloning an image.
947
948 2008-12-16  6.4.7-9 Anthony  <A.Thyssen@griffith...>
949   * Make "-layers Coalesce" work as it should.
950
951 2008-12-16  6.4.7-9 Sam Fisher <fisher@image...?
952   * Support > 2GB TIFF under Windows.
953
954 2008-12-12  6.4.7-8 mootools <help@mooto...>
955   * FormatMagickTime() checks to ensure the provided time is valid.
956
957 2008-12-12  6.4.7-8 Cristy  <quetzlzacatenango@image...>
958   * Add -kerning option to convert.
959   * Remove halo effect for the -scale option.
960
961 2008-12-11  6.4.7-7 Alan Wright  <alanwright.atex@google...>
962   * Fix a 1 byte overrun in Postscript coder.
963
964 2008-12-10  6.4.7-6 Cristy  <quetzlzacatenango@image...>
965   * Fix small memory leak in ExpandFilenames().
966
967 2008-12-09  6.4.7-5 Cristy  <quetzlzacatenango@image...>
968   * Fix small memory leak in LoadLocaleList().
969   * Fix small memory leak in GetProfilesFromResourceBlock().
970   * Don't forget to scale grayscale values when quanum min-is-white is set.
971
972 2008-12-08  6.4.7-4 Cristy  <quetzlzacatenango@image...>
973   * Include delegate libraries in MagickCore-config script.
974
975 2008-12-07  6.4.7-3 Cristy  <quetzlzacatenango@image...>
976   * Fix off-by-one error for -chop 0x50%.
977   * Performance improvement bilinear interpolation.
978
979 2008-12-06  6.4.7-2 Cristy  <quetzlzacatenango@image...>
980   * Support absolute paths in the include directive within a configuration
981     file.
982
983 2008-12-05  6.4.7-1 Chris Madison  <madisonblu@gmail...>
984   * Assume Log colorspace if DPX transfer is LogarithmicColorimetric.
985   * Another attempt at properly extracting the IPTC profile from a 8BIM
986     resource block.
987
988 2008-12-04  6.4.7-1 Anthony  <A.Thyssen@griffith...>
989   * AppendImage() re-written to respect gravity properly!
990     Routine simplified to a single loop for both styles of append
991
992 2008-12-03  6.4.6-9 Cristy  <quetzlzacatenango@image...>
993   * AppendImage() respects gravity.
994   * Protect against circular image list when cropping.
995   * The index variable must be long rather than unsigned long for the DCM
996     coder.
997
998 2008-12-02  6.4.6-9 Cristy  <quetzlzacatenango@image...>
999   * Use ScaleQuantumToMap() to prevent fault in SetGrayscaleImage() when
1000     quantum depth is 32.
1001
1002 2008-12-01  6.4.6-8 Cristy  <quetzlzacatenango@image...>
1003   * Global replaced accidently renamed MagickGetImagePixelColor().
1004
1005 2008-11-29  6.4.6-6 Cristy  <quetzlzacatenango@image...>
1006   * Fixed transient bug in the -white-threshold option.
1007   * -extent x256+100+100 no longer returns an exception (reference
1008     http://www.imagemagick.org/discourse-server/viewtopic.php?f=7&t=12583).
1009
1010 2008-11-27  6.4.6-5 Cristy  <quetzlzacatenango@image...>
1011   * TIFF pad is relative to bits-per-sample (reference
1012     http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=12563).
1013
1014 2008-11-27  6.4.6-5 Koshiji Masayuki  <kosiji.masayuki@da.mi...>
1015   * Support GBR raw image files.
1016
1017 2008-11-26  6.4.6-4 Cristy  <quetzlzacatenango@image...>
1018   * DPX 10 bit YUV 4:2:2 are now processed properly (reference
1019     http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=12443).
1020   * Default PDF compression to that of the image unless overwritten by
1021     the -compress option.
1022
1023 2008-11-25  6.4.6-3 Cristy  <quetzlzacatenango@image...>
1024   * Numerous pixel cache improvements including embeded support for
1025     OpenMP in a transparent manner.
1026
1027 2008-11-20  6.4.6-2 Cristy  <quetzlzacatenango@image...>
1028   * Transient bug in encipher / decipher operation (reference
1029     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=12540).
1030
1031 2008-11-14  6.4.6-1 Cristy  <quetzlzacatenango@image...>
1032   * MPC image files working again.
1033   * coders/wmf.c/lite_font_stringwidth() returns string width (reference
1034     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=12528).
1035
1036 2008-11-10  6.4.6-0 Cristy  <quetzlzacatenango@image...>
1037   * Fix temporary file leak.
1038
1039 2008-11-18  6.4.5-9 Koshiji Masayuki  <kosiji.masayuki@da.mi...>
1040   * Fix bug for RGBO image @ line, plane and partition interlace.
1041
1042 2008-11-18  6.4.5-9 Chris Madison  <madisonblu@gmail...>
1043   * Deprecate pixel methods: AcquireImagePixels(), GetImagePixels(), etc.
1044   * New pixel methods: GetVirtualPixels(), GetAuthenticPixels(), etc.
1045
1046 2008-11-15  6.4.5-7 Alexander E. Patrakov <patrakov@gmail...> 
1047   * GPS and multivalued EXIF properties support
1048
1049 2008-11-14  6.4.5-6 Manish Aggarwal <manish@circu...>
1050   * Add TransparentPaintImageChroma() to MagickCore and transparentChroma()
1051     to Magick++.
1052
1053 2008-11-10  6.4.5-6 Cristy  <quetzlzacatenango@image...>
1054   * Correct DPX frame position property label (reference
1055     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=12440).
1056   * Textures are no longer painted as the background color.
1057   * Update both fields of an EXIF resolution.
1058   * Support query-font-metrics MSL tag.
1059
1060 2008-11-01  6.4.5-4 Cristy  <quetzlzacatenango@image...>
1061   * Do not set image colorspace for the MSL modulate tag.
1062
1063 2008-11-01  6.4.5-3 Cristy  <quetzlzacatenango@image...>
1064   * Off by one error when computing affine in DrawAffineImage() (reference
1065     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=12391.
1066
1067 2008-10-30  6.4.5-2 Cristy  <quetzlzacatenango@image...>
1068   * Fixed local adaptive thresholding  when using an offset (reference
1069     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=12371.
1070   * Set SetImagePixels() rather than SyncImagePixelCache() to update
1071     the pixel cache morphology.
1072
1073 2008-10-26  6.4.5-1 Cristy  <quetzlzacatenango@image...>
1074   * Set explicit image format for BlobToImage() (reference
1075     http://www.imagemagick.org/discourse-server/viewtopic.php?f=2&t=12340).
1076   * p_thread_t is an aggregate under MinGW.
1077
1078 2008-10-20  6.4.5-0 Cristy  <quetzlzacatenango@image...>
1079   * pthread_t can be aggregate so stop treating it like its atomic.
1080   * default the WPG image size to 1 top avoid "no pixels defined in cache"
1081     exceptions.
1082
1083 2008-10-17  6.4.4-8 Anthony  <A.Thyssen@griffith...>
1084   * slight modification of the added "radial-gradient:" image generator
1085     so the radius goes to an edge rather than the corner, allowing more user
1086     control based on image size.
1087   * fix -raise N to mean -raise NxN
1088
1089 2008-10-15  6.4.4-8 Cristy  <quetzlzacatenango@image...>
1090   * Add support for inline images.
1091
1092 2008-10-10  6.4.4-7 Cristy  <quetzlzacatenango@image...>
1093   * MinGW supports both Posix threads and Windows critical sections.
1094
1095 2008-10-06  6.4.4-5 Cristy  <quetzlzacatenango@image...>
1096   * pthread_self() can be an aggregate value.
1097   * Scale pixel quantum to match PNG tRNS range (i.e. 0-255).
1098
1099 2008-10-06  6.4.4-3 Cristy  <quetzlzacatenango@image...>
1100   * Set sentinel byte for MVG coder.
1101   * fx:standard_deviation returns standard deviation now instead of mean.
1102
1103 2008-10-01  6.4.4-1 Florent Monnier  <monnier.florent@gmail...>
1104   * Support radial gradients in DrawGradientImage().
1105
1106 2008-09-26  6.4.4-1 Cristy  <quetzlzacatenango@image...>
1107   * Fix memory leak when XMP profile is corrupt.
1108   * Support filename references (e.g. convert image-%d.jpg[1-5] ...).
1109
1110 2008-09-25  6.4.4-0 Cristy  <quetzlzacatenango@image...>
1111   * Use -remap rather than -affinity.
1112   * Don't unregister a module for an image coder signature exception.
1113   * Don't assume a monochrome image is colormapped.
1114
1115 2008-09-25  6.4.4-0 Anthony <A.Thyssen@griffith...>
1116   * Attempt to fix three image "composite -displace" while also allowing use
1117     of seperate X, Y grayscale displacement maps, or a merged X=red Y=green
1118     (later transparency mask will also be added) as discussed in IM Examples,
1119     'distortion maps', but for -displace.
1120
1121 2008-09-24  6.4.3-10 Cristy  <quetzlzacatenango@image...>
1122   * Fix pixel cache race condition.
1123
1124 2008-09-23  6.4.3-10 Cristy  <quetzlzacatenango@image...>
1125   * Fixed an OTB coder bug (reference
1126     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=12119).
1127
1128 2008-09-23  6.4.3-8 Peter Fales <psfales@alcat...>
1129   * Add NULL terminator to options list to in MontageImageCommand().
1130
1131 2008-09-23  6.4.3-8 Anthony <A.Thyssen@griffith...>
1132   * Added -layers TrimBounds  which will adjust the offsets and canvas bounds
1133     to fit the current sequence of layered/animated images. The images
1134     themselves are not modified only the 'page' meta-data.  As a side-effect
1135     all offsets will become positive, with a minimal canvas width/height.
1136
1137 2008-09-22  6.4.3-8 Cristy  <quetzlzacatenango@image...>
1138   * Define _FILE_OFFSET_BITS from MAGICKCORE_FILE_OFFSET_BITS.
1139
1140 2008-09-10  6.4.3-7 Anthony <A.Thyssen@griffith...>
1141   * String Memory leak from InterpretImageProperties() in "annotate"
1142     for Command line handling in mogrify.c
1143   * Allow percent escapes in both -sparse-color and -distort argument strings.
1144   * Fix -alpha to allow Set, Copy, and Extract from command line
1145   * Fix -alpha Set so it only clears the alpha when it was previously off
1146   * Changed 'AllChannels' to be just the 'real' channels (including K).
1147   * Special handling if  +level-colors is given one color, and no seperator.
1148   * Fix 'matte' flag in DisposeImages() (for -layer dispose)
1149
1150 2008-09-01  6.4.3-7 Cristy  <quetzlzacatenango@image...>
1151   * Fix -interpolate / -compose settings.
1152   * No need to specify -endian for native floating point format.
1153   * Remove small memory leak when cloning image properties (reference
1154     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11981).
1155   * The scan delegate requires a device name, not a symbolic link.
1156   * Report alpha instead of opacity for the TXT image format (reference
1157     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=12002).
1158   * Add channel support to -motion-blur.
1159   * Set the SVG affine matrix *before* we compute the scale (reference
1160     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=12030).
1161   * Rely on 'omp critical' in the rare case where OpenMP is enabled but
1162     ImageMagick distribution is built without thread support.
1163   * Return the correct number of unique colors for colormapped image (reference
1164     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=12055).
1165   * SVG depends on MagickWand for parallel make (reference
1166     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=12099).
1167
1168 2008-09-02 6.4.3-7
1169   * Addition of 'BarrelInverse' Distortion
1170
1171 2008-08-27  6.4.3-6 Cristy  <quetzlzacatenango@image...>
1172   * Extract / embed namespace for JPEG XMP profiles (reference
1173     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11832).
1174   * Deprecate -map and replace with -affinity which supports dither methods.
1175   * Set image depth when -depth is fired.
1176   * Fix small memory leak in TIFF coder (reference
1177     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11968).
1178
1179 2008-08-24  6.4.3-5 Cristy  <quetzlzacatenango@image...>
1180   * Parallelize the colorspace transforms.
1181   * Honor gravity for -extent option (reference
1182     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11944).
1183
1184 2008-08-22  6.4.3-3 Cristy  <quetzlzacatenango@image...>
1185   * Fixed a memory leak in the TransparentPaintImage() method.
1186
1187 2008-08-20  6.4.3-2 Cristy  <quetzlzacatenango@image...>
1188   * Treat -compose as a setting.
1189   * Check for depth == 0 in GetQuantumScale() (reference
1190     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11921).
1191   * Fix CIN coder scanline length (reference
1192     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11922).
1193
1194 2008-08-20  6.4.3-1 Cristy  <quetzlzacatenango@image...>
1195   * Add $(MAGICKWAND_LIBS) dependency to the PerlMagick Makefile (reference
1196     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11908).
1197   * Fix configure script to configure the JBIG delegate library (reference
1198     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11907).
1199   * Error in indexed PNG output if number of colors <= 16 (reference
1200     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11905).
1201
1202 2008-08-18  6.4.3-0 Cristy  <quetzlzacatenango@image...>
1203   * Always reinterpret %[fx:] properties.
1204   * Composite based on the composite image compose operator.
1205
1206 2008-08-14  6.4.2-10 Cristy  <quetzlzacatenango@image...>
1207   * Add --coder-path and --filter-path options to MagickCore-config to
1208     support the Magick Coder and Image Filter kits.
1209
1210 2008-08-17  6.4.2-9 Anthony <anthony@griffith...>
1211   * -sparse-color option completed with inital set of methods.
1212   * -distort Barrel arguments expanded.
1213
1214 2008-08-14  6.4.2-9 Cristy  <quetzlzacatenango@image...>
1215   * The -draw option no longer returns an error when for # like .6 (reference
1216     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11879).
1217
1218 2008-08-14  6.4.2-9 Cristy  <quetzlzacatenango@image...>
1219   * New dithering selection option, -dither Floyd-Steinberg or
1220     -dither Riemersma.
1221
1222 2008-08-10  6.4.2-8 Anthony <anthony@griffith...>
1223   * Added new distort "Polar" and "DePolar" due to Forum Discussions
1224
1225 2008-08-07  6.4.2-8 Cristy  <quetzlzacatenango@image...>
1226   * Change MPEG delegate from mpeg2decode/mpeg2encode to ffmpeg (reference
1227     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11827).
1228   * Extract embedded XMP and EXIF profiles froma Photoshop resource block.
1229   * Support -compose option in the compare program.
1230
1231 2008-08-04  6.4.2-7 Cristy  <quetzlzacatenango@image...>
1232   * Support -fx scientific-notation (e.g. '2.0*3.81469e-06').
1233   * Substitute DistortImage() with 'AffineProjectionDistortion' for
1234     the older DrawAffineImage() in AffineTransformImage().
1235   * Apply Sam Hocevar's patch to replace  Hilbert-Peano curve dithering with
1236     Floyd Steinberg.
1237   * Added -virtual-pixel method VerticalTile as a complement to HorizontalTile
1238
1239 2008-08-02  6.4.2-6 Anthony <anthony@griffith...>
1240   * Added -virtual-pixel method HorizontalTile suitable for generating 360
1241     degree Arcs and Polar Distorts.
1242
1243 2008-07-31  6.4.2-6 Cristy  <quetzlzacatenango@image...>
1244   * Patch -fx to properly recognize maxima and minima.
1245   * Add channel specifier to -fx depth, mean, maxima, minima, and
1246     standard_deviation (e.g. depth.r).
1247   * Properly append .magick to the USERPROFILES path (reference
1248     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11806).
1249
1250 2008-07-30  6.4.2-6 Anthony <anthony@griffith...>
1251   * Added a  "-set option:distort:scale"  which scales the output 'view'
1252     by the amount given.  This is directly useful for doing 'super-sampled'
1253     distorts, just set this, the scale the result back to a normal size.
1254
1255 2008-07-27  6.4.2-5 Anthony <anthony@griffith...>
1256   * Rewrite on coefficent handlig for DistortImages so allow for generation
1257     by other operators (SparseColor), and addition of verbose output of
1258     equivelent -fx functions for DistortImages to report of the internal
1259     coefficents that was calculated, and who they are used.
1260   * Initial implementation of SparseColor for interpolated gradients from
1261     sparsely seperated points of color (or posibily other forms of arguments)
1262   * New distortion Barrel as defined by Helmut Dersch options A,B,C,D
1263     on his web page  http://www.all-in-one.ee/~dersch/barrel/barrel.html
1264     And as developed by Fred WeinHaus in his PinBarrel script
1265
1266 2008-07-20  6.4.2-5 Cristy  <quetzlzacatenango@image...>
1267   * Certain corrupt GIF images no longer hang (reference
1268     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11723).
1269   * Read more than one image (if they exist) from DJVU image files.
1270   * Don't set image depth in histogram coder (references
1271     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11752).
1272
1273 2008-07-17  6.4.2-4 Cristy  <quetzlzacatenango@image...>
1274   * Fixed cache nexus threading problem to avoid spurious assertions when
1275     calling the DistortImage() method.
1276
1277 2008-07-17  6.4.2-4 Anthony <anthony@griffith...>
1278   * New distortion  Shepards which provide semi-localized distorts of control
1279     points within an image, as first developed for IM by Frew Weinhaus in his
1280     ShapeMorph script.   http://www.fmwconcepts.com/imagemagick/shapemorph/
1281     It's almost like taffy pulling!
1282
1283 2008-07-12  6.4.2-2 Anthony <anthony@griffith...>
1284   * Separate coefficient calculation from DistortImages (future development)
1285   * Perspective and Bilinear Distortions fallback to Affine
1286     when less than 4 point pairs are provided.
1287   * Affine Distortion now handles 2 point pairs (SRT of a single line)
1288     and a simple translation if only a single point pair is provided.
1289   * Added 'verbose' output of some of the distortion equations generated
1290   * Initial addition of polynomal distortion (incomplete - not working yet)
1291
1292 2008-06-29  6.4.2-2 Cristy  <quetzlzacatenango@image...>
1293   * Add log2 and round as -fx operators.
1294   * Add log and round as -evaluate operator.
1295   * Add -deskew option to straighten an image.
1296
1297 2008-06-22  6.4.2-1 Cristy  <quetzlzacatenango@image...>
1298   * Use the source image interpolation method when drawing an affine image.
1299
1300 2008-06-24  6.4.2-1 Anthony <anthony@griffith...>
1301   * Added new operator  +/-level-colors which will 'level' images based
1302     on colors to use for the black and white points. This lets to adjust
1303     the image in terms of mapping the given colors from/to black and white
1304     respectivally.
1305
1306 2008-06-23  6.4.2-0 Christian Lackas <christian@lacka...>
1307   * Fix a problem with calling mpeg2encode with parameters (%o/%i) in wrong
1308     order.
1309
1310 2008-06-22  6.4.2-0 Cristy  <quetzlzacatenango@image...>
1311   * Refactor additional ImageMagick algorithms for OpenMP support.
1312
1313 2008-06-25  6.4.1-9 Cristy  <quetzlzacatenango@image...>
1314   * Add pow as an -evaluate operation, using normalized values
1315
1316 2008-06-18  6.4.1-9 Anthony <anthony@griffith...>
1317   * Added a  LevelizeImageChannels() which is simular to LevelImageChannels()
1318     Function maps black and white values to the given level values.
1319     Rather than mapping the given level values to black and white.
1320     Bacically a 'reverse-level' function, with different input args.
1321   * Set  +level  or a '!' flag in -level or LevelImage() to call
1322     the new 'reverse-level' function LevelizeImageChannels().
1323   * More work on IsMagickColorSimular() to fix relationship between
1324     transparent-black and opaque-black, which was matched as 'simular'.
1325     Also attempts to fix 'K' channel handling for CMYK colorspace.
1326     More work on this to come.
1327
1328 2008-06-25  6.4.1-9 Cristy  <quetzlzacatenango@image...>
1329   * The TXT format correctly reports alpha channel (reference
1330     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11478).
1331   * MONOTCHROME1 Dicom images are not longer inverted (reference
1332     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11492).
1333
1334 2008-06-13  6.4.1-8 Anthony <anthony@griffith...>
1335   * Fixed IsMagickColorSimular() as used by -opauqe and -transparent
1336     so as to understand that the Hue Channel is cyclic by nature
1337
1338 2008-06-08  6.4.1-8 Cristy  <quetzlzacatenango@image...>
1339   * The -sketch option is working again (reference
1340     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11454).
1341
1342 2008-06-08  6.4.1-7 Cristy  <quetzlzacatenango@image...>
1343   * More algorithms refactored to support a threaded cache view.
1344   * EPS2 output only 1/3 of image when using LZW or rle compress (reference
1345     http://www.imagemagick.org/discourse-server/viewforum.php?f=3).
1346   * ISO C++ 1998 does not support 'long long' (reference
1347     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11405).
1348   * Patch GetMagickMemoryHandlers() to return the properly return the memory
1349     handler addresses.
1350   * Generate histogram comment if # unique colors exceed 1024 (reference
1351     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11434).
1352
1353 2008-06-03  6.4.1-6 Marton Bokor  <marton.bokor@gfthu....>
1354   * Reading EMF files containing non-ascii characters no longer fails for
1355           UTF8 encoded paths on Windows XP.
1356
1357 2008-06-03  6.4.1-6 Cristy  <quetzlzacatenango@image...>
1358   * The -colorspace option is an operator, not a setting.
1359
1360 2008-05-31  6.4.1-5 rsnel <rik@snel....>
1361   * gif.c misreads Gifs in which LZW codes are split across three datablocks.
1362
1363 2008-05-31  6.4.1-4 Matthew Clark <mclark@gorge...>
1364   * Patches to the JPEG and DCM coders to fix a few problems reading
1365     certain DCM image types.
1366
1367 2008-05-15  6.4.1-4 Cristy  <quetzlzacatenango@image...>
1368   * Interpreting the -set option is no longer delayed.
1369   * Add AcquireCacheViews() and DestroyCachewViews() to the API.
1370   * Call DrawAffineImage() instead of CompositeImage() (reference
1371     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11288).
1372   * Throw exception for TIFF compression not support (reference
1373     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11289).
1374   * The +opaque option now recognizes its required argument (reference
1375     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11298).
1376   * The -background and -virtual-pixel settings are now applied correctly
1377     across parenthesis.
1378   * Only reset the exception signature if the relinquish memory is MagickTrue.
1379   * Correct recolor equation for computing opacity (referencee
1380     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11346).
1381   * Set midpoint when scaling JP2 images.
1382   * Semaphores must be passed by reference when destroyed for reliable thread
1383     locks.
1384   * Updated Matlab coder (thanks to Jaroslav Fojtik).
1385
1386 2008-05-13  6.4.1-3 Cristy  <quetzlzacatenango@image...>
1387   * MagickGetResource(): resources are MagickSizeType not unsigned long.
1388
1389 2008-05-11  6.4.1-2 Cristy  <quetzlzacatenango@image...>
1390   * Import: properly handle a hierarchy of subwindows under X11.
1391   * Refactor quantum pixel processor to inprove ease of use and speed.
1392
1393 2008-05-09  6.4.1-2 Leonardo de Paula Rosa Piga <lpiga@terra...>
1394   * OpenMP patch for sepia-tone effect.
1395
1396 2008-05-08  6.4.1-2 Bruno Cardoso Lopes <bruno.cardoso@gmail...>
1397   * OpenMP patch for NormalizeImage() & TintImage()
1398
1399 2008-05-06  6.4.1-2 <cristiannomartins@gmail...>
1400   * OpenMP patch for GetImageChannelDepth().
1401   * Set depth to 32 when saving MIFF HDRI image files.
1402
1403 2008-05-05  6.4.1-2 <joao.vita@gmail...>
1404   * OpenMP patch for OilPaintImage Function
1405
1406 2008-05-05  6.4.1-2 Sean Patrick Burke  <seanburk@gmail...>
1407   * Update IPLab coder (reference
1408     http://www.imagemagick.org/discourse-server/viewtopic.php?f=2&t=11200).
1409
1410 2008-05-02  6.4.1-1 Cristy  <quetzlzacatenango@image...>
1411   * Return correct result for -fx luminence.
1412   * Restore missing break so that PGM images remain PGM.
1413   * Speed up the processing of ASCII PNM files.
1414   * Return the correct number of MNG images for PingImage().
1415
1416 2008-05-01  6.4.1-0 Cristy  <quetzlzacatenango@image...>
1417   * Remove C++ style comments from source.
1418   * Center motion blur kernel.
1419   * Reenable dithering for -monochrome option.
1420
1421 2008-04-24  6.4.0-11 Cristy  <quetzlzacatenango@image...>
1422   * For color reduction, use maximum tree depth if image has 1024 or less
1423     unique colors.
1424   * Use a uniform convolution filter for motion blur (reference
1425     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11122).
1426   * Add 'mean' and 'std' symbols to the Fx expression parser.
1427
1428 2008-04-20  6.4.0-10 Chris Madison  <madisonblu@hotma...>
1429   * Updated to the latest autoconf/automake/libtool scripts.
1430   * Default to HSL colorspace when modulating (reference
1431     http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=11073).
1432   * The -regard-warnings option properly returns a program status of 1 if and
1433     only if a warning or error exception is thrown.
1434   * Report 'no clip path defined' exception for -clip-path option (reference
1435     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11098).
1436
1437 2008-04-16  6.4.0-8 Cristy  <quetzlzacatenango@image...>
1438   * Distinquish between pre and post processing of image list options.
1439   * Return MagickTrue if InvokeDynamicImageFilter() does not generate an
1440     exception (reference
1441                 http://www.imagemagick.org/discourse-server/viewtopic.php?f=2&t=11065).
1442
1443 2008-04-16  6.4.0-7 Glenn Randers-Pehrson <glennrp@image...>
1444   * Instead of masking the PNG tRNS values when reducing from 16-bit,
1445     set image->matte to MagickFalse and emit a warning.  This will produce
1446     behavior similar to that of libpng-1.2.27 (and libpng-1.2.19 and earlier).
1447
1448 2008-04-12  6.4.0-7 Cristy  <quetzlzacatenango@image...>
1449   * Fix fault for animate -window root image.gif.
1450   * Use GetImagePixels() rather than SetImagePixels() when making multiple
1451     passes and setting image pixels (reference
1452     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=11022).
1453
1454 2008-04-10  6.4.0-6 Cristy  <quetzlzacatenango@image...>
1455   * Compile error in coders/avi.c when JPEG delegate library is unavailable.
1456
1457 2008-04-09  6.4.0-5 Glenn Randers-Pehrson <glennrp@image...>
1458   * Mask the PNG tRNS values when reducing from 16-bit, in accordance with
1459     the PNG specification, instead of scaling them.
1460
1461 2008-04-09  6.4.0-5 Glenn Randers-Pehrson <glennrp@image...>
1462   * Revised png.c to avoid saving unknown chunk types that will never
1463     be used later.  This prevents the vulnerability described in
1464     CVE-2008-1382, with respect to all unknown chunks except vpAg.
1465     To handle an invalid, zero-length vpAg chunk properly will require
1466     libpng-1.2.27 or later.
1467
1468 2008-04-04  6.4.0-5 Cristy  <quetzlzacatenango@image...>
1469   * Use mplayer delegate if ImageMagick does not grok AVI op code.
1470   * Use proper rounding for the -fx intensity expression.
1471
1472 2008-03-26  6.4.0-4 Cristy  <quetzlzacatenango@image...>
1473   * Fix +swap option so it no longer throws an assertion.
1474   * Return correct min/max for grayscale JPEG images (e.g. -format %[min]).
1475
1476 2008-03-26  6.4.0-1 Cristy  <quetzlzacatenango@image...>
1477  * Rewrote patch so that writing pyramid TIFF images no longer fails if a
1478    tile size is specified (e.g. ptif:image.tif[128x128]).
1479  * Malformed use of caption no longer consumes memory (reference
1480    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10914).
1481  * Don't run Ghostscript twice (reference
1482    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10922).
1483
1484 2008-03-21  6.4.0-0 Cristy  <quetzlzacatenango@image...>
1485   * SpreadImage() no longer introduces noise into the resulting image (reference
1486                 http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10892).
1487   * Properly handle min-is-white TIFF gray scale images.
1488   * Use CompositeImage() instead of DrawAffineImage() if the affine expansion
1489     factor is 1.0.
1490
1491 2008-03-20  6.3.9-10 Cristy  <quetzlzacatenango@image...>
1492   * Writing pyramid TIFF images no longer fails if a tile size is specified
1493     (e.g. ptif:image.tif[128x128]).
1494   * Reset page geometry when interactively cropping an image with the display
1495     program.
1496
1497 2008-03-18  6.3.9-9 Cristy  <quetzlzacatenango@image...>
1498   * With a single swap argument should swap the image with the *last* image.
1499
1500 2008-03-16  6.3.9-8 Cristy  <quetzlzacatenango@image...>
1501   * Make sure we don't sync a blob after it has been closed.
1502
1503 2008-03-14  6.3.9-7 Cristy  <quetzlzacatenango@image...>
1504   * Patch mpeg:encode delegate to properly produce an MPEG image sequence.
1505
1506 2008-03-11  6.3.9-6 Cristy  <quetzlzacatenango@image...>
1507   * Support both GTK and CAIRO interfaces to RSVG (reference
1508     ttp://www.imagemagick.org/discourse-server/viewtopic.php?f=2&t=10802).
1509   * Display colormapped PNG images with alpha properly (reference
1510     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10819).
1511
1512 2008-03-09  6.3.9-5 Cristy  <quetzlzacatenango@image...>
1513   * Define inline to _magickcore_inline (to satisfy HP's aCC compiler).
1514
1515 2008-03-08  6.3.9-4 Cristy  <quetzlzacatenango@image...>
1516   * The rsvg delegate library depends on cairo-svg.
1517   * Account for min-is-white 8-bit gray TIFF images.
1518
1519 2008-02-29  6.3.9-2 Cristy  <quetzlzacatenango@image...>
1520   * Add support for the Postable Document Archive Format.
1521   * Add support for Braille images.
1522   * Add support for DDS images (contributed by Bianca van Schaik).
1523   * Add GetImageAlphaChannel() method.
1524   * PSD clipping paths are once again recognized.
1525
1526 2008-02-24  6.3.9-1 Cristy  <quetzlzacatenango@image...>
1527   * Return the actual image format for HTTP: or FTP: format (reference
1528         http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=10715).
1529   * Fix so image.quantize(true) returns error as expected (reference
1530     http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=10735).
1531
1532 2008-02-20  6.3.9-0 Cristy  <quetzlzacatenango@image...>
1533   * Fixed a small memory leak (8 bytes) in TransformImages().
1534   * Render to Cairo surface rather than a GDK buffer when rendering SVG.
1535   * Identify now reports both actual and reported image depths (reference
1536     http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=10716).
1537
1538 2008-02-17  6.3.8-10 Cristy  <quetzlzacatenango@image...>
1539   * Speed up converting large PDF/PS images when only selecting a few pages
1540     (e.g. pdffile.pdf[195-199]).
1541   * Deprecate HSLTransform() and TransformHSL().
1542
1543 2008-02-16  6.3.8-9 Cristy  <quetzlzacatenango@image...>
1544   * Fix Magick++-config script to reflect the MagickWand / MagickCore
1545     dependencies.
1546
1547 2008-02-14  6.3.8-7 Cristy  <quetzlzacatenango@image...>
1548   * Promote colormapped to truecolor images when enciphering.
1549
1550 2008-02-08  6.3.8-6 Cristy  <quetzlzacatenango@image...>
1551   * Add EncipherImage() / DecipherImage() methods.
1552   * Add -encipher / -decipher options to the command-line utilities.
1553
1554 2008-02-03  6.3.8-5 Cristy  <quetzlzacatenango@image...>
1555   * New Unix/Linux refactoring (should be transparent since changes are
1556     reflected in Magick-config and ImageMagick.pc pkg-config files):
1557       /usr/local/include => /usr/local/include/ImageMagick
1558       libMagick => libMagickCore
1559       libWand => libMagickWand
1560       Magick-config (deprecated) => MagickCore-config
1561       Wand-config (deprecated) => MagickWand-config
1562       Add Magick++-config, MagickCore.pc, MagickWand.pc, Magick++.pc
1563
1564 2008-01-28  6.3.8-3 Cristy  <quetzlzacatenango@image...>
1565   * Liquid rescale limits the final size to twice the original size (reference
1566     http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=10536).
1567   * Read EXIF data in TIFF images; writing is pending until we can figure out
1568     how to use the libtiff delegate library to write EXIF data.
1569
1570 2008-01-24  6.3.8-2 Cristy  <quetzlzacatenango@image...>
1571   * Add support for liquid rescaling (e.g. -liquid-rescale).
1572   * Support a ^ meta character in an image geometry (.e.g
1573     convert 640x480.png -resize 240^ returns a 320x240 result).
1574
1575 2008-01-20  6.3.8-1 Cristy  <quetzlzacatenango@image...>
1576   * Fix transient bug where "identify -format '%w;%[exif:Model]'" failed to
1577     return camera model number.
1578
1579 2008-01-14  6.3.8-0 Cristy  <quetzlzacatenango@image...>
1580   * Monochome EPS3 images are no longer corrupt (reference
1581     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10422).
1582   * Eliminate memory corruption with broken PICT image (reference
1583     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10447).
1584   * Return a Grayscale colorspace for grayscale DPX image (previously
1585     returned Log colorspace).
1586   * Fix -g option for PCL6 support (reference
1587     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10462).
1588
1589 2008-01-08  6.3.7-10 Cristy  <quetzlzacatenango@image...>
1590   * Only read ICON alpha mask if BPP is <= 16.
1591   * Add support for +opaque and +transparent (requested by Anthony).
1592   * Throw an exception *before* we call wmf_api_destroy() (reference
1593     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10420).
1594
1595 2008-01-01  6.3.7-9 Cristy  <quetzlzacatenango@image...>
1596   * Use explicit format specifier to render transparent Adobe Illustrator
1597     files (i.e. convert ai:image.ai image.png).
1598   * Set RSVG base URI (patch provided by tsdineen).
1599
1600 2007-12-20  6.3.7-7 Cristy  <quetzlzacatenango@image...>
1601   * `Magick-config --version` returns Q16 instead of
1602     Q@MAGICKCORE_QUANTUM_DEPTH@.
1603   * Permit commas in numbers in certain locales (e.g. german +100,000).
1604
1605 2007-12-13  6.3.7-5 Cristy  <quetzlzacatenango@image...>
1606   * Added an exception reason to BlobToImage() in the event an image has no
1607     magic number and neither the image magick or filename is set.
1608   * Do not pass PhotoYCC data thru gamma-corrected lookup-table.
1609   * Fix bug in GetEXIFProperty() (reference
1610     https://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10300).
1611
1612 2007-12-12  6.3.7-4 Cristy  <quetzlzacatenango@image...>
1613   * Adding comments to your image is now possible with the display program.
1614
1615 2007-12-09  6.3.7-3 Anthony <anthony@griffith...>
1616   * Adjusted -clut multiplyer for correct handling of
1617     "-interpolation Integer" in color lookup.
1618
1619 2007-12-01  6.3.7-3 Cristy  <quetzlzacatenango@image...>
1620   * Fix 'insufficient image data' for DCM format (reference
1621     https://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10227).
1622   * Force a colormapped image if Palm bits-per-pixel < 16.
1623   * Fix multiple problems with Palm Data Base reader (patch from
1624     1tms@gmx.d...).
1625   * Do not exit after first image with the display --immutable option.
1626   * Update autoconf/automake/libtool configuration files.
1627   * Add support for resource limit units (e.g. -limit memory 16mb).
1628   * Return original image if gaussian blur sigma is 0.0.
1629   * Colormapped multi-image PDF's are no longer corrupt (reference
1630     https://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10258).
1631
1632 2007-11-27  6.3.7-2 Anthony <anthony@griffith...>
1633   * Finalisation of new resize filters, "Lagrange" self-windowing filter
1634     now adjusts automatically with different support window size.
1635   * Added "Bohman" (another 2'rd order cosine function) and "Bartlett"
1636     (triangluar) resize windowing filters.
1637   * Adjusted -clut to use a grayscale image (with no alpha) to select colors
1638     from the Lookup Table image.
1639
1640 2007-11-26  6.3.7-2 Cristy  <quetzlzacatenango@image...>
1641   * Not all DCM tags were being saved as image attributes (patch provided by
1642     jcupitt@gmail...).
1643   * Normalize pixel values when quantum format is floating-point.
1644   * Initialize the pixel sum to zero when averaging image pixels.
1645
1646 2007-11-23  6.3.7-1 Anthony <anthony@griffith...>
1647   * Bug fix in height calculation for -layers merge operation
1648
1649 2007-11-02  6.3.7-0 Cristy  <quetzlzacatenango@image...>
1650   * Add support for SCT grayscale images.
1651   * Fixed transparancy bug for the ICO image format.
1652   * Fixed small memory leak in the caption and label coders.
1653   * Fixed -threshold option to return all white for -threshold 0 (reference
1654     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10126).
1655
1656 2007-11-06  6.3.6-10 Chris Madison  <madisonblu@hotma...>
1657   * Corrected CGM delegate command in config/delegate.xml.
1658
1659 2007-11-05  6.3.6-9 Chris Madison  <madisonblu@hotma...>
1660   * Reclassified X server open error from fatal to non-fatal.
1661   * New SetImageAlphaChannel() method to activate, deactivate, reset, or
1662     set the image alpha channel.
1663   * Patch for Scanalytics IPLab image format for non 8-bit images
1664     (contributed by Sean Burke).
1665
1666 2007-11-04  6.3.6-8 Chris Madison  <madisonblu@hotma...>
1667   * Remove ctrl-M characters on in various source files.
1668   * Fix signature for Magick++ averageImages() regression tests for HDRI.
1669   * Only invoke PerlMagick x11 regression test if DISPLAY variable is set.
1670
1671 2007-11-03  6.3.6-7 Chris Madison  <madisonblu@hotma...>
1672   * MAGICK_ERX_SRCS should be MAGICK_EXR_SRCS in coders/Makefile.am.
1673
1674 2007-11-02  6.3.6-6 Cristy  <quetzlzacatenango@image...>
1675   * Upgrade to FPX version libfpx-1.2.0.14 (reference
1676     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10041).
1677   * Modules are searched first in the directories specified by the environment
1678     variables, and then -- if the desired module is not found -- in the
1679     compiled-in path.  (reference
1680     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10039).
1681
1682 2007-11-01  6.3.6-5 Cristy  <quetzlzacatenango@image...>
1683   * Update FPX regression test reference images.
1684   * Fixed Magick++ compile error for Sun Studio 10 compiler.
1685
1686 2007-10-25  6.3.6-4 Cristy  <quetzlzacatenango@image...>
1687   * The -equalize option now respects the -channel option.
1688
1689 2007-10-23  6.3.6-4 Anthony <anthony@griffith...>
1690   * Additional Filters:  Welsh, Parzen, Lagrangian
1691   * Addition of Cubic filter B,C controls
1692   * 'verbose' filter plotting output using  -define "filter:verbose"
1693
1694 2007-10-20  6.3.6-3 Anthony <anthony@griffith...>
1695   * Further expandsion and handling of filters with expert options.
1696     -filter selects from a table of standard filter settings, while
1697     expert options allow complete selection of filter, windowing, support
1698     and blurring options.  Includes automatic switch from Sinc to Bessel
1699     for operators using 2 dimentional cylindrical filter, rather than
1700     two pass 1 dimentional orthogonal filters.
1701
1702 2007-10-14  6.3.6-3 Cristy  <quetzlzacatenango@image...>
1703   * Obsolete -support (set filter blur factor)
1704   * Expandsion to add -set/define filter options
1705
1706 2007-10-12  6.3.6-2 Anthony <anthony@griffith...>
1707   * Least Squares coordinate handling added for -distort methods Affine,
1708     Perspective, Bilinear.   This allows for more than the minimal number of
1709     coordinates to be used to 'fit' a distortion function to an image.
1710     This addition will allow the use of image registration to generate
1711     panarama overviews and better geographical coordinate correction.
1712   * Cosolidated the simular methods FlattenImage() and MosaicImage()
1713     into a new layers function MergeImageLayers() method, adding 'flatten'
1714     and 'mosaic' layer methods.
1715   * Addition of another simular layers method 'merge' which 'unlocks' the
1716     normal flatten/mosaic layer merger from the origin, The resulting image
1717     will have a virtual canvas of minimal size with an offset. Also images
1718     with negative offsets will not be clipped by the 'merge' form of the
1719     command.  This was created for better layering of distorted images, such
1720     as panarama overlays.
1721   * Bug fix in handling transparency for EWA resampling.
1722   * Access to Resize Filter Functions from resize.c (for resample.c)
1723     with posible future filter sources... Acquire/Destory/Call ResizeFilter()
1724   * All resize filters added to resampling, but filter handling is incomplete.
1725
1726 2007-10-05  6.3.6-2 Cristy  <quetzlzacatenango@image...>
1727   * The box filter no longer produces a black grid when resizing an image
1728     under Mac OS X.
1729   * Respect cropbox for PDF with a subimage specification (e.g.
1730         image.pdf[1-3]).
1731   * Detect proper PDF bounding box when offsets are negative.
1732
1733 2007-10-02  6.3.6-1 Cristy  <quetzlzacatenango@image...>
1734   * Speed up the Fx interpreter.
1735   * Use ULL not ui64 for MinGW 64-bit constants.
1736   * Call SyncCacheView() instead of SyncImagePixels() in WaveImage().
1737   * Close all references to a pixel cache on disk before removing the temporary
1738           file as required under Windows.
1739
1740 2007-09-29  6.3.6-0 Anthony <anthony@griffith...>
1741   * Added Scaling 'derivitives' to -distort Arc, so image arcing is now
1742     sharp and clear as you approach the center of the distort.
1743   * Added  " -set option:distort:viewport 'geometry' " special option
1744     that can be used to override the output image size and offset.
1745   * Fixed experimental use of -filter and -support in Resampling (more later).
1746   * Changed order for coordinate arguments in -distort (for later leastsq
1747     multiple coordinate distortion function fitting)
1748
1749 2007-09-22  6.3.6-0 Cristy  <quetzlzacatenango@image...>
1750   * Check the API version and quantum depth before loading a coder module or
1751           image filter (reference
1752     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9780).
1753   * Add exception to the image filter signature.
1754   * Get the execution path under Mac OS X.
1755   * TIFFTAG_STRIPBYTECOUNTS requires a uint32 pointer (magick/compress.c).
1756   * Fixed memory leak in CloneString() (reference
1757     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9763).
1758   * Set S_IRUSR | S_IWUSR | S_IRGRP mode when writing a file in
1759     CopyDelegateFile().
1760
1761 2007-09-18  6.3.5-9 Anthony <anthony@griffith...>
1762   * Bug fix for +distort in Perspective, also effected PerspectiveProjection
1763
1764 2007-09-17  6.3.5-10 Cristy  <quetzlzacatenango@image...>
1765   * Replace all InterpolatePixelColor() calls to use the ResamplePixelColor()
1766     method instead.
1767   * Map the display program pan icon window for each oversized image.
1768   * The ufraw delegate does not like quotes around the output filename.
1769   * Adjust the sensitivity of a few PerlMagick tests to pass the validation on
1770     a 64-bit FreeBSD system.
1771   * The -level option now works properly for colormapped images.
1772   * Allow Extrapolated blending of images using -blend
1773        http://netpbm.sourceforge.net/doc/extendedopacity.html
1774
1775 2007-09-12  6.3.5-9 Anthony <anthony@griffith...>
1776   * Major Addition,  Area Resampling Functions, (scaled interpolation)
1777     for pixel lookup in Distortion functions.  This improves the look in
1778     areas of minification enormousally, especially in situations of infinite
1779     tiling and horizon views.  All virtual pixel methods have been handled
1780     to minimise computation time involved with area resampling.  To use the
1781     new function distortions need to be able to determine scaling vectors
1782     (distortion function derivitives) for correct working.  All
1783     -distort methods, except Arc, uses scaled area resampling.
1784   * Improvements to perspective distort method, to include the correct
1785     differentation between the 'ground' on which the image lies, and the
1786     'sky', the color of which can be set using the -mattecolor setting
1787     (as the distortion invalid pixel color). Background color is retains
1788     for surrounding ground areas. The horizon is also correct anti-aliased
1789     and transparent colors are also allowed, allowing you to add backdrops
1790     of gradients and patterns.
1791
1792 2007-09-04  6.3.5-9 Cristy  <quetzlzacatenango@image...>
1793   * Read/Write Scanalytics IPLab image format (contributed by Sean Burke).
1794   * Patched ReadBlobString() to fix a off-by-one vulnerability (alert from
1795     iDefense).
1796   * Patched ReadDIBImage() to fix a sign extension vulnerability (alert from
1797     iDefense).
1798   * Patched AllocateImageColormap() to fix an integer overflow vulnerability
1799     (alert from iDefense).
1800   * Patched ReadDCMImage() to fix an integer overflow vulnerability
1801     (alert from iDefense).
1802   * Patched ReadDIBImage() to fix an integer overflow vulnerability
1803     (alert from iDefense).
1804   * Patched ReadXBMImage() to fix an integer overflow vulnerability
1805     (alert from iDefense).
1806   * Patched ReadDCMImage() to fix an denial of service vulnerability
1807     (alert from iDefense).
1808   * Patched ReadXCFImage() to fix an denial of service vulnerability
1809     (alert from iDefense).
1810   * If image size changes, don't trust DPX orientation attributes.
1811
1812 2007-09-04  6.3.5-9 Gozer404
1813   * Add French to the messaging system (reference
1814     http://www.imagemagick.org/discourse-server/viewtopic.php?f=2&t=9601).
1815   * Add -fopenmp to MAGICK_PCFLAGS (reference
1816    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9608).
1817
1818 2007-08-14  6.3.5-7 Cristy  <quetzlzacatenango@image...>
1819   * Add -alpha {activate,deactivate,reset} option to activate, deactivate, or
1820     reset the alpha channel.
1821   * Render proper image labels for VID coder.
1822   * Resolved a conflict for the -list option.  Use -list font to list
1823           ImageMagick fonts and -list type to list image types.
1824   * Catch any errors returned by pthread_mutex_init() (problem report
1825     from devman@gmx-t...).
1826   * TransformHSL() returns a proper hue component.
1827   * Added -clut option and the ClutImage() method.
1828   * Fix glyph memory leak in AnnotateImage (reference
1829     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9523).
1830   * Rename analyze.c to Analyze.c (reference
1831     ttp://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9538).
1832
1833 2007-08-07  6.3.5-6 Anthony  <anthony@griffith...>
1834   * Enabled use of +distort to auto resize destination image to 'bestfit'
1835     the distorted input image.  This also enabled the use of virtual canvas
1836     offsets in source and destination images for most distortion methods.
1837
1838 2007-08-05  6.3.5-6 Cristy  <quetzlzacatenango@image...>
1839   * Remove atexit in Magick++ code to avoid possible client crash (reference
1840     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9270).
1841
1842 2007-08-01  6.3.5-5 Cristy  <quetzlzacatenango@image...>
1843   * Read/Write Scanalytics IPLab image format (contributed by Sean Burke).
1844
1845 2007-07-30  6.3.5-5 Anthony  <anthony@griffith...>
1846   * Added -distort arc.  This update also allows the destination image
1847     size and offset to be set according to the specific distortion being
1848     applied.
1849
1850 2007-07-29  6.3.5-5 Cristy  <quetzlzacatenango@image...>
1851   * Set the -poloroid border color with the -bordercolor option.
1852
1853 2007-07-25  6.3.5-4 Cristy  <quetzlzacatenango@image...>
1854   * Remove extranous break statement so -type option properly sets the
1855     image_info->type member (reference
1856     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9261).
1857
1858 2007-07-21  6.3.5-4 Anthony  <anthony@griffith...>
1859   * Allow the use of optional arguments in -distort SRT
1860
1861 2007-06-29  6.3.5-0 Anthony  <anthony@griffith...>
1862   * Initial addition of three Affine Distortions to -distort with the affine
1863     mapping defined by the use of;  an Affine Matrix, Coordinates of Triangles,
1864     or separate Scale-Rotate-Translate actions.
1865
1866 2007-06-18  6.3.5-0 Cristy  <quetzlzacatenango@image...>
1867   * Fix X11 font ascender.
1868   * Add -distort option.
1869   * Add random noise option (e.g. +noise random).
1870   * Many internal algorithms are now threaded to take advantage of speed-ups
1871     offered by the new dual and quad-core processor technologies.
1872     and quad-core processor technology.
1873   * Tiff images in the LAB colorspace are no longer identified as RGB
1874     (reference http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9015).
1875   * Update image color_profile and iptc_profile members in the JPEG coder
1876     (reference http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9063);
1877
1878 2007-06-13  6.3.4-10 Cristy  <quetzlzacatenango@image...>
1879   * Fix composite mask bug (reference
1880     http://www.imagemagick.org/Usage/bugs/composite_mask/).
1881   * Speed up GetPixelOpacity() method (patch from seth@price...).
1882   * Set icon image width/height before allocating the image colormap.
1883   * Remove Photoshop string segment from JPEG profile (reference
1884     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9006).
1885
1886 2007-06-11  6.3.4-9 Cristy  <quetzlzacatenango@image...>
1887   * Converting a jpg to pdf is creating an empty pdf object (reference
1888     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=8954).
1889   * Respect the '-set type:hinting off option' (bug report from Richard
1890     Jones).
1891   * WritePSDImage vulnerable to exploitable heap corruption (reference
1892     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=8967).
1893
1894 2007-06-09  6.3.4-8 Cristy  <quetzlzacatenango@image...>
1895   * SetMagickRegistry() post-increment the value 'id' (reference
1896     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=8944).
1897
1898 2007-06-02  6.3.4-6 Cristy  <quetzlzacatenango@image...>
1899   * Read/write 10 & 12-bit packed DPX images.
1900   * Reduce stack requirements for messaging system.
1901   * Small memory leak for raw profiles in the PNG coder.
1902
1903 2007-06-01  6.3.4-5 Glenn <glennrp@image...>
1904   * Added GIF, JPEG, and PNG interlace types.  For backward compatibility,
1905     you can continue to use "-interlace Plane" to request these.
1906
1907 2007-04-30  6.3.4-0 Anthony  <anthony@griffith...>
1908   * Fixed minor bug in the 'curl' for Polaroid of very non-square images.
1909
1910 2007-06-01  6.3.4-5 Cristy  <quetzlzacatenango@image...>
1911   * Set min-is-white for Group4-compressed PDF.
1912   * Add PaintFloodfillImage() method.
1913
1914 2007-05-30  6.3.4-4 Cristy  <quetzlzacatenango@image...>
1915   * Add MEPP metric to compare program.  Returns the mean error per pixel
1916     along with the normalize mean and maximum error.
1917   * Attach an XMP profile to an image (e.g.
1918     convert input.tif -profile xmp:metadata.xmp output.tif).
1919
1920 2007-05-22  6.3.4-3 Cristy  <quetzlzacatenango@image...>
1921   * Fixed mogrify conversions with -format and -path (reference
1922     http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=9127).
1923
1924 2007-05-15  6.3.4-2 Cristy  <quetzlzacatenango@image...>
1925   * SVG style element was not always parsed properly.
1926   * Do not dither when the number of unique colors is already less than the
1927     maximum.
1928   * Return normalized PAE metric (compare utility).
1929
1930 2007-05-03  6.3.4-1 Cristy  <quetzlzacatenango@image...>
1931   * Add support for PFM images.
1932   * Check for corrupt EXIF image profiles.
1933   * Writing JPEG YCbCr TIFF images no longer faults (reference
1934     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=8896).
1935
1936 2007-04-30  6.3.4-0 Anthony  <anthony@griffith...>
1937   * Fixed minor bug for crop missed images and 'background' GIF disposal.
1938
1939 2007-04-28  6.3.4-0 Glenn  <glennrp@image...>
1940   * Added profile support to the GIF decoder/encoder.  They are stored
1941     as GIF Application Extensions.  Known extensions include existing ICCRGB1
1942     (for ICC profiles) and new MGKIPTC0 and MGK8BIM0 (for IPTC and 8BIM
1943     profiles).  Unknown extensions found in GIF files are read as gifappNNN.
1944
1945 2007-04-28  6.3.4-0 Anthony  <anthony@griffith...>
1946   * Invert Opacity change for user defined ordered dither threshold maps,
1947     so that 'off' map is transparent, and 'on' is opaque.
1948
1949 2007-04-24  6.3.4-0 Anthony  <anthony@griffith...>
1950   * Added an initial Coalesce Images, and a final +map local colortable
1951     optimization to the -layers Optimize method, for a simple to use
1952     GIF optimization operation.  (more work to come)
1953
1954 2007-04-22  6.3.4-0 Cristy  <quetzlzacatenango@image...>
1955   * Properly set the virtual canvas of a multi-frame GIF image sequence.
1956   * Add AcquireOneVirtualPixel() method.
1957   * Set Log colorspace properly when writing DPX images.
1958   * Add -tile-offset option.
1959   * Add support for the EXR image format.
1960   * Improve support for DPX images.
1961   * Add --enable-hdri option to the configure script.
1962   * Add support for high dynamic-range images (HDRI).
1963
1964 2007-04-20  6.3.3-9 Peter Hull  <peterhull90@gmail...>
1965   * Improve support for writing multiple image icons.
1966
1967 2007-04-18  6.3.3-9 Anthony  <anthony@griffith...>
1968   * Separated -layers Optimize from -layers OptimizeFrame to allow
1969     the former expansion into a general (multiple method) optimizer
1970     of GIF animations
1971   * merged -layers OptimizeTransparency into -layers Optimize method
1972
1973 2007-04-12  6.3.3-8 Chris Madison  <madisonblu@hotma...>
1974   * Fix fault whem comparing a colormapped image with a non-colormapped one.
1975   * Fix race condition when spawning delegate programs.
1976   * TIFF JPEG now respects the -quality comptression setting.
1977   * The -fx option now properly groks the logical and operator.
1978   * DPX tilestamp property should be timestamp.
1979
1980 2007-04-13  6.3.3-7 Anthony  <anthony@griffith...>
1981   * Added GravityAdjustGeometry() to "geometry.c" to adjust geometry settings
1982     according to given gravity and canvas area it applies to. This is for
1983     code simplification thoughout MagickCore.
1984
1985 2007-04-09  6.3.3-6 Anthony  <anthony@griffith...>
1986   * Fixed CoalesceImages() to reset virtual canvas info on second and later
1987     frames.   Other animation handlers may also need to reset virtual canvas
1988     sizes to match the first frame, as well.
1989
1990 2007-04-06  6.3.3-6 Anthony  <anthony@griffith...>
1991   * Addition of a CompositeImages() "layer.c" function to compose two
1992     separate image lists together (with a virtual canvas offset) in three
1993     different ways, depending on the size of the lists.
1994   * A 'hack' for command line use (the two lists separates by the special
1995     "NULL" image, which is junked) has also been added. Specifically...
1996     "-layers Composite".
1997
1998 2007-04-04  6.3.3-6 Anthony  <anthony@griffith...>
1999   * Add -layers RemoveDups method to remove duplicate sequential images in
2000     coalesced animations.
2001   * Add -layers RemoveZero method to remove images with a zero time delay
2002     (with no action and a warning is all images have zero time delay)
2003
2004 2007-04-01  6.3.3-6 Cristy  <quetzlzacatenango@image...>
2005   * Permit generic profiles (e.g. -profile name:profile).
2006
2007 2007-03-31  6.3.3-5 Cristy  <quetzlzacatenango@image...>
2008   * Fixed DCM and XWD buffer overflow vulnerabilities (reference
2009     http://labs.idefense.com/intelligence/vulnerabilities/display.php?id=496).
2010
2011 2007-03-28  6.3.3-4 Anthony  <anthony@griffith...>
2012   * Code duplication, simplification, and possible logic faults in "list.c".
2013   * Added new Composition method, 'ChangeMask' to return pixels
2014     that have changed or will cause a color change in overlays
2015   * Used 'ChangeMask' to implement the "-layers" method
2016     "OptimizeTransparency" to improve the compressibility of
2017     frame optimized GIF animations. See IM Examples...
2018       http://www.imagemagick.org/Usage/anim_opt/#opt_trans
2019
2020 2007-03-19  6.3.3-4 Cristy  <quetzlzacatenango@image...>
2021   * Fixed two memory leaks in wand/magick-image.c and magick/stream.c and made
2022     some minor changes to the GIF coder to make reading and pinging images
2023     faster (patch provided by mstemm@cloud...).
2024
2025 2007-03-19  6.3.3-3 Cristy  <quetzlzacatenango@image...>
2026   * Patch RotateImage() to properly rotate CMYK images.
2027   * Patch the XWD coder to prevent heap overflow vulnerability (vulnerability
2028     report from idefense.com [IDEF2108] [IDEF2221] [IDEF2226]).
2029
2030 2007-03-19  6.3.3-3 Anthony <Anthony@griffith...>
2031   * Fixed bug for GIF Optimization for images without a matte channel.
2032   * Improved image handling for "-layers" method "Dispose".
2033
2034 2007-03-11  6.3.3-2 Cristy  <quetzlzacatenango@image...>
2035   * Improve configure script to better support Ghostscript under Mac OSX (
2036     reference http://www.imagemagick.org/discourse-server/viewtopic.php?t=8557).
2037   * Force a virtual pixel method of Tile for GetFillColor() and
2038     GetStrokeColor().
2039   * Add -reverse option to reverse the image list.
2040
2041 2007-03-08  6.3.3-1 Cristy  <quetzlzacatenango@image...>
2042   * Support versions 2.1.0 and above (reference
2043     http://www.imagemagick.org/discourse-server/viewtopic.php?f=2&t=8620).
2044   * Support SVG rotation about a point (e.g. rotate(45 75 75)).
2045   * Fix fault in DCM coder (reference
2046     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=8618).
2047   * Check for a NULL parser in SVGReference in coders/svg.c (reference
2048     http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=8609).
2049   * Add --disable-deprecated configure script option.
2050   * Composite mask now works properly with transparent images.
2051
2052 2007-03-04  Daniel Kobras <kobras@debia...>
2053   * Fixed additional data-driven faults (reference
2054     http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=412945).
2055   * Allocate proper scanline length to prevent a PCX overflow.
2056
2057 2007-03-03  6.3.3-1 Cristy  <quetzlzacatenango@image...>
2058   * Patch ImageMagick to permit referenced labels: -set option:mylabel
2059     "color = %[pixel:u[0].p{12,26}]" label:'%[mylabel]'
2060
2061 2007-02-24  6.3.3-0 Cristy  <quetzlzacatenango@image...>
2062   * Escape indirect labels and comments (e.g. -label @file).
2063   * Added -format %C to return the image compression type.
2064   * Do not report channel statistics if -ping -format is specified with the
2065     identify program.
2066   * Add ResetImagePage() to reset the image page canvas and position.
2067   * Upgrade to LCMS 1.16
2068   * Configure Ghostscript for library or framework (reference
2069     http://www.imagemagick.org/discourse-server/viewtopic.php?f=2&t=8557).
2070   * Add -taint option to convert/mogrify to mark image as ineligible for
2071   * Fixed various data-driven faults (reference
2072     http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=412945).  The corrupt
2073     JP2 image faults but its failing in the JP2 jas_image_decode() method,
2074     not MagickCore.  The corrupt XWD image faults but its failing in
2075     the X11 XGetPixel() method, not MagickCore.
2076
2077 2007-02-20  6.3.2-8 Cristy  <quetzlzacatenango@image...>
2078   * Use -define quantum:polarity=min-is-black or -define
2079     quantum:polarity=min-is-white to toggle the photometric interpretation for
2080     a bilevel TIFF image.
2081
2082 2007-02-17  6.3.2-8 Cristy  <quetzlzacatenango@image...>
2083   * Don't interpret embedded format characters when reading comments/labels
2084     from a file.
2085   * Reading an image from stdin stopped working.
2086
2087 2007-02-17  6.3.2-7 Cristy  <quetzlzacatenango@image...>
2088   * PerlMagick Label() no longer faults.
2089   * Fix double-free when using the display/animate -geometry option.
2090   * Add GetStringInfoLength() and GetStringInfoDatum(); deprecate
2091     profile->length and profile->datum.
2092
2093 2007-02-16  6.3.2-6 Cristy  <quetzlzacatenango@image...>
2094   * Fix file leak in InjectImageBlob().
2095   * Do not reinterpret image properties (e.g. -comment %%w).
2096
2097 2007-02-14  6.3.2-5 Cristy  <quetzlzacatenango@image...>
2098   * Don't over-allocate file buffers.
2099
2100 2007-02-12  6.3.2-5 Cristy  <quetzlzacatenango@image...>
2101   * Format strings in the POSIX locale.
2102   * Make font metrics invarient to the strokewidth.
2103
2104 2007-02-10  6.3.2-4 Albert Chin  <china@thewr...>
2105   * Patch to fix configure.ac typo.
2106
2107 2007-02-08  6.3.2-4 Cristy  <quetzlzacatenango@image...>
2108   * Permit ImageMagick to run as a service under Windows.
2109   * Remove duplicate EXIF properties.
2110   * Support strokewidth option for the caption format.
2111   * Don't use Ghostscript for rendering fonts if Freetype is available.
2112
2113 2007-02-02  6.3.2-3 Cristy  <quetzlzacatenango@image...>
2114   * Added thumbnail format to write EXIF thumbnails.
2115   * Move ReadByteImage() out of Min() macro of ReadPALMImage().
2116   * Move EXIF properties to the EXIF namespace (e.g. exif:XResolution).
2117
2118 2007-01-26  6.3.2-2 Cristy  <quetzlzacatenango@image...>
2119   * Add interpolate and background options to PerlMagick's AffineTransform().
2120   * Revert to Postscript rendering if Freetype delegate library is not
2121     available.
2122
2123 2007-01-20  6.3.2-1 Cristy  <quetzlzacatenango@image...>
2124   * Accept Fx expressions from a file with -fx @filename.
2125   * Enhance -fill and -stroke to accept image filenames as patterns.
2126
2127 2007-01-16  6.3.2-0 Cristy  <quetzlzacatenango@image...>
2128   * Save grayscale images as JPEG-compressed grayscale when writing in the TIFF
2129     format.
2130   * Update EXIF resolution fields when image density changes.
2131
2132 2007-01-07  6.3.1-7 Cristy  <quetzlzacatenango@image...>
2133   * The -polaroid option now respects -gravity.
2134   * Deprecate Get/SetImageAttribute().  Recommend Get/SetImageProperty()
2135     instead.
2136   * Any form of "-crop" with a percentage, implies an offset for the crop.
2137   * Fixed percent option for -border (e.g. -border 10%x0%).
2138   * Add -path option to the mogrify program to specify where to write the
2139     images.
2140
2141 2007-01-06  6.3.1-6 Cristy  <quetzlzacatenango@image...>
2142   * Fix the -auto-orient to work with an image sequence (reference
2143     http://www.imagemagick.org/discourse-server/viewtopic.php?t=8100).
2144   * Add -polaroid option to simulate a Polaroid picture.
2145   * Eliminate double-free bug in GradientImage().
2146   * Set AppendImage() matte channel only when image has matte attribute set.
2147   * The -crop with negative offsets do not modify the virtual canvas.
2148   * Caption: Given both the width and height ("-size") of the area to fill,
2149     adjust the fonts "-pointsize" until the text just filles the whole space
2150     without overflowing.
2151   * Generate proper Windows icon image files (patch provided by
2152     Robert M. Jansen).