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