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