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