]> git.imager.perl.org - imager.git/blob - Changes
Imager 1.000 release
[imager.git] / Changes
1 Imager release history.  Older releases can be found in Changes.old
2
3 Imager 1.000 - 28 Jul 2014
4 ============
5
6 There's nothing special about Imager 1.000, it's just another release.
7
8  - fix the skip check for the iolayer qr// buffer test
9
10  - improve error reporting for the iolayer test failing on a small
11    number of Win32 CPAN testers
12
13 Imager 0.99_02 - 21 Jul 2014
14 ==============
15
16  - Imager::Filter::Mandelbrot (and dynfilt/mandelbrot.c) - initialize
17    the blue channel in the generated palette, and allow each color
18    component to be in the range 100..255 instead of just 100..254.
19    Thanks to Ralf Neubauer.
20    https://rt.cpan.org/Ticket/Display.html?id=97086
21
22  - revert "improved the XS for i_io_read() and i_io_raw_read()"
23    This caused problems with older perls and didn't provide much of a
24    performance improvement.
25
26  - support Inline 0.57 and later.
27    Inline 0.57 changed the "with" interface.
28    https://rt.cpan.org/Ticket/Display.html?id=97108
29
30  - don't define our own MAXINT macro, it conflicts with windows header
31    files and in a few places it was the wrong value to use anyway.
32    https://rt.cpan.org/Ticket/Display.html?id=96425
33
34 Imager 0.99_01 - 29 Jun 2014
35 ==============
36
37  - GIF: add support for giflib 5.1.0, which added error code pointer
38    parameters to EGifCloseFile() and DGifCloseFile().
39    https://rt.cpan.org/Ticket/Display.html?id=96756
40
41  - GIF: avoid a double-free when do_write() fails.
42
43  - fix SV type probing to work on perl before 5.12.  Broken in 0.99.
44    https://rt.cpan.org/Ticket/Display.html?id=96761
45
46  - PNG: skip the benign error test before libpng 1.6.0, since the
47    error we're testing didn't exist before 1.6.0.
48    https://rt.cpan.org/Ticket/Display.html?id=94717 (continued)
49
50 Imager 0.99 - 25 Jun 2014
51 ===========
52
53  - Imager::IO->new_buffer() (and hence Imager->read()'s data
54    parameter) now accepts a reference to a scalar as well as just a
55    plain scalar.
56    https://rt.cpan.org/Ticket/Display.html?id=92785
57
58  - Imager::IO->new_buffer() now always makes a copy of the passed in
59    buffer to avoid problems with temporary objects used for the return
60    value of SvPVbyte().
61    https://rt.cpan.org/Ticket/Display.html?id=92785
62
63  - improved the XS for i_io_read() and i_io_raw_read()
64    https://rt.cpan.org/Ticket/Display.html?id=92738
65
66  - load plugins from absolute paths on Android
67    Thanks to Brian Fraser.
68    https://rt.cpan.org/Ticket/Display.html?id=93272
69
70  - added the jpeg_optimize parameter for writing JPEG files.  This can
71    significantly reduce file sizes, but uses more memory and time.
72    https://rt.cpan.org/Ticket/Display.html?id=94292
73
74  - the autolevels filter now works on the luminosity of the image
75    rather then working per channel.  The old autolevels filter is
76    still available as "autolevels_skew".
77    https://rt.cpan.org/Ticket/Display.html?id=94413
78
79  - Imager::File::PNG now supports libpng 1.6.10.
80    1.6.10 changed CRC errors from benign errors to normal errors,
81    which broke the test which used CRC errors to check for benign
82    error support.  Switched to using a 1-bit grey-scale image with a
83    palette to test for benign errors.
84    https://rt.cpan.org/Ticket/Display.html?id=94717
85
86 Imager 0.98 - 3 Jan 2014
87 ===========
88
89 Incompatible changes:
90
91  - the return value of setpixel() has changed.
92
93    Previously the return values for undrawable pixels vs caller errors
94    changed depending on whether you used the multiple pixel calling
95    mechanism, or the single pixel mechanism.
96
97    Now:
98
99     - for an invalid parameter, such as an unknown colour, or missing
100       parameter, an empty list (or undef in scalar context) is
101       returned, and errstr() is set,
102
103     - otherwise the number of pixels drawn is returned.  If none of
104       the pixels could be drawn (they were all outside the image), "0
105       but true" is returned.
106
107    https://rt.cpan.org/Ticket/Display.html?id=87650
108
109 Other changes:
110
111  - when drawing on an image with an alpha channel where the source
112    minimum is greater than zero, Imager would read from beyond the end
113    of a malloc() allocated buffer.  In rare circumstances this could
114    lead to some of the source image not being written to the target
115    image, or possibly to a segmentation fault.
116    I don't believe this has any security concerns beyond that.
117
118  - if the first text drawn with Imager::Font::T1 is not anti-aliased,
119    text drawn would be nonsense.  This would also read beyond the end
120    of a malloced buffer.
121
122  - non-AA text drawn with an Imager::Font::TT (Truetype 1) font would be
123    truncated early.
124    https://rt.cpan.org/Ticket/Display.html?id=88993
125
126  - Imager::Font::Wrap no longer requires the image parameter.
127    https://rt.cpan.org/Ticket/Display.html?id=87338
128
129  - a documentation typo fix in Imager::Transformations
130    Thanks to Adrian Yee.
131    https://rt.cpan.org/Ticket/Display.html?id=88598
132
133  - Image::Probe, Imager's internal module for probing library
134    locations now searches the directories specified by LD_RUN_PATH,
135    LD_LIBRARY_PATH, DYLD_LIBRARY_PATH and LIBRARY_PATH for libraries,
136    and the corresponing s/\blib$/include/ directories for header
137    files.
138    https://rt.cpan.org/Ticket/Display.html?id=86428
139
140 Imager 0.97 - 15 Jul 2013
141 ===========
142
143 No changes from 0.96_02.
144
145 Imager 0.96_02 - 8 Jul 2013
146 ==============
147
148  - PNG: treat a version mismatch between headers and library as a
149    probe failure.
150    https://rt.cpan.org/Ticket/Display.html?id=86659
151
152  - PNG: the check for benign error support is more complex than a
153    simple library version check, check for the appropriate macro.
154    Thanks for Slaven Rezic for following up on my CPAN Testers result
155    queries.
156    https://rt.cpan.org/Ticket/Display.html?id=86659
157
158  - W32: add a missing head1 AUTHORS to the old Win32.pm
159    https://rt.cpan.org/Ticket/Display.html?id=86658
160
161 Imager 0.96_01 - 1 Jul 2013
162 ==============
163
164  - TIFF: handle SampleFormat = 2 by translating the signed integer
165    values to unsigned by flipping their sign bits.
166
167    Handle SampleFormat = 3 where possible.
168
169    SampleFormat is ignored for paletted images.
170
171    Mixed SampleFormat are handled incorrectly, since libtiff returns
172    only the first SampleFormat value, and an image with both an alpha
173    channel and SampleFormat = 2 for color channels probably has a
174    different SampleFormat for the alpha channel.
175
176    https://rt.cpan.org/Ticket/Display.html?id=74540
177
178  - XS clean up:
179      https://rt.cpan.org/Ticket/Display.html?id=69243
180
181    - Imager::Color's rgba() method now returns its values as integers
182      instead of floating point. (IV instead of NV).
183
184    - The XS for i_map() and i_matrix_transform() now use the AV *
185      typemap instead of rolling their own.
186
187    - The XS for DSO_call() now uses the HV * typemap instead of
188      rolling it's own.
189
190    - The XS for i_poly_aa(), i_poly_aa_cfill(), i_transform() and
191      i_gradgen() now use a new T_AVARRAY typemap that greatly
192      simplifies the XS code.
193
194    - many other minor XS changes
195
196    - some XS code formatting
197
198  - TT (Freetype 1.x) and FT2 (Freetype 2.x) non-antialiased rendering
199    now renders in alpha-combining mode, to match antialiased output.
200    https://rt.cpan.org/Ticket/Display.html?id=73359
201
202  - add sample code and cookbook notes for drawing a blurred drop-shadow.
203
204  - add support for libpng 1.6, which changed the defaults for
205    reporting some types of error.
206    https://rt.cpan.org/Ticket/Display.html?id=85746
207
208  - FT2: use gsamp/psamp() to transfer pixels from the work image to
209    the output image instead of gpix/ppix.
210    https://rt.cpan.org/Ticket/Display.html?id=83478
211
212  - eliminate various GCC warnings, mostly initialized but otherwise
213    unused variables.
214
215 Imager 0.96 - 19 May 2013
216 ===========
217
218  - rearrange Imager's test files.
219    https://rt.cpan.org/Ticket/Display.html?id=84596
220
221  - Imager::Probe::_gcc_lib_paths now forces C locale.
222    A sufficiently recent gcc prints localized keys for the search
223    paths, which avoids that localization.
224    https://rt.cpan.org/Ticket/Display.html?id=84963
225
226  - fix a pod error detected by Pod::Simple 3.27 and laterm and skip
227    pod tests unless AUTOMATED_TESTING or IMAGER_AUTHOR_TESTING is set
228    and true.
229    https://rt.cpan.org/Ticket/Display.html?id=85262
230    reported by Andreas König
231
232  - add a test for unclosed POD in C source, and fix the errors it
233    found.
234    https://rt.cpan.org/Ticket/Display.html?id=74875
235
236  - fix some spelling errors detected by the newer aspell in Debian
237    Wheezy.
238
239  - remove a trailing ' from lib/Imager/Font/Test.pm's POD
240    thanks to gregor herrmann <gregoa@debian.org>
241    https://rt.cpan.org/Ticket/Display.html?id=85413
242
243  - add a test for standard =head1 commands and fix the errors found
244
245 Imager 0.95 - 19 Apr 2013
246 ===========
247
248  - handle the SVf_UTF8 flag correctly on magic strings passed to
249    Imager::IO's write() and raw_write() methods.
250    This may misbehave in perl 5.6.x since the UTF8 flag may not be
251    visible in the main SV after SvGETMAGIC().
252    https://rt.cpan.org/Ticket/Display.html?id=83438
253
254  - document that bounding_box() ignores the transformation matrix
255    supplied to tranform() for fonts.
256    https://rt.cpan.org/Ticket/Display.html?id=84106
257
258 Imager 0.94_02 - 5 Apr 2013
259 ==============
260
261  - enable debug logging for the standard font tests
262
263  - skip the overloaded UTF-8 text output checks on 5.6.x and earlier,
264    due to a bug in that version of perl.
265
266  - don't test for read() failing on a write-only handle in 5.8.x and
267    earlier, this was fixed in change 862083f7e4 in perl.
268
269  - report the version of Inline found during testing (an attempt to
270    diagnose some intermittent failures.)
271
272 Imager 0.94_01 - 2 Mar 2013
273 ==============
274
275  - NOTE: possibly backward incompatible:
276    support reading from/writing to perl filehandes that aren't raw
277    files.
278
279    This allows Imager's I/O to honour handles with layers such as
280    gzip, scalar file handles or tied file handles.
281
282    This is backward incompatible in that previous Imager would simply
283    use fileno() to retrieve the fd for the file and call write(2) etc
284    on it directly.
285    https://rt.cpan.org/Ticket/Display.html?id=78843
286
287  - moved most of README to lib/Imager/Install.pod which should make it
288    more accessible to the "web" generation, also significantly updated
289    and re-worked it.
290
291  - updated README's for the separately distributed modules to refer to
292    Imager::Install, and that they need -dev versions of packages
293    https://rt.cpan.org/Ticket/Display.html?id=81265
294
295  - the JPEG test code now reports the compile-time library version
296
297  - avoid a possible compiler optimization issue on CentOS 5.9 i386 by
298    rearranging (and mildly optimizing) some code.
299    https://rt.cpan.org/Ticket/Display.html?id=83212
300
301  - fix a POD error in Imager::Fill (detected on new Pod-Simple)
302    https://rt.cpan.org/Ticket/Display.html?id=83434
303
304  - fix a broken link to Graphics::Magick
305    https://rt.cpan.org/Ticket/Display.html?id=82743
306
307  - drawing text to a channel with FT2 would draw with random coverage
308    due to an uninitialized alpha channel.
309
310  - marked the function pointer underlying the mm_log() API with the
311    correct gcc magic and fixed the resulting warnings.
312
313  - fixed some other compiler warnings
314
315  - Imager::Font::W32 now properly reports text drawing errors
316    https://rt.cpan.org/Ticket/Display.html?id=70098
317
318  - handle the SVf_UTF8 flag correctly on magic (eg. overloaded)
319    strings passed as text to draw(), bounding_box(), has_chars(),
320    glyph_names() (where supported) in each of the font drivers.
321    This may misbehave in perl 5.6.x since the UTF8 flag may not be
322    visible in the main SV after SvGETMAGIC().
323    https://rt.cpan.org/Ticket/Display.html?id=83438 (partial)
324
325 Imager 0.94 - 15 Dec 2012
326 =========================
327
328 Variations on some of these changes were included in development
329 releases.
330
331  - improved thread safety
332    - the internal error stack and log file handle are now in a per-thread
333      context object
334    - JPEG now captures IPTC information in a thread-safe way
335    - avoid globals where possible for warning capture in libtiff
336    - use a mutex to avoid re-entering thread-unsafe giflib
337    - use a mutex to avoid re-entering thread-unsafe tifflib
338    - use a mutex to avoid re-entering thread-unsafe T1Lib
339    - use a library handle per thread for freetype 2.
340    - use an engine handle per thread for freetype 1.x.
341    - originally these changes broke ABI compatibility, this has been
342      restored.
343
344  - clarify the return value of getpixel();
345    https://rt.cpan.org/Ticket/Display.html?id=81198
346
347  - fixed a race condition in parallel testing for T1
348
349  - fixed a bug in handling yoff for untransformed image-based fills
350
351  - documentation improvements for Imager::Fill
352
353  - FT2: report the library version while testing.
354
355 Imager 0.93 - 15 Oct 2012
356 ===========
357
358 Bug fixes:
359
360  - previously a transparency enabled GIF write (the default) would
361    always use a GIF89a header even if none of the images were
362    transparent.
363
364  - previously the probe step for freetype-config would fail on cygwin
365
366  - catch an invalid matrix parameter to convert() instead of crashing
367    https://rt.cpan.org/Ticket/Display.html?id=79922
368
369  - remove the 16-bit/sample limitation from the documentation for
370    setsamples(), it hasn't applied for many releases.
371    https://rt.cpan.org/Ticket/Display.html?id=79989
372
373  - don't copy setsamples() data parameter, it may be a large scalar
374    https://rt.cpan.org/Ticket/Display.html?id=79990
375
376  - clean up .dSYM directories generated performing probes on OS X
377    Mountain Lion.
378
379  - pass the --verbose command-line option through to Imager::Probe in
380    sub-module's Makefile.PLs
381    https://rt.cpan.org/Ticket/Display.html?id=75878
382
383 Enhancements:
384
385  - support for giflib 5.0. (5.0.1 and later)
386    https://rt.cpan.org/Ticket/Display.html?id=79029
387    The giflib API Imager uses doesn't have a mechanism to set the
388    header version in 5.0.0.
389
390  - update the GIF library probe code to check for the new giflib 5.0.1
391    EGifSetGifVersion() function, and to check for the giflib 4.2.0
392    uninitialized gif89 bug.
393    https://rt.cpan.org/Ticket/Display.html?id=79679
394    http://sourceforge.net/tracker/?func=detail&aid=3574283&group_id=102202&atid=631304
395
396  - avoid static variables when capturing IPTC data from JPEG files
397
398  - match Imager::Font;:T1's error message translations to those from
399    later versions of T1Lib.
400
401  - for libtiff versions that support extended warning handlers (3.8.0
402    or later), use them to avoid some global variables.
403
404  - note Image::ExifTool for better metadata support.
405    https://rt.cpan.org/Ticket/Display.html?id=79251
406
407 Imager 0.92 - 14 Aug 2012
408 ===========
409
410  - giflib 4.2 eliminates the GIF_LIB_VERSION macro, handle that
411    correctly for both probing and runtime.
412    https://rt.cpan.org/Ticket/Display.html?id=77672
413
414  - allow building JPEG/imexif.c on C89 compilers.
415
416  - allow building GIF/imgif.c on C89 compilers.
417
418 Imager 0.91 - 4 Jun 2012
419 ===========
420
421 Bug fixes:
422
423  - The size of rotated images is no longer rounded up so aggressively.
424    Added rounding to the linear interpolation done for rotate() and
425    matrix_transform() for 1 and 3 channel 8-bit images.
426    Adjusted the two tranlate matrices used to build the final rotation
427    matrix to use the distance between the outlier pixels rather than
428    the pixel dimensions (ie. dimension-1).
429    With all of this the output of rotate(degrees => 270) on an 8-bit
430    image exactly matches the output of rotate(right => 270).
431    https://rt.cpan.org/Ticket/Display.html?id=77063
432
433 Other changes:
434
435  - eliminate the old IIM_new(), IIM_DESTROY() names from Imager's
436    internals, those names only matter for the XS interface.
437
438  - improve error reporting when PERL_INITIALIZE_IMAGER_CALLBACKS finds
439    the API level compiled into a loadable module such as
440    Imager::File::GIF doesn't match that of Imager.  Previously it
441    could be difficult to determine exactly which module was failing to
442    load.
443    https://rt.cpan.org/Ticket/Display.html?id=77173
444
445  - added Imager->check_file_limits() as an interface to the
446    i_int_check_image_file_limits() API.
447
448  - Imager->set_file_limits(reset => 1) now resets the limits to the
449    defaults rather than setting them all to unlimited.
450
451  - wrote a brief security note as Imager::Security
452    https://rt.cpan.org/Ticket/Display.html?id=68910
453
454 Imager 0.90 - 30 Apr 2012
455 ===========
456
457 Bug fixes:
458
459  - Imager::Test::is_imaged() attempted to process an "epsilon"
460    parameter but the prototype didn't allow for the extra parameter.
461    Corrected the prototype.
462
463  - when downconverting samples (eg. from floating point to 8 bit)
464    Imager now rounds the sample value rather than attempting to
465    allocate input values over output values equally.  The old
466    behaviour had the probably surprising effect of converting a
467    floating point 2.1/255.0 into an 8-bit 3 rather than the expected
468    2.
469    This may result in slightly different 8 or 16-bit output images.
470
471  - BI_BITFIELD BMP images were handled incorrectly, both in
472    incorrectly calculating the space required for the masks and in
473    processing the image data itself.
474    https://rt.cpan.org/Ticket/Display.html?id=76736
475
476  - some odd width BMP BI_RLE4 images use run lengths that run one off
477    the edge of the image.  Imager now allows this, discarding the
478    extra column.
479
480  - odd length RLE4 runs in BMP images were decoded incorrectly.
481
482  - pkg-config could sometimes return a library that was in a directory
483    EU::MM / $Config{libpth} doesn't know about, but the compiler did.
484    If no -L is included in the pkg-config library information check if
485    EU::MM can find the library, and if not, search our configured
486    directories and insert that into the library flags.
487    https://rt.cpan.org/Ticket/Display.html?id=75869
488
489  - Imager::Probe can now probe for libraries with dependent libraries,
490    common for static linking, eg. libpng requires libz.
491    https://rt.cpan.org/Ticket/Display.html?id=74043
492
493  - libpng 1.5 specific probes were looking for libpng 1.4 filenames.
494
495  - added alternative probe configurations that try to link libz, to
496    handle a statically linked libpng.
497    https://rt.cpan.org/Ticket/Display.html?id=74043
498
499  - if a probe includes testcode, Imager::Probe now checks that code as
500    part of the process of checking each configuration rather than as a
501    post test of the found configuration.  This allows alternate
502    configurations to be checked if a matching but non-working
503    configuration is found.
504    https://rt.cpan.org/Ticket/Display.html?id=74043
505
506 Other changes:
507
508  - when reading or writing images via callbacks, the default callbacks
509    now push an error message indicating that a required callback was
510    called but not supplied.
511    https://rt.cpan.org/Ticket/Display.html?id=76782
512
513  - clarify which callbacks are required for reading and writing TIFF
514    images.
515
516  - improve logging for creation of callback I/O layers.
517
518  - a little more documentation for Imager::Probe.
519
520  - the i_get_file_background() and i_get_file_backgroundf() APIs now
521    return int to indicate whether the i_background tag was found.
522
523  - PNG rework
524    - improve error reporting
525    - add png_interlace, png_bits tags
526    - read paletted images as paletted images, including transparency
527    - read 1 bit greyscale images as a type suitable for other file
528      handlers to write as bilevel
529    - read 16 bit/sample PNG as 16-bit/sample Imager images
530    - write "bilevel" paletted images as 1 bit grayscale images
531    - write paletted images as paletted images
532    - write 16-bit (or higher)/sample images as 16-bit/sample PNG
533      images
534    - improved metadata support
535    https://rt.cpan.org/Ticket/Display.html?id=29268
536
537 Imager 0.89 - 18 Mar 2012
538 ===========
539
540 Bug fixes:
541
542  - getpixel(..., type => "float") and the API i_gpixf() have been
543    broken on paletted images since they were implemented.
544    https://rt.cpan.org/Ticket/Display.html?id=75258
545
546 Other changes:
547
548  - links in the METHOD INDEX now point at the method documentation
549    rather than the heading you can find them under.
550    https://rt.cpan.org/Ticket/Display.html?id=71495
551
552  - Imager (and the bundled dynamic modules) no longer fallback to
553    using DynaLoader if loading via XSLoader fails.
554    For the bundled modules this could hide useful error messages.
555    https://rt.cpan.org/Ticket/Display.html?id=75560
556
557  - IM_DEBUG_MALLOC mymalloc() no longer sn?printfs() a string to a
558    buffer in the array of allocations, but just stores the filename
559    pointer and line number.
560    https://rt.cpan.org/Ticket/Display.html?id=70388
561
562 Imager 0.88 - 22 Feb 2012
563 ===========
564
565  - describe how to build libgif etc on OS X in such a way as to be
566    compatible with a fat binary perl (such as the system perl), in
567    README.
568    https://rt.cpan.org/Ticket/Display.html?id=73371
569
570  - update the change notes for 0.77_01 to indicate that libungif
571    support was removed.
572
573  - add some other imaging modules to SEE ALSO
574    https://rt.cpan.org/Ticket/Display.html?id=73906
575
576  - note that the generator of the apparently non-DFSG-free postscript
577    in MMOne.pfb is a Debian package.
578
579  - setsamples() is now a true complement to getsamples() - it can
580    write 8-bit or floating point samples from a scalar or array
581    reference.  This adds i_psamp() and i_psampf() to the C level API.
582
583  - the XS interfaces to i_gsamp(), i_gsampf() and i_gsamp_bits() have
584    changed to make better use of the typemap, but these aren't part of
585    the perl level API anyway.  There were no changes to the C level
586    interfaces to these functions.
587
588  - getpixel() and setpixel() now accept a mix of scalar and array
589    references for the x and y parameters, and unequal array lengths is
590    no longer an error.
591    https://rt.cpan.org/Ticket/Display.html?id=73697
592
593 Bug fixes:
594
595  - correctly calculate the size of a rotated image
596    https://rt.cpan.org/Ticket/Display.html?id=69261
597
598  - fix incorrect rounding of color values for matrix_transform() and
599    rotate().
600    https://rt.cpan.org/Ticket/Display.html?id=69261
601
602  - Win32 text output is now done in normal combine mode, the alpha
603    component of the color is now significant.
604    https://rt.cpan.org/Ticket/Display.html?id=70014
605
606  - remove long unused gif case from read()
607    https://rt.cpan.org/Ticket/Display.html?id=69244 (partial)
608
609  - the getsamples() target parameter was being treated as a hashref
610    when it's meant to be an array reference.
611    https://rt.cpan.org/Ticket/Display.html?id=74882
612
613  - getpixel() and setpixel() now returns an empty list when invalid
614    parameters are supplied.
615    Invalid values for type now result in an error for getpixel().
616    https://rt.cpan.org/Ticket/Display.html?id=73697
617
618 Imager 0.87 - 03 Jan 2012
619 ===========
620
621  - document the return value of the filter() method.
622    https://rt.cpan.org/Ticket/Display.html?id=72369
623
624  - document i_gsamp_bits() and i_psamp_bits().
625    https://rt.cpan.org/Ticket/Display.html?id=68815
626
627  - properly increment the Imager::Matrix2d $VERSION.
628
629  - actually include the Imager::Test tests in the dist
630
631  - correctly read and write 256x256 pixel ICO files
632    https://rt.cpan.org/Ticket/Display.html?id=69599
633
634  - make the error message from read() or read_multi() when they can't
635    identify the file type match reality.
636    https://rt.cpan.org/Ticket/Display.html?id=72475
637
638  - read() now uses $FORMATGUESS if it can't determine the file type
639    based on the file header, to match read_multi().
640
641  - re-work and add tests for def_guess_type().  def_guess_type() no
642    longer returns any random file extension as the file type.
643
644  - add gray4, gray16 and gray as presets for make_colors.
645    https://rt.cpan.org/Ticket/Display.html?id=67911
646
647  - add make_palette() method that produces a palette from one or more
648    images.
649
650  - fix the Imager dependency for the separately distributed font
651    drivers.
652    https://rt.cpan.org/Ticket/Display.html?id=72643
653
654  - fix i_render_color() to properly draw in "normal" mode - ie. when
655    writing to a 1 or 3 channel image the second or fourth channel of
656    the source color was being ignored, it is now significant.
657    https://rt.cpan.org/Ticket/Display.html?id=71564
658
659 Imager 0.86 - 31 Oct 2011
660 ===========
661
662  - improve error reporting for W32 tests
663
664 Imager 0.85_02 - 24 Oct 2011
665 ==============
666
667 Bug fixes:
668
669  - eliminate unused i_gif_opts type (clean-up)
670    https://rt.cpan.org/Ticket/Display.html?id=69245
671
672  - fix combine=0 fill color anti-aliasing on the double/sample path
673    https://rt.cpan.org/Ticket/Display.html?id=71309
674
675  - make default text color non-transparent
676    https://rt.cpan.org/Ticket/Display.html?id=71469
677
678  - apply the last of the Debian unforwarded spelling fixes
679    https://rt.cpan.org/Ticket/Display.html?id=70656
680
681  - the log() method used its message parameter as a C level format
682    string.
683    https://rt.cpan.org/Ticket/Display.html?id=71653
684
685  - provide our own STRLEN typemap entry for older perls.
686    https://rt.cpan.org/Ticket/Display.html?id=71641
687
688  - add extra ppport.h configuration to support older perls.
689
690  - depend on Scalar::Util, since we use it and older perls don't have
691    it.
692
693  - add overloaded eq to Imager::Matrix2d, since older perls don't seem
694    to synthesize it from overloaded "".
695
696   - use T1_StrError() for error messages on modern libt1
697     https://rt.cpan.org/Ticket/Display.html?id=69879
698
699  - actually load the font rather than just adding it to the catalog on
700    creation.
701
702  - Imager::Font->new now produces better error messages for the T1
703    engine.
704
705  - the font has_chars() method now returns perl's true and false
706    values in list context rather than integers, which should be more
707    efficient.
708    https://rt.cpan.org/Ticket/Display.html?id=69158
709
710  - the btm data structure used by the flood_fill code is now
711    initialized more efficiently.
712    https://rt.cpan.org/Ticket/Display.html?id=68994
713
714  - updated the Thanks list in README
715    https://rt.cpan.org/Ticket/Display.html?id=71607
716
717  - check there's at least one coefficient for the convolution filter
718    https://rt.cpan.org/Ticket/Display.html?id=68993
719
720  - make the APIRef synopsis ordering consistent, older versions of
721    perl could order it differently.
722    https://rt.cpan.org/Ticket/Display.html?id=71675
723
724  - we rely on Config.pm's d_vsnprintf as to whether we use
725    vsnprintf/snprintf, which is defined in the Win32 Config.pm even
726    though it only has _ prefixed versions of these.  Define our own
727    prefixed names on Win32.
728    https://rt.cpan.org/Ticket/Display.html?id=71642
729
730  - fix library detection with MSVC
731
732  - search a few more library directories, so EU::MM doesn't discard
733    them.  Hopefully fixes:
734    https://rt.cpan.org/Ticket/Display.html?id=71643
735
736 Imager 0.85_01 - 10 Oct 2011
737 ==============
738
739  - add simple tests for the Imager::Test test_image generators
740
741  - io_glue I/O buffering re-work:
742
743    - reorganize io_glue to do it's own buffering by default
744
745    - the unbuffered functions are available as i_io_raw_read() (or
746      raw_read() from perl) etc but are not recommended for typical
747      use.
748
749    - use the new i_io_peekn() when checking for file magic to avoid
750      seek, allowing Imager to detect the file type and read the file
751      from an unseekable stream (for formats that don't use random
752      access)
753
754    - added several new I/O layer API functions.
755
756    - fix the TGA performance problem, most noticably on Win32
757      https://rt.cpan.org/Ticket/Display.html?id=70037
758
759    - TIFF now uses wrapper functions of the correct types to avoid casts
760      https://rt.cpan.org/Ticket/Display.html?id=69912
761
762    - the callback IO object did its own buffering, controlled by the
763      maxbuffer parameter supplied to the read() and write() methods.
764      This buffering has been removed, to avoid redundancy with the
765      common io_glue buffering.  This also avoids a bug in that code
766      which could rarely pass a zero length to the read callback and
767      then panic about the result.
768
769    - the callback IO object now tests the result of calling the close
770      callback, which should return true for success.
771
772    - the PNM reader did its own buffering.  This buffering has been
773      removed to avoid redundancy with the common io_glue buffering.
774
775    - previously the read handlers for fd and callback I/O layers would
776      call the underlying interface (POSIX read or your supplied callback)
777      until it filled the buffer.  It now only makes one call.
778
779    - added public constructors for I/O layer objects (see Imager::IO)
780
781    - all core file handlers now use the i_io_foo() wrappers to gain
782      access to buffered I/O rather than calling the I/O layer
783      callbacks directly.
784
785    - all core file handlers now check for error on close.
786
787    - Backward compatibility: if you hava custom file handlers, you can
788      use i_io_write() etc since they're available as macros in older
789      versions of Imager.
790
791    - eliminate the final remnants of io_glue_commit_types().
792
793    - bump IMAGER_API_VERSION, since the above may break assumptions.
794
795  - removed the long unused i_gen_reader() and i_gen_writer() utility
796    functions.
797
798 Imager 0.85 - 29 Aug 2011
799 ===========
800
801 The main changes in the release versus 0.84 are:
802
803  - on 64-bit systems, 64-bit types are consistently used for image
804    dimensions and co-ordinated, and for memory block sizes.
805
806  - handle IFD loops in TIFF files correctly.  Previously this would
807    lead to an infinite loop.
808
809 Bug fixes:
810
811  - fix the link in the getheight() entry in the method index
812
813 Imager 0.84_02 - 22 Aug 2011
814 ==============
815
816 Development release, this will become 0.85 if CPAN testers is
817 favourable.
818
819 Bug fixes:
820
821  - the image file limits set by set_file_limits() weren't being
822    checked when reading TIFF files.
823    https://rt.cpan.org/Ticket/Display.html?id=69915
824
825  - Provide more information about file format module load errors on a
826    failed image file read() or write().
827    https://rt.cpan.org/Ticket/Display.html?id=69194
828
829  - use TIFFReadDirectory() instead of TIFFSetDirectory() to iterate
830    through TIFF images, since it checks for IFD loops.
831    https://rt.cpan.org/Ticket/Display.html?id=69914
832
833  - don't leak memory when out of range palette indexes are supplied to
834    setscanline().
835    https://rt.cpan.org/Ticket/Display.html?id=69242
836
837  - require a later version of CPAN::Meta to ensure JSON::PP and
838    CPAN::Meta::YAML are available.
839    https://rt.cpan.org/Ticket/Display.html?id=69008
840
841  - hoist the per-line calculations for the flines implementations, and
842    modernize the tests a bit.
843    https://rt.cpan.org/Ticket/Display.html?id=70126
844
845  - detect snprintf()/vsnprintf() (cheat by using Config.pm) and use
846    them when available.
847    https://rt.cpan.org/Ticket/Display.html?id=69147
848
849  - if t1lib failed to reinitialize it would be left as marked
850    initialized.
851    https://rt.cpan.org/Ticket/Display.html?id=69877
852
853  - update the bundled (and still modified) Devel::CheckLib
854    https://rt.cpan.org/Ticket/Display.html?id=69170
855
856 Imager 0.84_01 - 8 Aug 2011
857 ==============
858
859 Development release as a sanity check for the types re-work.
860
861 Massive types re-work:
862
863  - the type used internally for pixel co-ordinates and image sizes is
864    now 64-bit on 64-bit platforms (at least sane ones).
865
866  - size_t is now used consistently for memory block sizes.
867
868  - since this changes the binary interface, the Imager API version has
869    been incremented.  Any module that uses the API will need to be
870    rebuilt.  In most cases that will be enough, but calls to any APIs
871    that take a pointer to image sizes may need source changes.
872
873  - you should be able to create very large images on 64-bit systems,
874    if you have enough memory.  Successfully created a 32768 x 49192 x
875    3 channel image, filled with a tiled image and scaled it.  The
876    unscaled image was also successfully saved to a JPEG.
877
878  - check the image size before attempting to write BMP, GIF, JPEG,
879    PNG, SGI, TGA, TIFF images.
880
881  - correctly handle reading TGA images over 32767 pixels wide or tall.
882
883 Incidental changes:
884
885  - the gif_left and gif_top tags are now clamped to non-negative
886    values when writing a GIF image.
887
888  - removed dead callback read/write code
889
890 The default maximum memory size when reading files is now 1G.
891
892 Imager 0.84 - 20 Jun 2011
893 ===========
894
895  - Imager no longer inherits from Exporter (unless you're running an
896    old, old perl.
897
898  - Imager can now write progressive JPEGs (it could always read them).
899    https://rt.cpan.org/Ticket/Display.html?id=68691
900
901 Bug fixes:
902
903  - re-work, document and test Imager's logging facility.
904    https://rt.cpan.org/Ticket/Display.html?id=65227
905
906  - fix META.yml testing and the generated META.yml
907    https://rt.cpan.org/Ticket/Display.html?id=65235
908
909  - test and add error reporting to to_*() family methods
910
911  - add to_rgb_double() method.
912    https://rt.cpan.org/Ticket/Display.html?id=65101
913
914  - Imager no longer exports anything by default
915    https://rt.cpan.org/Ticket/Display.html?id=65228
916
917  - convert colors to grayscale if the supplied (or generated) palette
918    contains only grays when performing error diffusion color
919    translation.
920    https://rt.cpan.org/Ticket/Display.html?id=68508
921
922  - writing a paletted image to GIF wouldn't always use the colors
923    supplied (or generated, eg. via make_colors => "mono"), which was
924    confusing at best.
925    https://rt.cpan.org/Ticket/Display.html?id=67912
926
927  - replace (imager|tony)@imager.perl.org in the doc, since I don't
928    plan to continue receiving mail at that address.
929    https://rt.cpan.org/Ticket/Display.html?id=68591
930
931 Imager 0.83 - 21 May 2011
932 ===========
933
934 Bug fixes:
935
936  - diag() the error message on failure for some TIFF tests that are
937    failing on a Solaris smoker.
938    http://www.cpantesters.org/cpan/report/6396db1e-8090-11e0-9682-112b785ebe45
939
940 Imager 0.82_01 - 17 May 2011
941 ==============
942
943 Dev release, in case the compose tests are too sensitive.
944
945 Bug fixes:
946
947  - Imager::Font::T1 incorrectly checked for absolute filename under
948    Win32.  Thanks to kmx for the report and fix.
949    https://rt.cpan.org/Ticket/Display.html?id=67963
950
951  - compose() with the target, source or mask position off the top or
952    left of the target image didn't clip the source image correctly.
953    https://rt.cpan.org/Ticket/Display.html?id=67220
954
955  - compose() now returns a useful error message on a non-positive
956    opacity.
957
958  - compose.im now at 100% test coverage. (As opposed to, umm, much,
959    much less.)
960
961 Imager 0.82 - 14 Mar 2011
962 ===========
963
964 Bug fixes:
965
966  - eliminate calls to i_has_format() from the test suite, since it's
967    no longer a useful way to check for file format support.  Eliminate
968    i_has_format() from the functions exposed via XS.
969    https://rt.cpan.org/Ticket/Display.html?id=65863
970
971  - eliminate calls to note(), which isn't in the (very old) version of
972    Test::More we have as a pre-requisite.  note() is modern enough
973    that I don't feel a need to require a Test::More upgrade for it.
974    https://rt.cpan.org/Ticket/Display.html?id=65864
975
976  - skip the threads tests on Test::More 2.00_*
977    https://rt.cpan.org/Ticket/Display.html?id=65812
978
979  - add an (unshipped) test to check Imager's internal POD links
980    https://rt.cpan.org/Ticket/Display.html?id=65749
981
982  - improve the library detection summary
983    https://rt.cpan.org/Ticket/Display.html?id=9675
984
985  - increase the version of Imager::Font::Type1 so that upgrades don't
986    downgrade the version in this file.
987    https://rt.cpan.org/Ticket/Display.html?id=66250
988
989  - if we see an -rpath (or -R) option in $Config{lddlflags} supply
990    that option for the directories that would normally go in
991    LD_RUN_PATH.  Typically an explicit -rpath overrides LD_RUN_PATH.
992    https://rt.cpan.org/Ticket/Display.html?id=65955
993
994 Imager 0.81 - 14 Feb 2011
995 ===========
996
997  - added coverage tests for masked images (maskimg.c @100% test coverage)
998
999  - add hsv() method to Imager::Color
1000    Thanks to Leolo (Philip Gwyn)
1001    https://rt.cpan.org/Ticket/Display.html?id=65385
1002
1003  - split libt1 Type 1 font support into a sub-module
1004    https://rt.cpan.org/Ticket/Display.html?id=49616 (partial)
1005
1006  - add a preload() class method for use in forking servers, and to
1007    work around limitations in PAR.
1008    https://rt.cpan.org/Ticket/Display.html?id=65665
1009
1010 Bug fixes:
1011
1012  - paletted writes to a masked image are now masked correctly.
1013    Revealed by new coverage tests.
1014
1015  - update the filter plugin documentation.
1016    https://rt.cpan.org/Ticket/Display.html?id=56513
1017
1018  - add the matrix() method to Imager::Matrix2d to allow creation of a
1019    matrix with specified co-efficients.  You can now multiple an
1020    Imager::Matrix2d object by a 9 element array ref or a number.
1021    https://rt.cpan.org/Ticket/Display.html?id=29938
1022
1023  - really fix loading TTF fonts with FT2 when FT1 isn't available.
1024    Thanks to Leolo (Philip Gwyn)
1025    https://rt.cpan.org/Ticket/Display.html?id=65386
1026    https://rt.cpan.org/Ticket/Display.html?id=62855
1027
1028  - make sure each test script that needs testout/ creates it.
1029    https://rt.cpan.org/Ticket/Display.html?id=65088
1030
1031  - handle a slightly different warning from libtiff 4.x
1032    https://rt.cpan.org/Ticket/Display.html?id=65268
1033
1034  - the sat transform2() op returned an incorrect saturation.
1035    https://rt.cpan.org/Ticket/Display.html?id=65391
1036
1037 Imager 0.80 - 17 Jan 2011
1038 ===========
1039
1040  - added coverage tests for Imager::Fountain and Imager::Color::Float
1041
1042  - Imager is now maintained in git
1043    http://git.imager.perl.org/imager.git
1044    git://git.imager.perl.org/imager.git
1045
1046 Bug fixes:
1047
1048  - images with an translucent alpha channel were not scaled correctly
1049    by the default (qtype=normal) scaling method.
1050    https://rt.cpan.org/Public/Bug/Display.html?id=63922
1051
1052  - Imager::Color::Float now translates "#FFFFFF" to white instead of
1053    just a little darker.
1054
1055  - make the default color map build algorithm "mediancut".  This
1056    changes the default color map builder for writing GIFs back to what
1057    it was in 0.77, reverting a performance regression.
1058    https://rt.cpan.org/Ticket/Display.html?id=64785
1059
1060  - handle failure to create a masked image correctly
1061
1062 Imager 0.79 - 10 Dec 2010
1063 ===========
1064
1065  - add Imager::Test to the POD coverage tests and document the missing
1066    functions.
1067
1068  - the convert() method now optimizes the case where all output
1069    channels are either 0, sourced from a single input channel or 1.
1070    This significantly speeds up presets like "addalpha", "green".
1071    https://rt.cpan.org/Ticket/Display.html?id=51254
1072
1073  - add wiggle.pl sample, as suggested by Dan Oppenheim.
1074
1075  - add the combine() method to combine channels from multiple source
1076    images into a new image
1077    https://rt.cpan.org/Ticket/Display.html?id=11872
1078
1079 Bug fixes:
1080
1081  - treat the co-efficients for convert() as doubles instead of floats.
1082
1083  - If a higher (earlier) priority font handler failed to load, that
1084    would crash preventing loading of later font handlers.
1085    https://rt.cpan.org/Ticket/Display.html?id=62855
1086
1087  - parse defines from the options returned by pkg-config --cflags
1088    https://rt.cpan.org/Ticket/Display.html?id=63223
1089
1090  - a regen of the MANIFEST revealed that GIF and FT2 tests weren't
1091    included in the tarball.  They are now included.
1092
1093 Imager 0.78 - 4 Oct 2010
1094 ===========
1095
1096 Bug fixes:
1097
1098  - don't access deprecated members of the png_structp.
1099    https://rt.cpan.org/Ticket/Display.html?id=60242
1100
1101  - document that using color objects is faster than supplying colors
1102    by name, etc.
1103    https://rt.cpan.org/Ticket/Display.html?id=61047
1104
1105  - Imager::Probe now accepts array references for incpath and libpath.
1106    https://rt.cpan.org/Ticket/Display.html?id=60244
1107
1108 Imager 0.77_02 - 27 Sep 2010
1109 ==============
1110
1111  - moved Win32, FreeType 2 font support into sub-modules.
1112    https://rt.cpan.org/Ticket/Display.html?id=49616 (partial)
1113    Uses Imager::Probe now.
1114    https://rt.cpan.org/Public/Bug/Display.html?id=61328
1115
1116  - tested successfully with jpeg-8b
1117    https://rt.cpan.org/Ticket/Display.html?id=60221
1118
1119 Bug fixes:
1120
1121  - from _01: look for missing file support test files in the right
1122    places.
1123
1124  - flood_fill() wouldn't fill the right side of a single scan-line
1125    fill area.
1126    Thanks to Nicolas Roggli for reporting this.
1127
1128  - flood_fill wouldn't fill to the left edge of the image if the
1129    starting line didn't reach the left edge.
1130    Thanks to Nicolas Roggli for reporting this.
1131
1132 Imager 0.77_01 - 13 Sep 2010
1133 ==============
1134
1135  - add each library-directory/pkgconfig/ to the pkg-config search path
1136    in Imager::Probe.
1137    Thanks to Justin Davis.
1138    https://rt.cpan.org/Ticket/Display.html?id=60491
1139
1140  - moved GIF, TIFF, JPEG file handling code into sub-modules in
1141    preparation for separate distribution.
1142    https://rt.cpan.org/Ticket/Display.html?id=49616 (partial)
1143
1144    Note: this removed support for libungif from Imager.
1145
1146  - optimize filled box drawing (color, not fill)
1147
1148 Bug fixes:
1149
1150  - Imager::Probe was calling ExtUtils::Liblist to initialize
1151    LD_RUN_PATH supplying an undefined value rather than the found
1152    directory.  Thanks to Justin Davis.
1153    https://rt.cpan.org/Ticket/Display.html?id=60491
1154
1155  - only prepend ./ to font filenames when passing them to T1Lib and
1156    then only when it would use its search mechanisms.
1157    https://rt.cpan.org/Ticket/Display.html?id=60509
1158
1159  - fix the cache check for the X rgb.txt loader.  This is typically
1160    used for color translation on Unix-like systems, and the fix
1161    improves performance of supplying colors by name by about 80 times.
1162    Test code that managed 3400 10x10 pixel boxes/second sped up to
1163    25700 boxes/second.
1164
1165  - clarify that Imager doesn't write EXIF metadata to images.
1166    https://rt.cpan.org/Ticket/Display.html?id=60637
1167
1168  - Imager::Probe can now search subdirectories under its include path.
1169    Used by the PNG Makefile.PL to find headers and libraries when they
1170    aren't in the base directory, as in cygwin.
1171    https://rt.cpan.org/Ticket/Display.html?id=60635
1172
1173 Imager 0.77 - 11 Aug 2010
1174 ===========
1175
1176 I don't want Imager::File::PNG indexed as part of Imager, but forgot
1177 to update the META.yml before updating the version.
1178
1179  - don't index Imager::File::PNG as part of Imager
1180
1181  - add resources to META.yml
1182
1183 Imager 0.76 - not released
1184 ===========
1185
1186 Bug fixes:
1187
1188  - the align_string() method would ignore a string of "0" due to a
1189    mis-use of C< ||= >.
1190    Thanks to Maurice Height for reporting this.
1191    https://rt.cpan.org/Ticket/Display.html?id=60199
1192
1193 Imager 0.75_03 - 09 Aug 2010
1194 ==============
1195
1196 Bug fixes:
1197
1198  - read_types() and write_types() would include png when it wasn't
1199    available due to a problem with the %formats tie
1200
1201  - handle dependent libraries correctly (eg -lpng requiring -lz) in
1202    the code run phase of library probing.
1203
1204 Imager 0.75_02 - 07 Aug 2010
1205 ==============
1206
1207 Bug fixes:
1208
1209  - add file missing from MANIFEST, which was causing TIFF failures.
1210
1211 Imager 0.75_01 - 06 Aug 2010
1212 ==============
1213
1214 Test release for the new PNG probe.
1215
1216  - added the ability to read multiple-image PNM files.
1217    Note that unlike the pbm/pgm/ppm specification this accepts mixed
1218    format files and allows white space padding between files.
1219    Thanks to Philip Gwyn (Leolo) for this patch.
1220
1221  - moved the PNG file handling code into a sub-module in preparation
1222    for separate distribution.
1223    https://rt.cpan.org/Ticket/Display.html?id=49616 (partial)
1224    Also helps avoid complications from -I/-L compile/link options from
1225    other libraries.
1226
1227 Bugs:
1228
1229  - Imager->new(data => $data) didn't try to process image file data in
1230    $data
1231    https://rt.cpan.org/Ticket/Display.html?id=58761
1232
1233  - t/t50basicoo.t no longer depends on the other tests to generate its 
1234    input files.
1235    https://rt.cpan.org/Ticket/Display.html?id=9798
1236    Also, it wasn't testing pnm (pnm vs ppm mix-up)
1237
1238  - update the documentation of hardinvert to match the change in 0.62.
1239    https://rt.cpan.org/Ticket/Display.html?id=59785
1240
1241  - added hardinvertall filter which also inverts the alpha channel
1242    (sorry for the mess)
1243
1244  - when probing for TIFF, set LD_RUN_PATH just as the Makefile does so
1245    the probe can find the library for the test run.
1246    https://rt.cpan.org/Ticket/Display.html?id=57518
1247
1248 Imager 0.75 - 20 Jun 2010
1249 ===========
1250
1251  - use PERL_NO_GET_CONTEXT to slightly improve performance on threaded
1252    perls (not measured)
1253
1254 Bugs:
1255
1256  - an opacity fill based on a fountain fill would segfault when
1257    filling an 8-bit/sample image.
1258
1259  - merge thickline branch polygon fix
1260    https://rt.cpan.org/Ticket/Display.html?id=43518
1261
1262 Imager 0.74 - 7 May 2010
1263 ===========
1264
1265 Bug fixes:
1266
1267  - read_multi() didn't handle a missing file format library correctly,
1268    aborting on failing to call i_readgif_multi_wiol() or
1269    i_readtiff_multi_wiol().
1270
1271  - fix spelling errors patched by Debian
1272    http://svn.debian.org/viewsvn/pkg-perl/trunk/libimager-perl/debian/patches/spelling.patch?revision=54839&view=markup
1273
1274  - add an (unshipped) author test to spellcheck Imager's POD.
1275
1276  - update the TIFF file format documentation
1277    https://rt.cpan.org/Ticket/Display.html?id=56510
1278
1279  - lib/Imager/IO.pod was written almost 4 years ago but never shipped.
1280
1281 Imager 0.73 - 15 Mar 2010
1282 ===========
1283
1284  - implement outline circles, both anti-aliased and not
1285    https://rt.cpan.org/Ticket/Display.html?id=19755
1286
1287  - a combine => "none" fill to a 1 or 3 channel image would produce
1288    the incorrect colour.
1289
1290 Imager 0.72 - 09 Dec 2009
1291 ===========
1292
1293 Bump version for release, since 0.71_03 is stable with CPAN testers.
1294
1295 Imager 0.71_03 - 5 Dec 2009
1296 ==============
1297
1298  - further adjust the threads test so it only performs the tests on
1299    perls where it's expected to work, and only if the threads module
1300    can be loaded.
1301
1302 Imager 0.71_02 - 1 Dec 2009
1303 ==============
1304
1305  - adjust the way we load the threads module for the threads test so
1306    it works with non-threaded perls
1307
1308 Imager 0.71_01 - 30 Nov 2009
1309 ===========
1310
1311 Bug fixes:
1312
1313  - use scanline oriented operations to flip images instead of pixel
1314    operations
1315    https://rt.cpan.org/Ticket/Display.html?id=39278
1316
1317  - use double/sample operations to flip large sample images instead of
1318    8-bit sample operations.
1319    https://rt.cpan.org/Ticket/Display.html?id=39280
1320
1321  - fix POD nits
1322    https://rt.cpan.org/Ticket/Display.html?id=51874
1323
1324  - prevent double-frees when someone creates Imager objects and then
1325    creates a thread.  Note: this just handles some simple cases,
1326    Imager doesn't support perl threads, and isn't likely to.
1327    https://rt.cpan.org/Ticket/Display.html?id=52268
1328
1329 Imager 0.71 - 16 Nov 2009
1330 ===========
1331
1332  - add the opacity fill type - an adaptor that modifies the opacity of
1333    another fill.
1334
1335 Bug fixes:
1336
1337  - the conv filter now enforces that the sum of the coefficients is
1338    non-zero.  Also, rather than skipping pixels off the edge off the
1339    edge of the image, the closest edge pixel is used.  Previously
1340    dividing by the zero sum of coefficients could cause invalid
1341    results or runtime exceptions.
1342    Thanks to David Cantrell's Alpha-NetBSD CPAN test box for revealing
1343    this bug.
1344
1345 Imager 0.70 - 21 Sep 2009
1346 ===========
1347
1348 Bug fixes:
1349
1350  - release image row and comments memory on all error returns in gif
1351    reader
1352
1353  - handle zero length extensions, previously this would cause a null
1354    pointer dereference
1355    Thanks to Krzysztof Wojtaś for the test data and fix for this.
1356
1357  - an integer division meant that preview scaling to below 1 pixel
1358    wide or high (which isn't too useful anyway) was calculating using
1359    NaNs on most platforms, and causing an exception on others.
1360    Thanks to David Cantrell for producing a backtrace of the crash on
1361    his Alpha-NetBSD CPAN test box which made it possible to track this
1362    down.
1363
1364 Imager 0.69 - 08 Sep 2009
1365 ===========
1366
1367 Bug fixes:
1368
1369  - broken test fix - was attempting to call a function skip_all, when
1370    that should be a parameter to plan().
1371
1372  - briefly document apidocs.perl, the tool used to build
1373    Imager::APIRef and make some minor enhancements
1374
1375  - various minor documentation enhancements and fixes.
1376
1377 Imager 0.68 - 07 Sep 2009
1378 ===========
1379
1380  - Imager->new(file => $filename) and other similar incantations will
1381    load the given file.
1382    https://rt.cpan.org/Ticket/Display.html?id=48261
1383
1384 Bug fixes:
1385
1386  - avoid using CHECK as a label in Imager::Test
1387    http://nntp.x.perl.org/group/perl.cpan.testers/5220921
1388
1389  - re-work most image file test files that require a library into
1390    separate library present/not present files to remove stupidly long
1391    conditionals
1392
1393  - don't treat rubthrough() outside the bounds of the target image as
1394    an error.
1395    http://nntp.x.perl.org/group/perl.cpan.testers/5185716
1396
1397 Imager 0.67_01 - 02 Sep 2009
1398 ==============
1399
1400 Bug fixes:
1401
1402  - correct documentation of default of raw image interleave read
1403    parameter
1404    https://rt.cpan.org/Ticket/Display.html?id=42074
1405
1406  - add raw_ prefix to raw read parameters, though the original names
1407    still work.
1408
1409  - fail the read if an invalid raw_interleave parameter is supplied
1410
1411  - warn if no interleave or raw_interleave parameter is supplied,
1412    since the documented default was wrong, and incompatible with the
1413    write format
1414
1415  - for reading raw images, if raw_storechannels > raw_datachannels,
1416    set the extra channels in the image to 0
1417
1418  - when probing for executables like freetype-config, search for .bat
1419    and .cmd on MSWin32, as well as .exe.
1420    https://rt.cpan.org/Ticket/Display.html?id=49275
1421
1422  - re-work the external libraries section of README:
1423    - list Debian and Redhat package names for each library
1424    - reformatting
1425    - update URLs
1426
1427  - use the new EU::MM META_MERGE facility instead of generating
1428    META.yml from scratch
1429    https://rt.cpan.org/Ticket/Display.html?id=47888
1430
1431  - use Devel::CheckLib (bundled, modified) to check which release of
1432    libtiff is installed and reject 3.9.0
1433    http://bugzilla.maptools.org/show_bug.cgi?id=2088
1434    http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=543079
1435
1436 Imager 0.67 - 12 Dec 2008
1437 ===========
1438
1439 Bug fixes:
1440
1441  - fix a packaging error
1442
1443 Imager 0.66 - 12 Dec 2008
1444 ===========
1445
1446  - 24-bit color .ICO/.CUR files can now be read.
1447
1448 Bug fixes:
1449
1450  - an optimization skipping 0 src alpha values could cause the
1451    rubthrough() to read past the end of a buffer.
1452    http://www.nntp.perl.org/group/perl.cpan.testers/2008/05/msg1509184.html
1453
1454  - corrected a reference leak where writing GIFs would leak memory.
1455    This could also happen calling to_paletted().
1456    Also documented the underlying long existing feature where the
1457    colors parameter is filled with the generated color table and added
1458    tests for it.
1459    http://rt.cpan.org/Ticket/Display.html?id=41028
1460
1461  - write out the image size in bytes field of a BMP correctly.
1462    http://rt.cpan.org/Ticket/Display.html?id=41406
1463
1464  - add limited tests for Imager::ExtUtils
1465
1466  - make Imager::ExtUtils->includes use an absolute path, since
1467    a relative path could cause failures using Inline::C.
1468    http://rt.cpan.org/Ticket/Display.html?id=37353
1469
1470  - re-arrange the POD for Imager::Font::BBox:
1471    - mark total_width(), pos_width(), end_offset() obsolete, since
1472      they're mostly for backwards compatibility
1473    - group width methods and height methods
1474    https://rt.cpan.org/Ticket/Display.html?id=39999
1475
1476 Imager 0.65 - 20 May 2008
1477 ===========
1478
1479 Bug fixes:
1480
1481  - In some cases when an error occurs reading those parts of a JPEG
1482    file after the image the scan-line buffer could be freed a second
1483    time.  In cases where the the error occured while reading the image
1484    data it's possible that the buffer could have leaked.
1485    Thanks to Gabriel Vasseur for reporting this and help in tracking
1486    it down.
1487
1488  - the gif_screen_height tag was overriding the screen width and being
1489    ignored for the screen height when present.
1490    https://rt.cpan.org/Public/Bug/Display.html?id=35568
1491
1492 Imager 0.64 - 23 April 2008
1493 ===========
1494
1495 This is a bug fix release.  This includes a fix for a possible
1496 security issue.
1497
1498 Bug fixes:
1499
1500  - Possible security issue: The floating point sample path for image
1501    based fills had a buffer overflow.  This would overwrite the end of
1502    a malloc()ed buffer with double precision floats.
1503    http://rt.cpan.org/Ticket/Display.html?id=35324
1504    CVE-2008-1928
1505
1506  - check that the result of fileno($fh) is defined rather than simply
1507    true when read() or write() is supplied with an fh parameter.
1508    http://rt.cpan.org/Ticket/Display.html?id=35139
1509
1510  - i_scale_axis() wasn't checking the result of i_img_new_ch()
1511    resulting in a SIGSEGV when attempting to scale an image to a size
1512    too large to fit in memory.  This is a NULL pointer access issue,
1513    not a buffer overflow.
1514    Added a check for the failure.
1515    scale_calculate() (and hence scale()) will now fail if any of the
1516    scale size parameters are a reference.
1517    http://rt.cpan.org/Ticket/Display.html?id=35172
1518
1519  - Regression: filling a greyscale image with a hatch used the wrong
1520    color channels from the supplied fg/bg colors.
1521    https://rt.cpan.org/Ticket/Display.html?id=35278
1522
1523  - fixed a related problem for image fills.
1524
1525 Imager 0.63 - 7 April 2008
1526 ===========
1527
1528 This release primarily contains changes to improve ease of use -
1529 rather than you having to convert images to the appropriate number of
1530 channels, Imager handles it internally.  How to handle drawing colors
1531 and the default combine mode is a thornier problem left for some other
1532 release.
1533
1534  - the font libraries are now only initialized when needed.
1535    http://rt.cpan.org/Ticket/Display.html?id=28825
1536
1537  - moved the imtoc.perl code into Imager::Preprocess
1538
1539  - paste() and rubthrough() now adapt the source image data to the
1540    destination, so you can now safely paste/rubthrough from greyscale
1541    images to color images or back, or from alpha channel images to
1542    noalpha channels or back.
1543    https://rt.cpan.org/Ticket/Display.html?id=30908
1544
1545  - rubthrough() now falls back to pasting when the source doesn't have
1546    an alpha channel.  This effectively treats the source as having a
1547    max alpha channel, the right thing to do.
1548    http://rt.cpan.org/Ticket/Display.html?id=29944
1549
1550  - re-worked most of the area filling code to use a common set of
1551    functions when filling.
1552    Corrected normal combine mode.
1553    Rewrote most of the combine modes to match the way the SVG draft
1554    defines them with respect to a translucent source and destination.
1555    Added tests for translucent source and destination.
1556    Added tests to check 8-bit/sample and double/sample combines work
1557    similarly.
1558    https://rt.cpan.org/Ticket/Display.html?id=29879
1559
1560  - writing a 2 or 4 channel image to a JPEG file will now write that
1561    image as if composited against a background, black by default,
1562    overridable with the i_background tag/parameter.
1563    https://rt.cpan.org/Ticket/Display.html?id=29876
1564
1565  - writing a 2 or 4 channel image to a PGM/PPM file will now write
1566    that image as if composited against a background, black by default,
1567    overridable with the i_background tag/parameter.
1568    http://rt.cpan.org/Ticket/Display.html?id=30074
1569
1570  - writing a 2 or 4 channel image to a BMP file will now write that
1571    image as if composited against a background, black by default,
1572    overridable with the i_background tag/parameter.
1573    http://rt.cpan.org/Ticket/Display.html?id=30075
1574
1575 Bug fixes:
1576
1577  - Imager::Matrix2d->translate() now only requires one of the x or y
1578    parameters.
1579    http://rt.cpan.org/Ticket/Display.html?id=29937
1580
1581  - mixing qtype scaling now sets all channels of a pixel to zero if
1582    the pixel has zero coverage (zero alpha).  This should produce more
1583    compressible output files.
1584    http://rt.cpan.org/Ticket/Display.html?id=32324
1585
1586  - removed the pointless #! line from lib/Imager/Font/Wrap.pm
1587    Noticed when I saw:
1588    https://bugzilla.redhat.com/show_bug.cgi?id=166254
1589    I'm not changing the #! lines of the sample code, since it's sample
1590    code, not intended for installation.
1591    http://rt.cpan.org/Ticket/Display.html?id=33408
1592
1593  - some TGA images weren't being detected correctly as TGA images
1594    https://rt.cpan.org/Ticket/Display.html?id=32925
1595
1596  - handling of the left-over bit for 16-bit/pixel TGA images has been
1597    changed to match the behaviour of the GIMP.  Previously the bit
1598    being set was treated as an opaque pixel, but one user reported a
1599    problem with loading such an image.  I haven't been able to find any
1600    tools beyond the GIMP that handle alpha-channel 16-bit TGAs, so
1601    I'll match it's behaviour.  See issue 114913 in the GIMP's
1602    bugzilla.
1603    http://rt.cpan.org/Ticket/Display.html?id=32926
1604
1605 Imager 0.62 - 10 December 2007
1606 ===========
1607
1608  - Makefile.PL now expands ~/path supplied to --incpath or --libpath
1609    to /path under your home directory.
1610    http://rt.cpan.org/Ticket/Display.html?id=29484
1611
1612  - the old dynaload code used Mach API functions to load dynamic
1613    libraries on Mac OS X.  These APIs have been deprecated in OS X
1614    10.5 and were causing some build problems.
1615    So henceforth Imager uses the dlopen() family of functions, and you 
1616    will need version 10.3 or later of OS X.
1617
1618  - added the det() function to the transform2() engine.
1619    added the sample quad_to_square.pl
1620    Courtesy Richard Fairhurst.
1621    http://rt.cpan.org/Ticket/Display.html?id=31244
1622
1623 Bug fixes:
1624
1625  - samples/gifscale.pl sourced the base value for gif_top from
1626    gif_left.
1627    Thanks to Eleneldil G. Arilou for pointing this out.
1628
1629  - t/t82inline.t no longer loads B at runtime, to work around a bug
1630    in some 5.005_0[45] installations.
1631    http://rt.cpan.org/Ticket/Display.html?id=30508
1632
1633  - work around Module::Depends::Intrusive bug #21229
1634    http://rt.cpan.org/Ticket/Display.html?id=30520
1635
1636  - the hardinvert filter no-longer inverts the alpha channel.
1637    http://rt.cpan.org/Ticket/Display.html?id=30002
1638
1639  - the hardinvert filter now supports large samples
1640
1641 Imager 0.61_02 - 28 November 2007
1642 ==============
1643
1644  - major TIFF support re-work
1645    http://rt.cpan.org/Ticket/Display.html?id=20329
1646
1647  - added a C level image interface for accessing samples from 1-32
1648    bits, exposed this at the perl level in getsamples()
1649
1650  - the conv filter now works at floating point precision for high bit
1651    images
1652
1653  - added is_bilevel method to test whether an image should be written as
1654    a bilevel image if the image format supports it.
1655
1656  - added -log-stderr as an Imager import list option
1657
1658  - added some important types to Imager::APIRef
1659
1660  - added test_image_double() to Imager::Test
1661
1662 Bug fixes:
1663
1664  - Imager::Fountain couldn't read GIMP gradient files with 10 or more
1665    segments
1666
1667  - the scale() method with qtype mixing now handles images with an
1668    alpha channel correctly.
1669
1670  - fixed a broken link from the "animated GIF" entry in the concept index.
1671    Thanks to Slaven Rezic.
1672    http://rt.cpan.org/Ticket/Display.html?id=30889
1673
1674  - on some perl's the infix expression parser test would fail due to
1675    actions in the grammar returning false.  Made sure all actions return
1676    a true value.
1677    Thanks to Richard Fairhurst for spending a lot of time in tracking
1678    down this problem.
1679    http://rt.cpan.org/Public/Bug/Display.html?id=29562
1680
1681 Imager 0.61 - 5 November 2007
1682 ===========
1683
1684  - added samples/gifscale.pl, which adjusts the screen size/position tags
1685    when scaling an animated gif
1686    http://rt.cpan.org/Ticket/Display.html?id=27591
1687
1688 Bug fixes:
1689
1690  - correct handling of sz in matrix_transform() - this should allow
1691    perspective type transformations to work now.
1692    http://rt.cpan.org/Ticket/Display.html?id=29936
1693
1694  - prevent a cast to integer warning on x64 builds in datatypes.c
1695    also fixed some other type warnings
1696    https://rt.cpan.org/Ticket/Display.html?id=30204
1697
1698  - some sub-directory tests depended on files produced by the parent
1699    directory tests
1700    http://rt.cpan.org/Ticket/Display.html?id=30203
1701
1702  - Imager::Font::Wrap doesn't correctly set savepos
1703    thanks to Nikita Dedik and Eleneldil G. Arilou for reporting this.
1704    http://rt.cpan.org/Ticket/Display.html?id=29771
1705
1706  - test 171 in t/t01introvert.t was failing on perls configured to
1707    use long double.
1708    http://rt.cpan.org/Ticket/Display.html?id=29413
1709
1710  - the code for the transform2() uminus operator was missing a break.
1711    Added tests for better code coverage of the ops.
1712    http://rt.cpan.org/Ticket/Display.html?id=29296
1713
1714  - the SGI RLE compression code could overflow its compression buffer
1715    http://rt.cpan.org/Ticket/Display.html?id=30334
1716
1717  - the 32-bit output function used by the SGI code only handled values
1718    under 0x10000.  This was most noticable when writing large RLE images.
1719    http://rt.cpan.org/Ticket/Display.html?id=30335
1720
1721  - validate chan_count for chans == NULL for each of the i_gsamp()
1722    implementations.
1723    http://rt.cpan.org/Ticket/Display.html?id=28985
1724
1725  - attempt to work around the test failure at 
1726    http://www.nntp.perl.org/group/perl.cpan.testers/2007/09/msg650810.html
1727    http://rt.cpan.org/Ticket/Display.html?id=29562
1728
1729  - improve the error messages produced when attempting to read or write
1730    an unknown image file format.
1731    http://rt.cpan.org/Ticket/Display.html?id=30103
1732
1733  - improve the transform2() documentation
1734    http://rt.cpan.org/Ticket/Display.html?id=29267
1735
1736  - correctly generate the author key in META.yml
1737    http://rt.cpan.org/Ticket/Display.html?id=30377
1738
1739  - correctly blend a rotated (or matrix_transformed()) image when
1740    performing interpolation in the presence of an alpha channel.
1741    Also corrected the centring of the rotated image on the output
1742    image.
1743
1744 Imager 0.60 - 30 August 2007
1745 ===========
1746
1747  - Finished/rewrote Arnar's old SGI RGB file format support, so Imager
1748    now has full SGI RGB image format, including RLE and 16-bit/sample
1749    images.
1750    https://rt.cpan.org/Ticket/Display.html?id=8666
1751
1752  - logging functions are now available in the API
1753
1754  - applied Gabriel Vasseur's patch
1755    added documentation, further tests, and support for greyscale images
1756    Obviously problems are my fault :)
1757    https://rt.cpan.org/Ticket/Display.html?id=28142
1758
1759  - the mask for ICO/CUR images is now applied as an alpha channel to
1760    the returned image.  For the old behaviour, supply ico_masked => 0
1761    to read() or read_multi().  This should be less confusing when
1762    using Imager as a general image processor.
1763    https://rt.cpan.org/Ticket/Display.html?id=29001
1764
1765 Bug fixes:
1766
1767  - in some cases it's possible for giflib/libungif to return color 
1768    indexes outside the range of colors defined by the image's palette.
1769    We now expand the palette to match the indexes used.
1770    Thanks to Gabriel Vasseur for reporting this.
1771
1772  - fixed various memory leaks that could occur when failing to read png,
1773    jpeg, bmp or tga files.
1774
1775  - to avoid confusion, channels not present in the image are returned as
1776    zero by getscanline().  This has no effect on the C level i_glin()
1777    and i_glinf() API functions which continue to not set the unused
1778    channels.
1779
1780  - the convert() method now returns an image of the same sample size as
1781    the source image.
1782    https://rt.cpan.org/Ticket/Display.html?id=28492
1783
1784  - remove repeated text in Imager::Files
1785    http://rt.cpan.org/Ticket/Display.html?id=27589
1786
1787  - be even more explicit that scale() and friends don't modify the source
1788    image, but return a new image.
1789    http://rt.cpan.org/Ticket/Display.html?id=28570
1790
1791  - improve the error message from errstr() when you try to load a font
1792    for which the driver hasn't been built in Imager.
1793    http://rt.cpan.org/Ticket/Display.html?id=27571
1794
1795  - transparency is now enabled by default when writing GIF images
1796    http://rt.cpan.org/Ticket/Display.html?id=27615
1797
1798  - Imager would not load on Windows 98
1799    http://rt.cpan.org/Ticket/Display.html?id=27653
1800
1801 Imager 0.59 - 14 June 2007
1802 ===========
1803
1804 Bug fixes:
1805
1806  - fixes a regression introduced by the fixes for RT 11972
1807    http://rt.cpan.org/Ticket/Display.html?id=27546
1808
1809  - cropping outside the image would return an Imager object with
1810    no low-level image object, instead of returning false.
1811    Fixed by: Philip Gwyn (Leolo)
1812    http://rt.cpan.org/Ticket/Display.html?id=27509
1813
1814 Imager 0.58 - 16 May 2007
1815 ===========
1816
1817 No significant changes from 0.57_01.
1818
1819 Imager 0.57_01 - 11 May 2007
1820 ==============
1821
1822  - added to_rgb16 to produce a 16-bit/sample version of an image
1823
1824  - improve freetype 1.x text output efficiency
1825
1826 Bug fixes:
1827
1828  - search another place for rgb.txt, and check all the places 
1829    Imager::Color checks when deciding whether to skip testing it
1830    http://rt.cpan.org/Ticket/Display.html?id=26064
1831
1832  - use a convolution kernel size based on the stddev rather than a
1833    fixed size when performing a gaussian blur
1834    http://rt.cpan.org/Ticket/Display.html?id=25645
1835
1836  - document the difference() method's mindist parameter, and debug it.
1837
1838  - put the Imager release number in the Inline::C generated code to
1839    regenerate Inline code when a new release of Imager is installed.
1840    http://rt.cpan.org/Ticket/Display.html?id=26278
1841
1842  - fix rendering on alpha channel images for the FreeType 1.x driver.
1843    http://rt.cpan.org/Ticket/Display.html?id=11972
1844
1845  - fix rendering on alpha channel images for the T1lib driver.
1846    http://rt.cpan.org/Ticket/Display.html?id=11972
1847
1848  - reworked library probing, we can now set more than one probe
1849    function for a library.  Disabled the default (non-freetype-config)
1850    library probe and added an extra probe function that searches for
1851    both ft2build.h and whatever it includes, and adds -I as needed.
1852    Hopefully this will fix build problems like
1853    http://www.nntp.perl.org/group/perl.cpan.testers/2007/05/msg472281.html
1854    http://rt.cpan.org/Ticket/Display.html?id=26086
1855
1856 Imager 0.57 - 30 Apr 2007
1857 ===========
1858
1859 This is a maintenence release fixing a security issue in Imager.
1860
1861  - CRITICAL: a specially crafted compressed BMP file can cause a buffer
1862    overflow in malloced memory.  There will be further discussion of
1863    this issue in the ticket below.
1864    http://rt.cpan.org/Ticket/Display.html?id=26811
1865    CVE-2007-2459  CVE-2007-2413
1866    The descriptions at cve.mitre.org varied in quality, please see the
1867    ticket at rt.cpan.org for a more accurate description of the issue.
1868
1869 Imager 0.56 - 1 Apr 2007
1870 ===========
1871
1872  - added support for reading 16-bit/sample PGM/PPM images
1873
1874  - added support for writing 16-bit/sample PGM/PPM images
1875
1876  - improved performance of reading PBM/PGM/PPM images
1877
1878  - added support for writing PBM images if the image is paletted and
1879    contains only black and white
1880
1881  - added a new make_colors value - "mono"
1882
1883  - switched from the svn log Changes to a manual Changes to reduce
1884    noise
1885
1886  - new sample code - samples/flasher.pl
1887
1888 Bug fixes:
1889
1890  - CRITICAL: the "Imager" typemap entry (not used by Imager itself)
1891    was returning an image object with an extra reference, this
1892    resulted in a memory leak.
1893    http://rt.cpan.org/Ticket/Display.html?id=24992
1894
1895  - fix rendering on alpha channel images for the FreeType 2.x driver
1896    http://rt.cpan.org/Ticket/Display.html?id=11972
1897
1898  - reading bmp files now consitently handles short reads.  You can now
1899    supply a parameter to treat a short read as successful and set
1900    i_incomplete
1901    http://rt.cpan.org/Ticket/Display.html?id=8426
1902
1903  - previously, reading ASCII PBM files required spaces between samples,
1904    even though the format doesn't require that
1905
1906  - improved documentation of the unsharpmask filter (I hope)
1907    http://rt.cpan.org/Ticket/Display.html?id=25531
1908
1909  - force flushing of the output from i_tt_dump_names() and test output
1910    in t/t35ttfont.t to prevent output from being mixed up.
1911    https://rt.cpan.org/Ticket/Display.html?id=24859
1912
1913  - rewrite a conditional expression as an if() to hopefully work around
1914    a bug in the pre-4.0 GCC Apple shipped with OS X 10.4.
1915    https://rt.cpan.org/Ticket/Display.html?id=25561
1916
1917  - avoid Data::Dumper in regops.perl to support older releases of perl
1918    https://rt.cpan.org/Ticket/Display.html?id=24391
1919
1920 Imager 0.55 - 16 Dec 2006
1921 ===========
1922
1923 This is primarily a bug fix release.
1924
1925 Note: Test::More is now a pre-requisite for Imager and is no longer bundled.
1926
1927 There is one new feature:
1928
1929  - the Win32 font driver now supports UTF8 (RT 22166)
1930    http://www.cpanforum.com/threads/3276
1931    http://rt.cpan.org/Ticket/Display.html?id=22166
1932
1933 Several bugs were fixed:
1934
1935  - the string() method would not output the string "0"
1936    http://rt.cpan.org/Public/Bug/Display.html?id=21770
1937
1938  - fills.c was failing to compile on Solaris 10 (compiler unknown)
1939    http://rt.cpan.org/Public/Bug/Display.html?id=21944
1940
1941  - the gif_disposal and gif_user_input tags weren't being read from
1942    the file correctly
1943    http://rt.cpan.org/Public/Bug/Display.html?id=22192
1944
1945  - gif.c was failing to build under MSVC
1946    http://rt.cpan.org/Ticket/Display.html?id=23922
1947
1948  - in some cases strings passed to the string() method were treated as
1949    terminated by NUL (chr 0)
1950    http://rt.cpan.org/Public/Bug/Display.html?id=21770
1951
1952  - on "MSWin32" perl builds we now link to -lzlib instead of -lz since
1953    that's the default build name for zlib on Win32.
1954    http://rt.cpan.org/Ticket/Display.html?id=23064
1955
1956  - search $Config{incpath} for headers too, which we should have been
1957    doing all along.
1958
1959 Win32 font driver fixes:
1960
1961  - the global descent value from bounding box was the wrong sign
1962    http://www.cpanforum.com/threads/3276
1963
1964  - if the first or last glyph overflowed the left or right side of the
1965    advance width they would be clipped
1966
1967
1968 Imager 0.54 - 14 Sep 2006
1969 ===========
1970
1971 This is primarily a feature release:
1972
1973  - a new qtype value 'mixing' has been added to the scale()
1974    method. This is faster than 'normal', slower than 'preview'. This
1975    is based on the method used by pnmscale, and seems to produce less
1976    blurry results than normal.
1977    http://rt.cpan.org/Public/Bug/Display.html?id=20677
1978
1979  - the rubthrough() method can now render onto images with an alpha
1980    channel.
1981    http://rt.cpan.org/Ticket/Display.html?id=20678
1982
1983  - the read_multi() method now falls back to calling doing a single
1984    image read via the read() method and write_multi() will now fall
1985    back to calling write() if a single image is supplied. This means
1986    you can simply call the read_multi() or write_multi() functions
1987    without having to check if the type is formatted by that method.
1988    http://rt.cpan.org/Ticket/Display.html?id=19457
1989    http://rt.cpan.org/Ticket/Display.html?id=19458
1990
1991  - the GIF loop extension can now be written. If you don't have
1992    libungif/giflib 4.1.4 (or some distribution's bugfixed equivalent) you
1993    should upgrade.
1994    http://rt.cpan.org/Ticket/Display.html?id=21185
1995
1996  - getscanline() and setscanline() can now read/write palette index
1997    based data from/to the image for paletted images, by setting type to
1998    'index'.
1999    http://rt.cpan.org/Ticket/Display.html?id=20338
2000
2001  - we no longer hassle you to disable GIF support
2002    http://rt.cpan.org/Ticket/Display.html?id=20687
2003
2004  - minor documentation fixes
2005
2006
2007 Imager 0.53 - 26 Jul 2006
2008 ===========
2009
2010 This is a bugfix release.
2011
2012 Some test code was left in a code path not covered by the test
2013 suite. A test was added to cover this code path and the test code was
2014 removed.
2015 http://rt.cpan.org/Public/Bug/Display.html?id=20705
2016
2017
2018 Imager 0.52 - 25 Jul 2006
2019 ===========
2020
2021 This is primarily a feature release, but contains a fair few bug
2022 fixes, new features:
2023
2024  - ability to read and write MS Windows ICO and CUR files
2025
2026  - you can now add file format plugins to support new file formats
2027
2028  - add POD coverage tests
2029
2030  - setcolors() and addcolors() now accept color names and so on
2031    instead of requiring Imager::Color objects.
2032    http://rt.cpan.org/Ticket/Display.html?id=20056
2033
2034  - flood_fill() can now fill to a specified border color instead of
2035    just to the area the same color as the seed.
2036    http://rt.cpan.org/Ticket/Display.html?id=19618
2037
2038
2039 Bug fixes:
2040
2041  - bounding_box for the T1 driver wasn't converting UTF8 to ascii when
2042    calculating the advance width.
2043    http://rt.cpan.org/Public/Bug/Display.html?id=20554
2044
2045  - bounding_box for the T1 driver wasn't including leading and
2046    trailing spaces in the bounding box as the other drivers did, it also
2047    produced strange results for empty strings or strings containing only
2048    spaces
2049
2050  - when reading CMYK jpeg images they were being transferred to the
2051    image object as is, producing a four channel image. It only looked ok
2052    due to an old still unfixed Photoshop bug. We now convert from the
2053    inverted CMYK that photoshop (and Corel for example) produce into RGB.
2054    http://rt.cpan.org/Ticket/Display.html?id=20416
2055
2056  - reading a CYMK TIFF would result in a 4 channel image, reading any
2057    image with more than 4 channels (eg. RGB with 2 alpha channels) would
2058    result in an error.
2059    http://rt.cpan.org/Ticket/Display.html?id=20415
2060
2061  - added /usr/local/include to the default include search path, since
2062    we were already searching /usr/local/lib for libraries.
2063
2064 And various minor fixes and documentation updates.
2065
2066
2067 Imager 0.51 - 23 Apr 2006
2068 ===========
2069
2070  - fix a validation bug when processing JPEG EXIF data that can cause
2071    a crash
2072    http://rt.cpan.org/Public/Bug/Display.html?id=18496
2073
2074  - fix mis-processing of the src_maxx and src_maxy parameters of the
2075    paste() method
2076    http://rt.cpan.org/Public/Bug/Display.html?id=18712
2077
2078  - fix a problem in Imager's "smart" handling of the color parameter
2079    to various methods.
2080    http://rt.cpan.org/Public/Bug/Display.html?id=18561
2081
2082
2083 Imager 0.50 - 29 Mar 2006
2084 ===========
2085
2086  - CRITICAL: fixes a segmentation fault from attempting to write a 2
2087    or 4 channel image to jpeg or a 2 channel image to tga where the
2088    output is an in-memeory buffer.
2089    http://rt.cpan.org/Public/Bug/Display.html?id=18397
2090
2091  - fixes an incorrect pointer parameter in the PNG code
2092    http://rt.cpan.org/Public/Bug/Display.html?id=18051
2093
2094  - skip Inline::C tests when building in a directory with spaces
2095    http://rt.cpan.org/Public/Bug/Display.html?id=18049