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