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