avoid a leaked reference if we create the colors array ref ourselves
[imager.git] / Changes
CommitLineData
7623d340
TC
1Imager release history. Older releases can be found in Changes.old
2
17d9fe35
TC
3Imager 0.66 - unreleased
4===========
5
c668f2cb
TC
6 - 24-bit color .ICO/.CUR files can now be read.
7
17d9fe35
TC
8Bug fixes:
9
10 - an optimization skipping 0 src alpha values could cause the
11 rubthrough() to read past the end of a buffer.
12 http://www.nntp.perl.org/group/perl.cpan.testers/2008/05/msg1509184.html
13
0727e3f5 14Imager 0.65 - 20 May 2008
546ea21c
TC
15===========
16
17Bug fixes:
18
19 - In some cases when an error occurs reading those parts of a JPEG
20 file after the image the scan-line buffer could be freed a second
21 time. In cases where the the error occured while reading the image
22 data it's possible that the buffer could have leaked.
23 Thanks to Gabriel Vasseur for reporting this and help in tracking
24 it down.
25
43b2b326
TC
26 - the gif_screen_height tag was overriding the screen width and being
27 ignored for the screen height when present.
28 https://rt.cpan.org/Public/Bug/Display.html?id=35568
29
e02d22d2 30Imager 0.64 - 23 April 2008
de470892
TC
31===========
32
e02d22d2
TC
33This is a bug fix release. This includes a fix for a possible
34security issue.
35
de470892
TC
36Bug fixes:
37
e02d22d2
TC
38 - Possible security issue: The floating point sample path for image
39 based fills had a buffer overflow. This would overwrite the end of
40 a malloc()ed buffer with double precision floats.
41 http://rt.cpan.org/Ticket/Display.html?id=35324
6912d85a 42 CVE-2008-1928
e02d22d2 43
de470892
TC
44 - check that the result of fileno($fh) is defined rather than simply
45 true when read() or write() is supplied with an fh parameter.
46 http://rt.cpan.org/Ticket/Display.html?id=35139
47
48 - i_scale_axis() wasn't checking the result of i_img_new_ch()
49 resulting in a SIGSEGV when attempting to scale an image to a size
50 too large to fit in memory. This is a NULL pointer access issue,
51 not a buffer overflow.
52 Added a check for the failure.
53 scale_calculate() (and hence scale()) will now fail if any of the
54 scale size parameters are a reference.
55 http://rt.cpan.org/Ticket/Display.html?id=35172
56
04f85f63
TC
57 - Regression: filling a greyscale image with a hatch used the wrong
58 color channels from the supplied fg/bg colors.
59 https://rt.cpan.org/Ticket/Display.html?id=35278
60
a256aec5
TC
61 - fixed a related problem for image fills.
62
49240201 63Imager 0.63 - 7 April 2008
33b0ffa6
TC
64===========
65
242d7497
TC
66This release primarily contains changes to improve ease of use -
67rather than you having to convert images to the appropriate number of
68channels, Imager handles it internally. How to handle drawing colors
69and the default combine mode is a thornier problem left for some other
70release.
71
d1555273
TC
72 - the font libraries are now only initialized when needed.
73 http://rt.cpan.org/Ticket/Display.html?id=28825
74
9b1ec2b8
TC
75 - moved the imtoc.perl code into Imager::Preprocess
76
77 - paste() and rubthrough() now adapt the source image data to the
78 destination, so you can now safely paste/rubthrough from greyscale
79 images to color images or back, or from alpha channel images to
80 noalpha channels or back.
81 https://rt.cpan.org/Ticket/Display.html?id=30908
82
83 - rubthrough() now falls back to pasting when the source doesn't have
84 an alpha channel. This effectively treats the source as having a
85 max alpha channel, the right thing to do.
86 http://rt.cpan.org/Ticket/Display.html?id=29944
87
88 - re-worked most of the area filling code to use a common set of
89 functions when filling.
90 Corrected normal combine mode.
91 Rewrote most of the combine modes to match the way the SVG draft
92 defines them with respect to a translucent source and destination.
93 Added tests for translucent source and destination.
94 Added tests to check 8-bit/sample and double/sample combines work
95 similarly.
96 https://rt.cpan.org/Ticket/Display.html?id=29879
97
07d9c639
TC
98 - writing a 2 or 4 channel image to a JPEG file will now write that
99 image as if composited against a background, black by default,
100 overridable with the i_background tag/parameter.
6e4af7d4
TC
101 https://rt.cpan.org/Ticket/Display.html?id=29876
102
07d9c639
TC
103 - writing a 2 or 4 channel image to a PGM/PPM file will now write
104 that image as if composited against a background, black by default,
fa90de94
TC
105 overridable with the i_background tag/parameter.
106 http://rt.cpan.org/Ticket/Display.html?id=30074
107
07d9c639
TC
108 - writing a 2 or 4 channel image to a BMP file will now write that
109 image as if composited against a background, black by default,
110 overridable with the i_background tag/parameter.
111 http://rt.cpan.org/Ticket/Display.html?id=30075
112
33b0ffa6
TC
113Bug fixes:
114
115 - Imager::Matrix2d->translate() now only requires one of the x or y
116 parameters.
117 http://rt.cpan.org/Ticket/Display.html?id=29937
118
2757bad0
TC
119 - mixing qtype scaling now sets all channels of a pixel to zero if
120 the pixel has zero coverage (zero alpha). This should produce more
121 compressible output files.
122 http://rt.cpan.org/Ticket/Display.html?id=32324
123
3da08517
TC
124 - removed the pointless #! line from lib/Imager/Font/Wrap.pm
125 Noticed when I saw:
126 https://bugzilla.redhat.com/show_bug.cgi?id=166254
127 I'm not changing the #! lines of the sample code, since it's sample
128 code, not intended for installation.
129 http://rt.cpan.org/Ticket/Display.html?id=33408
130
242d7497
TC
131 - some TGA images weren't being detected correctly as TGA images
132 https://rt.cpan.org/Ticket/Display.html?id=32925
133
134 - handling of the left-over bit for 16-bit/pixel TGA images has been
135 changed to match the behaviour of the GIMP. Previously the bit
136 being set was treated as an opaque pixel, but one user reported a
137 problem with loading such an image. I haven't been able to find any
138 tools beyond the GIMP that handle alpha-channel 16-bit TGAs, so
139 I'll match it's behaviour. See issue 114913 in the GIMP's
140 bugzilla.
141 http://rt.cpan.org/Ticket/Display.html?id=32926
142
5daa9d34 143Imager 0.62 - 10 December 2007
ac8138b0
TC
144===========
145
d8e0c3ba
TC
146 - Makefile.PL now expands ~/path supplied to --incpath or --libpath
147 to /path under your home directory.
148 http://rt.cpan.org/Ticket/Display.html?id=29484
149
50ff958e
TC
150 - the old dynaload code used Mach API functions to load dynamic
151 libraries on Mac OS X. These APIs have been deprecated in OS X
152 10.5 and were causing some build problems.
153 So henceforth Imager uses the dlopen() family of functions, and you
154 will need version 10.3 or later of OS X.
155
3309187a
TC
156 - added the det() function to the transform2() engine.
157 added the sample quad_to_square.pl
158 Courtesy Richard Fairhurst.
159 http://rt.cpan.org/Ticket/Display.html?id=31244
160
ac8138b0
TC
161Bug fixes:
162
163 - samples/gifscale.pl sourced the base value for gif_top from
164 gif_left.
165 Thanks to Eleneldil G. Arilou for pointing this out.
166
678a9a65
TC
167 - t/t82inline.t no longer loads B at runtime, to work around a bug
168 in some 5.005_0[45] installations.
169 http://rt.cpan.org/Ticket/Display.html?id=30508
170
171 - work around Module::Depends::Intrusive bug #21229
172 http://rt.cpan.org/Ticket/Display.html?id=30520
ac8138b0 173
bea65b1f
TC
174 - the hardinvert filter no-longer inverts the alpha channel.
175 http://rt.cpan.org/Ticket/Display.html?id=30002
176
177 - the hardinvert filter now supports large samples
178
b7809486 179Imager 0.61_02 - 28 November 2007
f74e6efc 180==============
874c55db 181
bd8052a6
TC
182 - major TIFF support re-work
183 http://rt.cpan.org/Ticket/Display.html?id=20329
184
185 - added a C level image interface for accessing samples from 1-32
186 bits, exposed this at the perl level in getsamples()
187
188 - the conv filter now works at floating point precision for high bit
189 images
190
191 - added is_bilevel method to test whether an image should be written as
192 a bilevel image if the image format supports it.
193
194 - added -log-stderr as an Imager import list option
195
196 - added some important types to Imager::APIRef
197
198 - added test_image_double() to Imager::Test
199
874c55db
TC
200Bug fixes:
201
202 - Imager::Fountain couldn't read GIMP gradient files with 10 or more
203 segments
204
205 - the scale() method with qtype mixing now handles images with an
206 alpha channel correctly.
207
8d17eae9
TC
208 - fixed a broken link from the "animated GIF" entry in the concept index.
209 Thanks to Slaven Rezic.
210 http://rt.cpan.org/Ticket/Display.html?id=30889
211
d3bf4eaf
TC
212 - on some perl's the infix expression parser test would fail due to
213 actions in the grammar returning false. Made sure all actions return
214 a true value.
8b96ad6b
TC
215 Thanks to Richard Fairhurst for spending a lot of time in tracking
216 down this problem.
680c329d 217 http://rt.cpan.org/Public/Bug/Display.html?id=29562
d3bf4eaf 218
d06f6707 219Imager 0.61 - 5 November 2007
1cfa190e
TC
220===========
221
222 - added samples/gifscale.pl, which adjusts the screen size/position tags
223 when scaling an animated gif
224 http://rt.cpan.org/Ticket/Display.html?id=27591
225
8a2cd317
TC
226Bug fixes:
227
e7ac18bd
TC
228 - correct handling of sz in matrix_transform() - this should allow
229 perspective type transformations to work now.
230 http://rt.cpan.org/Ticket/Display.html?id=29936
231
8a2cd317
TC
232 - prevent a cast to integer warning on x64 builds in datatypes.c
233 also fixed some other type warnings
234 https://rt.cpan.org/Ticket/Display.html?id=30204
235
9188b23e
TC
236 - some sub-directory tests depended on files produced by the parent
237 directory tests
238 http://rt.cpan.org/Ticket/Display.html?id=30203
239
7febff1d
TC
240 - Imager::Font::Wrap doesn't correctly set savepos
241 thanks to Nikita Dedik and Eleneldil G. Arilou for reporting this.
242 http://rt.cpan.org/Ticket/Display.html?id=29771
243
76411e99
TC
244 - test 171 in t/t01introvert.t was failing on perls configured to
245 use long double.
246 http://rt.cpan.org/Ticket/Display.html?id=29413
247
3f29de50
TC
248 - the code for the transform2() uminus operator was missing a break.
249 Added tests for better code coverage of the ops.
250 http://rt.cpan.org/Ticket/Display.html?id=29296
251
ed107438
TC
252 - the SGI RLE compression code could overflow its compression buffer
253 http://rt.cpan.org/Ticket/Display.html?id=30334
254
255 - the 32-bit output function used by the SGI code only handled values
256 under 0x10000. This was most noticable when writing large RLE images.
257 http://rt.cpan.org/Ticket/Display.html?id=30335
258
c7481ae1
TC
259 - validate chan_count for chans == NULL for each of the i_gsamp()
260 implementations.
261 http://rt.cpan.org/Ticket/Display.html?id=28985
262
ff37fc3f
TC
263 - attempt to work around the test failure at
264 http://www.nntp.perl.org/group/perl.cpan.testers/2007/09/msg650810.html
265 http://rt.cpan.org/Ticket/Display.html?id=29562
266
f245645a
TC
267 - improve the error messages produced when attempting to read or write
268 an unknown image file format.
269 http://rt.cpan.org/Ticket/Display.html?id=30103
270
333d7485
TC
271 - improve the transform2() documentation
272 http://rt.cpan.org/Ticket/Display.html?id=29267
273
3b115720
TC
274 - correctly generate the author key in META.yml
275 http://rt.cpan.org/Ticket/Display.html?id=30377
276
13c9a303
TC
277 - correctly blend a rotated (or matrix_transformed()) image when
278 performing interpolation in the presence of an alpha channel.
8a071022
TC
279 Also corrected the centring of the rotated image on the output
280 image.
13c9a303 281
0e622083 282Imager 0.60 - 30 August 2007
bcff4dd9
TC
283===========
284
d5477d3d
TC
285 - Finished/rewrote Arnar's old SGI RGB file format support, so Imager
286 now has full SGI RGB image format, including RLE and 16-bit/sample
287 images.
288 https://rt.cpan.org/Ticket/Display.html?id=8666
289
290 - logging functions are now available in the API
291
a60905e4
TC
292 - applied Gabriel Vasseur's patch
293 added documentation, further tests, and support for greyscale images
294 Obviously problems are my fault :)
295 https://rt.cpan.org/Ticket/Display.html?id=28142
296
413dc198
TC
297 - the mask for ICO/CUR images is now applied as an alpha channel to
298 the returned image. For the old behaviour, supply ico_masked => 0
299 to read() or read_multi(). This should be less confusing when
300 using Imager as a general image processor.
301 https://rt.cpan.org/Ticket/Display.html?id=29001
302
bcff4dd9
TC
303Bug fixes:
304
305 - in some cases it's possible for giflib/libungif to return color
306 indexes outside the range of colors defined by the image's palette.
307 We now expand the palette to match the indexes used.
308 Thanks to Gabriel Vasseur for reporting this.
309
02576e8d
TC
310 - fixed various memory leaks that could occur when failing to read png,
311 jpeg, bmp or tga files.
312
b3aa972f
TC
313 - to avoid confusion, channels not present in the image are returned as
314 zero by getscanline(). This has no effect on the C level i_glin()
315 and i_glinf() API functions which continue to not set the unused
316 channels.
317
d5477d3d
TC
318 - the convert() method now returns an image of the same sample size as
319 the source image.
320 https://rt.cpan.org/Ticket/Display.html?id=28492
321
baa880ef
TC
322 - remove repeated text in Imager::Files
323 http://rt.cpan.org/Ticket/Display.html?id=27589
324
325 - be even more explicit that scale() and friends don't modify the source
326 image, but return a new image.
327 http://rt.cpan.org/Ticket/Display.html?id=28570
328
0561d49c
TC
329 - improve the error message from errstr() when you try to load a font
330 for which the driver hasn't been built in Imager.
331 http://rt.cpan.org/Ticket/Display.html?id=27571
332
d8a39ce0
TC
333 - transparency is now enabled by default when writing GIF images
334 http://rt.cpan.org/Ticket/Display.html?id=27615
335
5730d6e7
TC
336 - Imager would not load on Windows 98
337 http://rt.cpan.org/Ticket/Display.html?id=27653
338
b4996113 339Imager 0.59 - 14 June 2007
e6e94ab0
TC
340===========
341
342Bug fixes:
343
344 - fixes a regression introduced by the fixes for RT 11972
345 http://rt.cpan.org/Ticket/Display.html?id=27546
346
9fc9d0ca
TC
347 - cropping outside the image would return an Imager object with
348 no low-level image object, instead of returning false.
349 Fixed by: Philip Gwyn (Leolo)
350 http://rt.cpan.org/Ticket/Display.html?id=27509
351
7e7508dd
TC
352Imager 0.58 - 16 May 2007
353===========
354
355No significant changes from 0.57_01.
356
1970a2c7
TC
357Imager 0.57_01 - 11 May 2007
358==============
d034a178 359
f8e36694
TC
360 - added to_rgb16 to produce a 16-bit/sample version of an image
361
95b2bff4
TC
362 - improve freetype 1.x text output efficiency
363
d034a178
TC
364Bug fixes:
365
366 - search another place for rgb.txt, and check all the places
367 Imager::Color checks when deciding whether to skip testing it
368 http://rt.cpan.org/Ticket/Display.html?id=26064
369
73962964
TC
370 - use a convolution kernel size based on the stddev rather than a
371 fixed size when performing a gaussian blur
372 http://rt.cpan.org/Ticket/Display.html?id=25645
373
01b84320
TC
374 - document the difference() method's mindist parameter, and debug it.
375
7e7508dd 376 - put the Imager release number in the Inline::C generated code to
22f9ca48
TC
377 regenerate Inline code when a new release of Imager is installed.
378 http://rt.cpan.org/Ticket/Display.html?id=26278
379
fa16b6c6
TC
380 - fix rendering on alpha channel images for the FreeType 1.x driver.
381 http://rt.cpan.org/Ticket/Display.html?id=11972
382
4c84ccfb
TC
383 - fix rendering on alpha channel images for the T1lib driver.
384 http://rt.cpan.org/Ticket/Display.html?id=11972
385
1fe8316b
TC
386 - reworked library probing, we can now set more than one probe
387 function for a library. Disabled the default (non-freetype-config)
388 library probe and added an extra probe function that searches for
389 both ft2build.h and whatever it includes, and adds -I as needed.
390 Hopefully this will fix build problems like
391 http://www.nntp.perl.org/group/perl.cpan.testers/2007/05/msg472281.html
392 http://rt.cpan.org/Ticket/Display.html?id=26086
393
bb5712de
TC
394Imager 0.57 - 30 Apr 2007
395===========
396
397This is a maintenence release fixing a security issue in Imager.
398
399 - CRITICAL: a specially crafted compressed BMP file can cause a buffer
400 overflow in malloced memory. There will be further discussion of
401 this issue in the ticket below.
402 http://rt.cpan.org/Ticket/Display.html?id=26811
7e7508dd
TC
403 CVE-2007-2459 CVE-2007-2413
404 The descriptions at cve.mitre.org varied in quality, please see the
405 ticket at rt.cpan.org for a more accurate description of the issue.
bb5712de 406
d034a178 407Imager 0.56 - 1 Apr 2007
7623d340
TC
408===========
409
410 - added support for reading 16-bit/sample PGM/PPM images
411
412 - added support for writing 16-bit/sample PGM/PPM images
413
414 - improved performance of reading PBM/PGM/PPM images
415
416 - added support for writing PBM images if the image is paletted and
417 contains only black and white
418
419 - added a new make_colors value - "mono"
420
421 - switched from the svn log Changes to a manual Changes to reduce
422 noise
423
1225d272
TC
424 - new sample code - samples/flasher.pl
425
7623d340
TC
426Bug fixes:
427
428 - CRITICAL: the "Imager" typemap entry (not used by Imager itself)
429 was returning an image object with an extra reference, this
430 resulted in a memory leak.
431 http://rt.cpan.org/Ticket/Display.html?id=24992
432
433 - fix rendering on alpha channel images for the FreeType 2.x driver
434 http://rt.cpan.org/Ticket/Display.html?id=11972
435
436 - reading bmp files now consitently handles short reads. You can now
437 supply a parameter to treat a short read as successful and set
438 i_incomplete
439 http://rt.cpan.org/Ticket/Display.html?id=8426
440
441 - previously, reading ASCII PBM files required spaces between samples,
442 even though the format doesn't require that
443
1225d272
TC
444 - improved documentation of the unsharpmask filter (I hope)
445 http://rt.cpan.org/Ticket/Display.html?id=25531
446
447 - force flushing of the output from i_tt_dump_names() and test output
448 in t/t35ttfont.t to prevent output from being mixed up.
449 https://rt.cpan.org/Ticket/Display.html?id=24859
450
451 - rewrite a conditional expression as an if() to hopefully work around
452 a bug in the pre-4.0 GCC Apple shipped with OS X 10.4.
453 https://rt.cpan.org/Ticket/Display.html?id=25561
454
455 - avoid Data::Dumper in regops.perl to support older releases of perl
456 https://rt.cpan.org/Ticket/Display.html?id=24391
457
7623d340
TC
458Imager 0.55 - 16 Dec 2006
459===========
460
461This is primarily a bug fix release.
462
463Note: Test::More is now a pre-requisite for Imager and is no longer bundled.
464
465There is one new feature:
466
467 - the Win32 font driver now supports UTF8 (RT 22166)
468 http://www.cpanforum.com/threads/3276
469 http://rt.cpan.org/Ticket/Display.html?id=22166
470
471Several bugs were fixed:
472
473 - the string() method would not output the string "0"
474 http://rt.cpan.org/Public/Bug/Display.html?id=21770
475
476 - fills.c was failing to compile on Solaris 10 (compiler unknown)
477 http://rt.cpan.org/Public/Bug/Display.html?id=21944
478
479 - the gif_disposal and gif_user_input tags weren't being read from
480 the file correctly
481 http://rt.cpan.org/Public/Bug/Display.html?id=22192
482
483 - gif.c was failing to build under MSVC
484 http://rt.cpan.org/Ticket/Display.html?id=23922
485
486 - in some cases strings passed to the string() method were treated as
487 terminated by NUL (chr 0)
488 http://rt.cpan.org/Public/Bug/Display.html?id=21770
489
490 - on "MSWin32" perl builds we now link to -lzlib instead of -lz since
491 that's the default build name for zlib on Win32.
492 http://rt.cpan.org/Ticket/Display.html?id=23064
493
494 - search $Config{incpath} for headers too, which we should have been
495 doing all along.
496
497Win32 font driver fixes:
498
499 - the global descent value from bounding box was the wrong sign
500 http://www.cpanforum.com/threads/3276
501
502 - if the first or last glyph overflowed the left or right side of the
503 advance width they would be clipped
504
505
506Imager 0.54 - 14 Sep 2006
507===========
508
509This is primarily a feature release:
510
511 - a new qtype value 'mixing' has been added to the scale()
512 method. This is faster than 'normal', slower than 'preview'. This
513 is based on the method used by pnmscale, and seems to produce less
514 blurry results than normal.
515 http://rt.cpan.org/Public/Bug/Display.html?id=20677
516
517 - the rubthrough() method can now render onto images with an alpha
518 channel.
519 http://rt.cpan.org/Ticket/Display.html?id=20678
520
521 - the read_multi() method now falls back to calling doing a single
522 image read via the read() method and write_multi() will now fall
523 back to calling write() if a single image is supplied. This means
524 you can simply call the read_multi() or write_multi() functions
525 without having to check if the type is formatted by that method.
526 http://rt.cpan.org/Ticket/Display.html?id=19457
527 http://rt.cpan.org/Ticket/Display.html?id=19458
528
529 - the GIF loop extension can now be written. If you don't have
530 libungif/giflib 4.1.4 (or some distribution's bugfixed equivalent) you
531 should upgrade.
532 http://rt.cpan.org/Ticket/Display.html?id=21185
533
534 - getscanline() and setscanline() can now read/write palette index
535 based data from/to the image for paletted images, by setting type to
536 'index'.
537 http://rt.cpan.org/Ticket/Display.html?id=20338
538
539 - we no longer hassle you to disable GIF support
540 http://rt.cpan.org/Ticket/Display.html?id=20687
541
542 - minor documentation fixes
543
544
545Imager 0.53 - 26 Jul 2006
546===========
547
548This is a bugfix release.
549
550Some test code was left in a code path not covered by the test
551suite. A test was added to cover this code path and the test code was
552removed.
553http://rt.cpan.org/Public/Bug/Display.html?id=20705
554
555
556Imager 0.52 - 25 Jul 2006
557===========
558
559This is primarily a feature release, but contains a fair few bug
560fixes, new features:
561
562 - ability to read and write MS Windows ICO and CUR files
563
564 - you can now add file format plugins to support new file formats
565
566 - add POD coverage tests
567
568 - setcolors() and addcolors() now accept color names and so on
569 instead of requiring Imager::Color objects.
570 http://rt.cpan.org/Ticket/Display.html?id=20056
571
572 - flood_fill() can now fill to a specified border color instead of
573 just to the area the same color as the seed.
574 http://rt.cpan.org/Ticket/Display.html?id=19618
575
576
577Bug fixes:
578
579 - bounding_box for the T1 driver wasn't converting UTF8 to ascii when
580 calculating the advance width.
581 http://rt.cpan.org/Public/Bug/Display.html?id=20554
582
583 - bounding_box for the T1 driver wasn't including leading and
584 trailing spaces in the bounding box as the other drivers did, it also
585 produced strange results for empty strings or strings containing only
586 spaces
587
588 - when reading CMYK jpeg images they were being transferred to the
589 image object as is, producing a four channel image. It only looked ok
590 due to an old still unfixed Photoshop bug. We now convert from the
591 inverted CMYK that photoshop (and Corel for example) produce into RGB.
592 http://rt.cpan.org/Ticket/Display.html?id=20416
593
594 - reading a CYMK TIFF would result in a 4 channel image, reading any
595 image with more than 4 channels (eg. RGB with 2 alpha channels) would
596 result in an error.
597 http://rt.cpan.org/Ticket/Display.html?id=20415
598
599 - added /usr/local/include to the default include search path, since
600 we were already searching /usr/local/lib for libraries.
601
602And various minor fixes and documentation updates.
603
604
605Imager 0.51 - 23 Apr 2006
606===========
607
608 - fix a validation bug when processing JPEG EXIF data that can cause
609 a crash
610 http://rt.cpan.org/Public/Bug/Display.html?id=18496
611
612 - fix mis-processing of the src_maxx and src_maxy parameters of the
613 paste() method
614 http://rt.cpan.org/Public/Bug/Display.html?id=18712
615
616 - fix a problem in Imager's "smart" handling of the color parameter
617 to various methods.
618 http://rt.cpan.org/Public/Bug/Display.html?id=18561
619
620
621Imager 0.50 - 29 Mar 2006
622===========
623
624 - CRITICAL: fixes a segmentation fault from attempting to write a 2
625 or 4 channel image to jpeg or a 2 channel image to tga where the
626 output is an in-memeory buffer.
627 http://rt.cpan.org/Public/Bug/Display.html?id=18397
628
629 - fixes an incorrect pointer parameter in the PNG code
630 http://rt.cpan.org/Public/Bug/Display.html?id=18051
631
632 - skip Inline::C tests when building in a directory with spaces
633 http://rt.cpan.org/Public/Bug/Display.html?id=18049