fix the link in the getheight() entry in the method index
[imager.git] / Changes
CommitLineData
7623d340
TC
1Imager release history. Older releases can be found in Changes.old
2
7ef6338c
TC
3Imager 0.84_02 - 22 Aug 2011
4==============
5
6Development release, this will become 0.85 if CPAN testers is
7favourable.
6b7197d0
TC
8
9Bug fixes:
10
11 - the image file limits set by set_file_limits() weren't being
12 checked when reading TIFF files.
13 https://rt.cpan.org/Ticket/Display.html?id=69915
14
5970bd39
TC
15 - Provide more information about file format module load errors on a
16 failed image file read() or write().
17 https://rt.cpan.org/Ticket/Display.html?id=69194
18
4ce3551c
TC
19 - use TIFFReadDirectory() instead of TIFFSetDirectory() to iterate
20 through TIFF images, since it checks for IFD loops.
21 https://rt.cpan.org/Ticket/Display.html?id=69914
22
a16bca6d
TC
23 - don't leak memory when out of range palette indexes are supplied to
24 setscanline().
25 https://rt.cpan.org/Ticket/Display.html?id=69242
26
27 - require a later version of CPAN::Meta to ensure JSON::PP and
28 CPAN::Meta::YAML are available.
29 https://rt.cpan.org/Ticket/Display.html?id=69008
30
ac575c5f
TC
31 - hoist the per-line calculations for the flines implementations, and
32 modernize the tests a bit.
33 https://rt.cpan.org/Ticket/Display.html?id=70126
34
86c8d19a
TC
35 - detect snprintf()/vsnprintf() (cheat by using Config.pm) and use
36 them when available.
37 https://rt.cpan.org/Ticket/Display.html?id=69147
38
a3fd7df7
TC
39 - if t1lib failed to reinitialize it would be left as marked
40 initialized.
41 https://rt.cpan.org/Ticket/Display.html?id=69877
42
5fd542c7
TC
43 - update the bundled (and still modified) Devel::CheckLib
44 https://rt.cpan.org/Ticket/Display.html?id=69170
45
fa61d195
TC
46Imager 0.84_01 - 8 Aug 2011
47==============
48
49Development release as a sanity check for the types re-work.
8d14daab
TC
50
51Massive types re-work:
52
53 - the type used internally for pixel co-ordinates and image sizes is
54 now 64-bit on 64-bit platforms (at least sane ones).
55
56 - size_t is now used consistently for memory block sizes.
57
58 - since this changes the binary interface, the Imager API version has
59 been incremented. Any module that uses the API will need to be
60 rebuilt. In most cases that will be enough, but calls to any APIs
61 that take a pointer to image sizes may need source changes.
62
63 - you should be able to create very large images on 64-bit systems,
64 if you have enough memory. Successfully created a 32768 x 49192 x
65 3 channel image, filled with a tiled image and scaled it. The
66 unscaled image was also successfully saved to a JPEG.
67
68 - check the image size before attempting to write BMP, GIF, JPEG,
69 PNG, SGI, TGA, TIFF images.
70
71 - correctly handle reading TGA images over 32767 pixels wide or tall.
72
73Incidental changes:
74
75 - the gif_left and gif_top tags are now clamped to non-negative
76 values when writing a GIF image.
77
78 - removed dead callback read/write code
79
80The default maximum memory size when reading files is now 1G.
81
bd80e51e 82Imager 0.84 - 20 Jun 2011
b1e66a82
TC
83===========
84
85 - Imager no longer inherits from Exporter (unless you're running an
86 old, old perl.
87
92e9df65
TC
88 - Imager can now write progressive JPEGs (it could always read them).
89 https://rt.cpan.org/Ticket/Display.html?id=68691
90
10ea52a3
TC
91Bug fixes:
92
93 - re-work, document and test Imager's logging facility.
94 https://rt.cpan.org/Ticket/Display.html?id=65227
95
4989229f
TC
96 - fix META.yml testing and the generated META.yml
97 https://rt.cpan.org/Ticket/Display.html?id=65235
98
3bcba6df
TC
99 - test and add error reporting to to_*() family methods
100
bfe6ba3f
TC
101 - add to_rgb_double() method.
102 https://rt.cpan.org/Ticket/Display.html?id=65101
103
e1a42e19
TC
104 - Imager no longer exports anything by default
105 https://rt.cpan.org/Ticket/Display.html?id=65228
106
6d068d36
TC
107 - convert colors to grayscale if the supplied (or generated) palette
108 contains only grays when performing error diffusion color
109 translation.
110 https://rt.cpan.org/Ticket/Display.html?id=68508
111
59c150a4
TC
112 - writing a paletted image to GIF wouldn't always use the colors
113 supplied (or generated, eg. via make_colors => "mono"), which was
114 confusing at best.
115 https://rt.cpan.org/Ticket/Display.html?id=67912
116
5b480b14
TC
117 - replace (imager|tony)@imager.perl.org in the doc, since I don't
118 plan to continue receiving mail at that address.
119 https://rt.cpan.org/Ticket/Display.html?id=68591
120
101861e2 121Imager 0.83 - 21 May 2011
46c21d48
TC
122===========
123
124Bug fixes:
125
126 - diag() the error message on failure for some TIFF tests that are
127 failing on a Solaris smoker.
128 http://www.cpantesters.org/cpan/report/6396db1e-8090-11e0-9682-112b785ebe45
129
cd758af2
TC
130Imager 0.82_01 - 17 May 2011
131==============
132
133Dev release, in case the compose tests are too sensitive.
deb1a916
TC
134
135Bug fixes:
136
137 - Imager::Font::T1 incorrectly checked for absolute filename under
138 Win32. Thanks to kmx for the report and fix.
139 https://rt.cpan.org/Ticket/Display.html?id=67963
140
618a3282
TC
141 - compose() with the target, source or mask position off the top or
142 left of the target image didn't clip the source image correctly.
143 https://rt.cpan.org/Ticket/Display.html?id=67220
144
145 - compose() now returns a useful error message on a non-positive
146 opacity.
147
148 - compose.im now at 100% test coverage. (As opposed to, umm, much,
149 much less.)
150
c1d16c8f 151Imager 0.82 - 14 Mar 2011
2368cfec
TC
152===========
153
154Bug fixes:
155
156 - eliminate calls to i_has_format() from the test suite, since it's
157 no longer a useful way to check for file format support. Eliminate
158 i_has_format() from the functions exposed via XS.
159 https://rt.cpan.org/Ticket/Display.html?id=65863
160
7540f84a
TC
161 - eliminate calls to note(), which isn't in the (very old) version of
162 Test::More we have as a pre-requisite. note() is modern enough
163 that I don't feel a need to require a Test::More upgrade for it.
164 https://rt.cpan.org/Ticket/Display.html?id=65864
165
81984f30
TC
166 - skip the threads tests on Test::More 2.00_*
167 https://rt.cpan.org/Ticket/Display.html?id=65812
168
57fc3f48
TC
169 - add an (unshipped) test to check Imager's internal POD links
170 https://rt.cpan.org/Ticket/Display.html?id=65749
171
d97c8dbd
TC
172 - improve the library detection summary
173 https://rt.cpan.org/Ticket/Display.html?id=9675
174
c901f27d
TC
175 - increase the version of Imager::Font::Type1 so that upgrades don't
176 downgrade the version in this file.
177 https://rt.cpan.org/Ticket/Display.html?id=66250
178
179 - if we see an -rpath (or -R) option in $Config{lddlflags} supply
180 that option for the directories that would normally go in
181 LD_RUN_PATH. Typically an explicit -rpath overrides LD_RUN_PATH.
182 https://rt.cpan.org/Ticket/Display.html?id=65955
183
533bab3e 184Imager 0.81 - 14 Feb 2011
416e9814
TC
185===========
186
187 - added coverage tests for masked images (maskimg.c @100% test coverage)
188
9ea78101
TC
189 - add hsv() method to Imager::Color
190 Thanks to Leolo (Philip Gwyn)
191 https://rt.cpan.org/Ticket/Display.html?id=65385
192
1f289f50
TC
193 - split libt1 Type 1 font support into a sub-module
194 https://rt.cpan.org/Ticket/Display.html?id=49616 (partial)
195
2c331f9f
TC
196 - add a preload() class method for use in forking servers, and to
197 work around limitations in PAR.
198 https://rt.cpan.org/Ticket/Display.html?id=65665
199
416e9814
TC
200Bug fixes:
201
202 - paletted writes to a masked image are now masked correctly.
203 Revealed by new coverage tests.
204
130225b1
TC
205 - update the filter plugin documentation.
206 https://rt.cpan.org/Ticket/Display.html?id=56513
207
4326b23a 208 - add the matrix() method to Imager::Matrix2d to allow creation of a
a34dc54c
TC
209 matrix with specified co-efficients. You can now multiple an
210 Imager::Matrix2d object by a 9 element array ref or a number.
4326b23a
TC
211 https://rt.cpan.org/Ticket/Display.html?id=29938
212
9ea78101
TC
213 - really fix loading TTF fonts with FT2 when FT1 isn't available.
214 Thanks to Leolo (Philip Gwyn)
215 https://rt.cpan.org/Ticket/Display.html?id=65386
216 https://rt.cpan.org/Ticket/Display.html?id=62855
217
40e78f96
TC
218 - make sure each test script that needs testout/ creates it.
219 https://rt.cpan.org/Ticket/Display.html?id=65088
220
afee75f6
TC
221 - handle a slightly different warning from libtiff 4.x
222 https://rt.cpan.org/Ticket/Display.html?id=65268
223
52b0d318
TC
224 - the sat transform2() op returned an incorrect saturation.
225 https://rt.cpan.org/Ticket/Display.html?id=65391
226
d33f20c1 227Imager 0.80 - 17 Jan 2011
95c08d71
TC
228===========
229
9a5df694
TC
230 - added coverage tests for Imager::Fountain and Imager::Color::Float
231
232 - Imager is now maintained in git
233 http://git.imager.perl.org/imager.git
234 git://git.imager.perl.org/imager.git
235
95c08d71
TC
236Bug fixes:
237
238 - images with an translucent alpha channel were not scaled correctly
239 by the default (qtype=normal) scaling method.
240 https://rt.cpan.org/Public/Bug/Display.html?id=63922
241
34c03f04
TC
242 - Imager::Color::Float now translates "#FFFFFF" to white instead of
243 just a little darker.
244
9a5df694
TC
245 - make the default color map build algorithm "mediancut". This
246 changes the default color map builder for writing GIFs back to what
247 it was in 0.77, reverting a performance regression.
0348fe07
TC
248 https://rt.cpan.org/Ticket/Display.html?id=64785
249
416e9814
TC
250 - handle failure to create a masked image correctly
251
95c08d71 252Imager 0.79 - 10 Dec 2010
62869327
TC
253===========
254
255 - add Imager::Test to the POD coverage tests and document the missing
256 functions.
257
2a2c791f
TC
258 - the convert() method now optimizes the case where all output
259 channels are either 0, sourced from a single input channel or 1.
260 This significantly speeds up presets like "addalpha", "green".
261 https://rt.cpan.org/Ticket/Display.html?id=51254
262
b5c0ab7f
TC
263 - add wiggle.pl sample, as suggested by Dan Oppenheim.
264
b47464c1
TC
265 - add the combine() method to combine channels from multiple source
266 images into a new image
267 https://rt.cpan.org/Ticket/Display.html?id=11872
268
62869327
TC
269Bug fixes:
270
271 - treat the co-efficients for convert() as doubles instead of floats.
272
d67dd866
TC
273 - If a higher (earlier) priority font handler failed to load, that
274 would crash preventing loading of later font handlers.
9413a3f3
TC
275 https://rt.cpan.org/Ticket/Display.html?id=62855
276
a9120a5e
TC
277 - parse defines from the options returned by pkg-config --cflags
278 https://rt.cpan.org/Ticket/Display.html?id=63223
02f040a6
TC
279
280 - a regen of the MANIFEST revealed that GIF and FT2 tests weren't
281 included in the tarball. They are now included.
a9120a5e 282
893474f1 283Imager 0.78 - 4 Oct 2010
f5b4354e
TC
284===========
285
286Bug fixes:
287
288 - don't access deprecated members of the png_structp.
289 https://rt.cpan.org/Ticket/Display.html?id=60242
290
8289f78b
TC
291 - document that using color objects is faster than supplying colors
292 by name, etc.
293 https://rt.cpan.org/Ticket/Display.html?id=61047
294
0c3c1180
TC
295 - Imager::Probe now accepts array references for incpath and libpath.
296 https://rt.cpan.org/Ticket/Display.html?id=60244
297
b6035795 298Imager 0.77_02 - 27 Sep 2010
aca4e30a
TC
299==============
300
95b9922f 301 - moved Win32, FreeType 2 font support into sub-modules.
aca4e30a
TC
302 https://rt.cpan.org/Ticket/Display.html?id=49616 (partial)
303 Uses Imager::Probe now.
304 https://rt.cpan.org/Public/Bug/Display.html?id=61328
305
c6683e4d
TC
306 - tested successfully with jpeg-8b
307 https://rt.cpan.org/Ticket/Display.html?id=60221
308
e85532b9
TC
309Bug fixes:
310
311 - from _01: look for missing file support test files in the right
312 places.
313
353eb6e7
TC
314 - flood_fill() wouldn't fill the right side of a single scan-line
315 fill area.
316 Thanks to Nicolas Roggli for reporting this.
317
95b9922f
TC
318 - flood_fill wouldn't fill to the left edge of the image if the
319 starting line didn't reach the left edge.
320 Thanks to Nicolas Roggli for reporting this.
321
beb9ba23
TC
322Imager 0.77_01 - 13 Sep 2010
323==============
82f14556
TC
324
325 - add each library-directory/pkgconfig/ to the pkg-config search path
326 in Imager::Probe.
327 Thanks to Justin Davis.
328 https://rt.cpan.org/Ticket/Display.html?id=60491
329
8ab27e7e
TC
330 - moved GIF, TIFF, JPEG file handling code into sub-modules in
331 preparation for separate distribution.
ec6d8908
TC
332 https://rt.cpan.org/Ticket/Display.html?id=49616 (partial)
333
173c91ba
TC
334 - optimize filled box drawing (color, not fill)
335
82f14556
TC
336Bug fixes:
337
338 - Imager::Probe was calling ExtUtils::Liblist to initialize
339 LD_RUN_PATH supplying an undefined value rather than the found
340 directory. Thanks to Justin Davis.
341 https://rt.cpan.org/Ticket/Display.html?id=60491
342
b851aeeb
TC
343 - only prepend ./ to font filenames when passing them to T1Lib and
344 then only when it would use its search mechanisms.
345 https://rt.cpan.org/Ticket/Display.html?id=60509
346
173c91ba 347 - fix the cache check for the X rgb.txt loader. This is typically
cb4f51d6
TC
348 used for color translation on Unix-like systems, and the fix
349 improves performance of supplying colors by name by about 80 times.
350 Test code that managed 3400 10x10 pixel boxes/second sped up to
351 25700 boxes/second.
b851aeeb 352
d3a96113
TC
353 - clarify that Imager doesn't write EXIF metadata to images.
354 https://rt.cpan.org/Ticket/Display.html?id=60637
355
356 - Imager::Probe can now search subdirectories under its include path.
357 Used by the PNG Makefile.PL to find headers and libraries when they
358 aren't in the base directory, as in cygwin.
359 https://rt.cpan.org/Ticket/Display.html?id=60635
360
43452432
TC
361Imager 0.77 - 11 Aug 2010
362===========
363
364I don't want Imager::File::PNG indexed as part of Imager, but forgot
365to update the META.yml before updating the version.
366
367 - don't index Imager::File::PNG as part of Imager
368
369 - add resources to META.yml
370
371Imager 0.76 - not released
120f4287
TC
372===========
373
374Bug fixes:
375
376 - the align_string() method would ignore a string of "0" due to a
377 mis-use of C< ||= >.
378 Thanks to Maurice Height for reporting this.
379 https://rt.cpan.org/Ticket/Display.html?id=60199
380
0e66b07f
TC
381Imager 0.75_03 - 09 Aug 2010
382==============
383
384Bug fixes:
385
386 - read_types() and write_types() would include png when it wasn't
387 available due to a problem with the %formats tie
388
389 - handle dependent libraries correctly (eg -lpng requiring -lz) in
390 the code run phase of library probing.
391
7ac2e52e
TC
392Imager 0.75_02 - 07 Aug 2010
393==============
394
395Bug fixes:
396
397 - add file missing from MANIFEST, which was causing TIFF failures.
398
496ea64d
TC
399Imager 0.75_01 - 06 Aug 2010
400==============
401
402Test release for the new PNG probe.
75812841 403
a596d4f6
TC
404 - added the ability to read multiple-image PNM files.
405 Note that unlike the pbm/pgm/ppm specification this accepts mixed
406 format files and allows white space padding between files.
407 Thanks to Philip Gwyn (Leolo) for this patch.
408
1d7e3124
TC
409 - moved the PNG file handling code into a sub-module in preparation
410 for separate distribution.
411 https://rt.cpan.org/Ticket/Display.html?id=49616 (partial)
412 Also helps avoid complications from -I/-L compile/link options from
413 other libraries.
414
75812841
TC
415Bugs:
416
417 - Imager->new(data => $data) didn't try to process image file data in
418 $data
419 https://rt.cpan.org/Ticket/Display.html?id=58761
420
b6071a43
TC
421 - t/t50basicoo.t no longer depends on the other tests to generate its
422 input files.
423 https://rt.cpan.org/Ticket/Display.html?id=9798
424 Also, it wasn't testing pnm (pnm vs ppm mix-up)
425
a9da425a
TC
426 - update the documentation of hardinvert to match the change in 0.62.
427 https://rt.cpan.org/Ticket/Display.html?id=59785
428
5558f899
TC
429 - added hardinvertall filter which also inverts the alpha channel
430 (sorry for the mess)
431
10b85929
TC
432 - when probing for TIFF, set LD_RUN_PATH just as the Makefile does so
433 the probe can find the library for the test run.
434 https://rt.cpan.org/Ticket/Display.html?id=57518
435
75812841 436Imager 0.75 - 20 Jun 2010
b13a3ddb
TC
437===========
438
439 - use PERL_NO_GET_CONTEXT to slightly improve performance on threaded
440 perls (not measured)
441
46e2e4a3
TC
442Bugs:
443
8c194049
TC
444 - an opacity fill based on a fountain fill would segfault when
445 filling an 8-bit/sample image.
446
1c5252ed
TC
447 - merge thickline branch polygon fix
448 https://rt.cpan.org/Ticket/Display.html?id=43518
449
41c88ecd 450Imager 0.74 - 7 May 2010
8d46e5da
TC
451===========
452
453Bug fixes:
454
455 - read_multi() didn't handle a missing file format library correctly,
456 aborting on failing to call i_readgif_multi_wiol() or
457 i_readtiff_multi_wiol().
458
5715f7c3
TC
459 - fix spelling errors patched by Debian
460 http://svn.debian.org/viewsvn/pkg-perl/trunk/libimager-perl/debian/patches/spelling.patch?revision=54839&view=markup
461
462 - add an (unshipped) author test to spellcheck Imager's POD.
7468f3fa 463
38218f79
TC
464 - update the TIFF file format documentation
465 https://rt.cpan.org/Ticket/Display.html?id=56510
466
e17da819
TC
467 - lib/Imager/IO.pod was written almost 4 years ago but never shipped.
468
704f12d5 469Imager 0.73 - 15 Mar 2010
40068b33
TC
470===========
471
472 - implement outline circles, both anti-aliased and not
473 https://rt.cpan.org/Ticket/Display.html?id=19755
474
e958b64e
TC
475 - a combine => "none" fill to a 1 or 3 channel image would produce
476 the incorrect colour.
477
b2db3662
TC
478Imager 0.72 - 09 Dec 2009
479===========
480
481Bump version for release, since 0.71_03 is stable with CPAN testers.
482
6936706b
TC
483Imager 0.71_03 - 5 Dec 2009
484==============
485
486 - further adjust the threads test so it only performs the tests on
487 perls where it's expected to work, and only if the threads module
488 can be loaded.
489
0750777c
TC
490Imager 0.71_02 - 1 Dec 2009
491==============
492
48ad0e66
TC
493 - adjust the way we load the threads module for the threads test so
494 it works with non-threaded perls
0750777c 495
b89f0fcd 496Imager 0.71_01 - 30 Nov 2009
e41cfe8f
TC
497===========
498
499Bug fixes:
500
501 - use scanline oriented operations to flip images instead of pixel
502 operations
503 https://rt.cpan.org/Ticket/Display.html?id=39278
504
505 - use double/sample operations to flip large sample images instead of
506 8-bit sample operations.
507 https://rt.cpan.org/Ticket/Display.html?id=39280
508
de3ca2fd
TC
509 - fix POD nits
510 https://rt.cpan.org/Ticket/Display.html?id=51874
511
ffddd407
TC
512 - prevent double-frees when someone creates Imager objects and then
513 creates a thread. Note: this just handles some simple cases,
514 Imager doesn't support perl threads, and isn't likely to.
515 https://rt.cpan.org/Ticket/Display.html?id=52268
516
3517794b 517Imager 0.71 - 16 Nov 2009
6a3cbaef
TC
518===========
519
a16bae72
TC
520 - add the opacity fill type - an adaptor that modifies the opacity of
521 another fill.
522
6a3cbaef
TC
523Bug fixes:
524
525 - the conv filter now enforces that the sum of the coefficients is
526 non-zero. Also, rather than skipping pixels off the edge off the
527 edge of the image, the closest edge pixel is used. Previously
528 dividing by the zero sum of coefficients could cause invalid
529 results or runtime exceptions.
530 Thanks to David Cantrell's Alpha-NetBSD CPAN test box for revealing
531 this bug.
532
189d5775 533Imager 0.70 - 21 Sep 2009
2b82e731
TC
534===========
535
536Bug fixes:
537
538 - release image row and comments memory on all error returns in gif
539 reader
540
541 - handle zero length extensions, previously this would cause a null
542 pointer dereference
543 Thanks to Krzysztof Wojtaś for the test data and fix for this.
544
b3afeed5
TC
545 - an integer division meant that preview scaling to below 1 pixel
546 wide or high (which isn't too useful anyway) was calculating using
547 NaNs on most platforms, and causing an exception on others.
548 Thanks to David Cantrell for producing a backtrace of the crash on
549 his Alpha-NetBSD CPAN test box which made it possible to track this
550 down.
551
b1e29946 552Imager 0.69 - 08 Sep 2009
25f4e775
TC
553===========
554
b1e29946 555Bug fixes:
25f4e775
TC
556
557 - broken test fix - was attempting to call a function skip_all, when
558 that should be a parameter to plan().
559
b1e29946
TC
560 - briefly document apidocs.perl, the tool used to build
561 Imager::APIRef and make some minor enhancements
562
563 - various minor documentation enhancements and fixes.
564
5920304a 565Imager 0.68 - 07 Sep 2009
c5f447ac
TC
566===========
567
3c252111
TC
568 - Imager->new(file => $filename) and other similar incantations will
569 load the given file.
570 https://rt.cpan.org/Ticket/Display.html?id=48261
571
c5f447ac
TC
572Bug fixes:
573
574 - avoid using CHECK as a label in Imager::Test
575 http://nntp.x.perl.org/group/perl.cpan.testers/5220921
576
0d670555
TC
577 - re-work most image file test files that require a library into
578 separate library present/not present files to remove stupidly long
579 conditionals
580
581 - don't treat rubthrough() outside the bounds of the target image as
582 an error.
583 http://nntp.x.perl.org/group/perl.cpan.testers/5185716
584
8d800216
TC
585Imager 0.67_01 - 02 Sep 2009
586==============
500888da
TC
587
588Bug fixes:
589
590 - correct documentation of default of raw image interleave read
591 parameter
592 https://rt.cpan.org/Ticket/Display.html?id=42074
593
594 - add raw_ prefix to raw read parameters, though the original names
595 still work.
596
597 - fail the read if an invalid raw_interleave parameter is supplied
598
599 - warn if no interleave or raw_interleave parameter is supplied,
600 since the documented default was wrong, and incompatible with the
601 write format
602
603 - for reading raw images, if raw_storechannels > raw_datachannels,
604 set the extra channels in the image to 0
605
cd476e58
TC
606 - when probing for executables like freetype-config, search for .bat
607 and .cmd on MSWin32, as well as .exe.
608 https://rt.cpan.org/Ticket/Display.html?id=49275
500888da 609
f9a39263
TC
610 - re-work the external libraries section of README:
611 - list Debian and Redhat package names for each library
612 - reformatting
613 - update URLs
614
f45b774f
TC
615 - use the new EU::MM META_MERGE facility instead of generating
616 META.yml from scratch
617 https://rt.cpan.org/Ticket/Display.html?id=47888
618
d6b51d8c
TC
619 - use Devel::CheckLib (bundled, modified) to check which release of
620 libtiff is installed and reject 3.9.0
78645bd4
TC
621 http://bugzilla.maptools.org/show_bug.cgi?id=2088
622 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=543079
d6b51d8c 623
249af030
TC
624Imager 0.67 - 12 Dec 2008
625===========
626
627Bug fixes:
628
629 - fix a packaging error
630
cca21862 631Imager 0.66 - 12 Dec 2008
3c8fee33
TC
632===========
633
6b22ba84
TC
634 - 24-bit color .ICO/.CUR files can now be read.
635
3c8fee33
TC
636Bug fixes:
637
6b22ba84
TC
638 - an optimization skipping 0 src alpha values could cause the
639 rubthrough() to read past the end of a buffer.
640 http://www.nntp.perl.org/group/perl.cpan.testers/2008/05/msg1509184.html
641
5c0d0ddf
TC
642 - corrected a reference leak where writing GIFs would leak memory.
643 This could also happen calling to_paletted().
644 Also documented the underlying long existing feature where the
645 colors parameter is filled with the generated color table and added
646 tests for it.
3c8fee33
TC
647 http://rt.cpan.org/Ticket/Display.html?id=41028
648
8e7f5809
TC
649 - write out the image size in bytes field of a BMP correctly.
650 http://rt.cpan.org/Ticket/Display.html?id=41406
651
c586eb58
TC
652 - add limited tests for Imager::ExtUtils
653
654 - make Imager::ExtUtils->includes use an absolute path, since
655 a relative path could cause failures using Inline::C.
656 http://rt.cpan.org/Ticket/Display.html?id=37353
657
6b22ba84
TC
658 - re-arrange the POD for Imager::Font::BBox:
659 - mark total_width(), pos_width(), end_offset() obsolete, since
660 they're mostly for backwards compatibility
661 - group width methods and height methods
662 https://rt.cpan.org/Ticket/Display.html?id=39999
17d9fe35 663
0727e3f5 664Imager 0.65 - 20 May 2008
546ea21c
TC
665===========
666
667Bug fixes:
668
669 - In some cases when an error occurs reading those parts of a JPEG
670 file after the image the scan-line buffer could be freed a second
671 time. In cases where the the error occured while reading the image
672 data it's possible that the buffer could have leaked.
673 Thanks to Gabriel Vasseur for reporting this and help in tracking
674 it down.
675
43b2b326
TC
676 - the gif_screen_height tag was overriding the screen width and being
677 ignored for the screen height when present.
678 https://rt.cpan.org/Public/Bug/Display.html?id=35568
679
e02d22d2 680Imager 0.64 - 23 April 2008
de470892
TC
681===========
682
e02d22d2
TC
683This is a bug fix release. This includes a fix for a possible
684security issue.
685
de470892
TC
686Bug fixes:
687
e02d22d2
TC
688 - Possible security issue: The floating point sample path for image
689 based fills had a buffer overflow. This would overwrite the end of
690 a malloc()ed buffer with double precision floats.
691 http://rt.cpan.org/Ticket/Display.html?id=35324
6912d85a 692 CVE-2008-1928
e02d22d2 693
de470892
TC
694 - check that the result of fileno($fh) is defined rather than simply
695 true when read() or write() is supplied with an fh parameter.
696 http://rt.cpan.org/Ticket/Display.html?id=35139
697
698 - i_scale_axis() wasn't checking the result of i_img_new_ch()
699 resulting in a SIGSEGV when attempting to scale an image to a size
700 too large to fit in memory. This is a NULL pointer access issue,
701 not a buffer overflow.
702 Added a check for the failure.
703 scale_calculate() (and hence scale()) will now fail if any of the
704 scale size parameters are a reference.
705 http://rt.cpan.org/Ticket/Display.html?id=35172
706
04f85f63
TC
707 - Regression: filling a greyscale image with a hatch used the wrong
708 color channels from the supplied fg/bg colors.
709 https://rt.cpan.org/Ticket/Display.html?id=35278
710
a256aec5
TC
711 - fixed a related problem for image fills.
712
49240201 713Imager 0.63 - 7 April 2008
33b0ffa6
TC
714===========
715
242d7497
TC
716This release primarily contains changes to improve ease of use -
717rather than you having to convert images to the appropriate number of
718channels, Imager handles it internally. How to handle drawing colors
719and the default combine mode is a thornier problem left for some other
720release.
721
d1555273
TC
722 - the font libraries are now only initialized when needed.
723 http://rt.cpan.org/Ticket/Display.html?id=28825
724
9b1ec2b8
TC
725 - moved the imtoc.perl code into Imager::Preprocess
726
727 - paste() and rubthrough() now adapt the source image data to the
728 destination, so you can now safely paste/rubthrough from greyscale
729 images to color images or back, or from alpha channel images to
730 noalpha channels or back.
731 https://rt.cpan.org/Ticket/Display.html?id=30908
732
733 - rubthrough() now falls back to pasting when the source doesn't have
734 an alpha channel. This effectively treats the source as having a
735 max alpha channel, the right thing to do.
736 http://rt.cpan.org/Ticket/Display.html?id=29944
737
738 - re-worked most of the area filling code to use a common set of
739 functions when filling.
740 Corrected normal combine mode.
741 Rewrote most of the combine modes to match the way the SVG draft
742 defines them with respect to a translucent source and destination.
743 Added tests for translucent source and destination.
744 Added tests to check 8-bit/sample and double/sample combines work
745 similarly.
746 https://rt.cpan.org/Ticket/Display.html?id=29879
747
07d9c639
TC
748 - writing a 2 or 4 channel image to a JPEG file will now write that
749 image as if composited against a background, black by default,
750 overridable with the i_background tag/parameter.
6e4af7d4
TC
751 https://rt.cpan.org/Ticket/Display.html?id=29876
752
07d9c639
TC
753 - writing a 2 or 4 channel image to a PGM/PPM file will now write
754 that image as if composited against a background, black by default,
fa90de94
TC
755 overridable with the i_background tag/parameter.
756 http://rt.cpan.org/Ticket/Display.html?id=30074
757
07d9c639
TC
758 - writing a 2 or 4 channel image to a BMP file will now write that
759 image as if composited against a background, black by default,
760 overridable with the i_background tag/parameter.
761 http://rt.cpan.org/Ticket/Display.html?id=30075
762
33b0ffa6
TC
763Bug fixes:
764
765 - Imager::Matrix2d->translate() now only requires one of the x or y
766 parameters.
767 http://rt.cpan.org/Ticket/Display.html?id=29937
768
2757bad0
TC
769 - mixing qtype scaling now sets all channels of a pixel to zero if
770 the pixel has zero coverage (zero alpha). This should produce more
771 compressible output files.
772 http://rt.cpan.org/Ticket/Display.html?id=32324
773
3da08517
TC
774 - removed the pointless #! line from lib/Imager/Font/Wrap.pm
775 Noticed when I saw:
776 https://bugzilla.redhat.com/show_bug.cgi?id=166254
777 I'm not changing the #! lines of the sample code, since it's sample
778 code, not intended for installation.
779 http://rt.cpan.org/Ticket/Display.html?id=33408
780
242d7497
TC
781 - some TGA images weren't being detected correctly as TGA images
782 https://rt.cpan.org/Ticket/Display.html?id=32925
783
784 - handling of the left-over bit for 16-bit/pixel TGA images has been
785 changed to match the behaviour of the GIMP. Previously the bit
786 being set was treated as an opaque pixel, but one user reported a
787 problem with loading such an image. I haven't been able to find any
788 tools beyond the GIMP that handle alpha-channel 16-bit TGAs, so
789 I'll match it's behaviour. See issue 114913 in the GIMP's
790 bugzilla.
791 http://rt.cpan.org/Ticket/Display.html?id=32926
792
5daa9d34 793Imager 0.62 - 10 December 2007
ac8138b0
TC
794===========
795
d8e0c3ba
TC
796 - Makefile.PL now expands ~/path supplied to --incpath or --libpath
797 to /path under your home directory.
798 http://rt.cpan.org/Ticket/Display.html?id=29484
799
50ff958e
TC
800 - the old dynaload code used Mach API functions to load dynamic
801 libraries on Mac OS X. These APIs have been deprecated in OS X
802 10.5 and were causing some build problems.
803 So henceforth Imager uses the dlopen() family of functions, and you
804 will need version 10.3 or later of OS X.
805
3309187a
TC
806 - added the det() function to the transform2() engine.
807 added the sample quad_to_square.pl
808 Courtesy Richard Fairhurst.
809 http://rt.cpan.org/Ticket/Display.html?id=31244
810
ac8138b0
TC
811Bug fixes:
812
813 - samples/gifscale.pl sourced the base value for gif_top from
814 gif_left.
815 Thanks to Eleneldil G. Arilou for pointing this out.
816
678a9a65
TC
817 - t/t82inline.t no longer loads B at runtime, to work around a bug
818 in some 5.005_0[45] installations.
819 http://rt.cpan.org/Ticket/Display.html?id=30508
820
821 - work around Module::Depends::Intrusive bug #21229
822 http://rt.cpan.org/Ticket/Display.html?id=30520
ac8138b0 823
bea65b1f
TC
824 - the hardinvert filter no-longer inverts the alpha channel.
825 http://rt.cpan.org/Ticket/Display.html?id=30002
826
827 - the hardinvert filter now supports large samples
828
b7809486 829Imager 0.61_02 - 28 November 2007
f74e6efc 830==============
874c55db 831
bd8052a6
TC
832 - major TIFF support re-work
833 http://rt.cpan.org/Ticket/Display.html?id=20329
834
835 - added a C level image interface for accessing samples from 1-32
836 bits, exposed this at the perl level in getsamples()
837
838 - the conv filter now works at floating point precision for high bit
839 images
840
841 - added is_bilevel method to test whether an image should be written as
842 a bilevel image if the image format supports it.
843
844 - added -log-stderr as an Imager import list option
845
846 - added some important types to Imager::APIRef
847
848 - added test_image_double() to Imager::Test
849
874c55db
TC
850Bug fixes:
851
852 - Imager::Fountain couldn't read GIMP gradient files with 10 or more
853 segments
854
855 - the scale() method with qtype mixing now handles images with an
856 alpha channel correctly.
857
8d17eae9
TC
858 - fixed a broken link from the "animated GIF" entry in the concept index.
859 Thanks to Slaven Rezic.
860 http://rt.cpan.org/Ticket/Display.html?id=30889
861
d3bf4eaf
TC
862 - on some perl's the infix expression parser test would fail due to
863 actions in the grammar returning false. Made sure all actions return
864 a true value.
8b96ad6b
TC
865 Thanks to Richard Fairhurst for spending a lot of time in tracking
866 down this problem.
680c329d 867 http://rt.cpan.org/Public/Bug/Display.html?id=29562
d3bf4eaf 868
d06f6707 869Imager 0.61 - 5 November 2007
1cfa190e
TC
870===========
871
872 - added samples/gifscale.pl, which adjusts the screen size/position tags
873 when scaling an animated gif
874 http://rt.cpan.org/Ticket/Display.html?id=27591
875
8a2cd317
TC
876Bug fixes:
877
e7ac18bd
TC
878 - correct handling of sz in matrix_transform() - this should allow
879 perspective type transformations to work now.
880 http://rt.cpan.org/Ticket/Display.html?id=29936
881
8a2cd317
TC
882 - prevent a cast to integer warning on x64 builds in datatypes.c
883 also fixed some other type warnings
884 https://rt.cpan.org/Ticket/Display.html?id=30204
885
9188b23e
TC
886 - some sub-directory tests depended on files produced by the parent
887 directory tests
888 http://rt.cpan.org/Ticket/Display.html?id=30203
889
7febff1d
TC
890 - Imager::Font::Wrap doesn't correctly set savepos
891 thanks to Nikita Dedik and Eleneldil G. Arilou for reporting this.
892 http://rt.cpan.org/Ticket/Display.html?id=29771
893
76411e99
TC
894 - test 171 in t/t01introvert.t was failing on perls configured to
895 use long double.
896 http://rt.cpan.org/Ticket/Display.html?id=29413
897
3f29de50
TC
898 - the code for the transform2() uminus operator was missing a break.
899 Added tests for better code coverage of the ops.
900 http://rt.cpan.org/Ticket/Display.html?id=29296
901
ed107438
TC
902 - the SGI RLE compression code could overflow its compression buffer
903 http://rt.cpan.org/Ticket/Display.html?id=30334
904
905 - the 32-bit output function used by the SGI code only handled values
906 under 0x10000. This was most noticable when writing large RLE images.
907 http://rt.cpan.org/Ticket/Display.html?id=30335
908
c7481ae1
TC
909 - validate chan_count for chans == NULL for each of the i_gsamp()
910 implementations.
911 http://rt.cpan.org/Ticket/Display.html?id=28985
912
ff37fc3f
TC
913 - attempt to work around the test failure at
914 http://www.nntp.perl.org/group/perl.cpan.testers/2007/09/msg650810.html
915 http://rt.cpan.org/Ticket/Display.html?id=29562
916
f245645a
TC
917 - improve the error messages produced when attempting to read or write
918 an unknown image file format.
919 http://rt.cpan.org/Ticket/Display.html?id=30103
920
333d7485
TC
921 - improve the transform2() documentation
922 http://rt.cpan.org/Ticket/Display.html?id=29267
923
3b115720
TC
924 - correctly generate the author key in META.yml
925 http://rt.cpan.org/Ticket/Display.html?id=30377
926
13c9a303
TC
927 - correctly blend a rotated (or matrix_transformed()) image when
928 performing interpolation in the presence of an alpha channel.
8a071022
TC
929 Also corrected the centring of the rotated image on the output
930 image.
13c9a303 931
0e622083 932Imager 0.60 - 30 August 2007
bcff4dd9
TC
933===========
934
d5477d3d
TC
935 - Finished/rewrote Arnar's old SGI RGB file format support, so Imager
936 now has full SGI RGB image format, including RLE and 16-bit/sample
937 images.
938 https://rt.cpan.org/Ticket/Display.html?id=8666
939
940 - logging functions are now available in the API
941
a60905e4
TC
942 - applied Gabriel Vasseur's patch
943 added documentation, further tests, and support for greyscale images
944 Obviously problems are my fault :)
945 https://rt.cpan.org/Ticket/Display.html?id=28142
946
413dc198
TC
947 - the mask for ICO/CUR images is now applied as an alpha channel to
948 the returned image. For the old behaviour, supply ico_masked => 0
949 to read() or read_multi(). This should be less confusing when
950 using Imager as a general image processor.
951 https://rt.cpan.org/Ticket/Display.html?id=29001
952
bcff4dd9
TC
953Bug fixes:
954
955 - in some cases it's possible for giflib/libungif to return color
956 indexes outside the range of colors defined by the image's palette.
957 We now expand the palette to match the indexes used.
958 Thanks to Gabriel Vasseur for reporting this.
959
02576e8d
TC
960 - fixed various memory leaks that could occur when failing to read png,
961 jpeg, bmp or tga files.
962
b3aa972f
TC
963 - to avoid confusion, channels not present in the image are returned as
964 zero by getscanline(). This has no effect on the C level i_glin()
965 and i_glinf() API functions which continue to not set the unused
966 channels.
967
d5477d3d
TC
968 - the convert() method now returns an image of the same sample size as
969 the source image.
970 https://rt.cpan.org/Ticket/Display.html?id=28492
971
baa880ef
TC
972 - remove repeated text in Imager::Files
973 http://rt.cpan.org/Ticket/Display.html?id=27589
974
975 - be even more explicit that scale() and friends don't modify the source
976 image, but return a new image.
977 http://rt.cpan.org/Ticket/Display.html?id=28570
978
0561d49c
TC
979 - improve the error message from errstr() when you try to load a font
980 for which the driver hasn't been built in Imager.
981 http://rt.cpan.org/Ticket/Display.html?id=27571
982
d8a39ce0
TC
983 - transparency is now enabled by default when writing GIF images
984 http://rt.cpan.org/Ticket/Display.html?id=27615
985
5730d6e7
TC
986 - Imager would not load on Windows 98
987 http://rt.cpan.org/Ticket/Display.html?id=27653
988
b4996113 989Imager 0.59 - 14 June 2007
e6e94ab0
TC
990===========
991
992Bug fixes:
993
994 - fixes a regression introduced by the fixes for RT 11972
995 http://rt.cpan.org/Ticket/Display.html?id=27546
996
9fc9d0ca
TC
997 - cropping outside the image would return an Imager object with
998 no low-level image object, instead of returning false.
999 Fixed by: Philip Gwyn (Leolo)
1000 http://rt.cpan.org/Ticket/Display.html?id=27509
1001
7e7508dd
TC
1002Imager 0.58 - 16 May 2007
1003===========
1004
1005No significant changes from 0.57_01.
1006
1970a2c7
TC
1007Imager 0.57_01 - 11 May 2007
1008==============
d034a178 1009
f8e36694
TC
1010 - added to_rgb16 to produce a 16-bit/sample version of an image
1011
95b2bff4
TC
1012 - improve freetype 1.x text output efficiency
1013
d034a178
TC
1014Bug fixes:
1015
1016 - search another place for rgb.txt, and check all the places
1017 Imager::Color checks when deciding whether to skip testing it
1018 http://rt.cpan.org/Ticket/Display.html?id=26064
1019
73962964
TC
1020 - use a convolution kernel size based on the stddev rather than a
1021 fixed size when performing a gaussian blur
1022 http://rt.cpan.org/Ticket/Display.html?id=25645
1023
01b84320
TC
1024 - document the difference() method's mindist parameter, and debug it.
1025
7e7508dd 1026 - put the Imager release number in the Inline::C generated code to
22f9ca48
TC
1027 regenerate Inline code when a new release of Imager is installed.
1028 http://rt.cpan.org/Ticket/Display.html?id=26278
1029
fa16b6c6
TC
1030 - fix rendering on alpha channel images for the FreeType 1.x driver.
1031 http://rt.cpan.org/Ticket/Display.html?id=11972
1032
4c84ccfb
TC
1033 - fix rendering on alpha channel images for the T1lib driver.
1034 http://rt.cpan.org/Ticket/Display.html?id=11972
1035
1fe8316b
TC
1036 - reworked library probing, we can now set more than one probe
1037 function for a library. Disabled the default (non-freetype-config)
1038 library probe and added an extra probe function that searches for
1039 both ft2build.h and whatever it includes, and adds -I as needed.
1040 Hopefully this will fix build problems like
1041 http://www.nntp.perl.org/group/perl.cpan.testers/2007/05/msg472281.html
1042 http://rt.cpan.org/Ticket/Display.html?id=26086
1043
bb5712de
TC
1044Imager 0.57 - 30 Apr 2007
1045===========
1046
1047This is a maintenence release fixing a security issue in Imager.
1048
1049 - CRITICAL: a specially crafted compressed BMP file can cause a buffer
1050 overflow in malloced memory. There will be further discussion of
1051 this issue in the ticket below.
1052 http://rt.cpan.org/Ticket/Display.html?id=26811
7e7508dd
TC
1053 CVE-2007-2459 CVE-2007-2413
1054 The descriptions at cve.mitre.org varied in quality, please see the
1055 ticket at rt.cpan.org for a more accurate description of the issue.
bb5712de 1056
d034a178 1057Imager 0.56 - 1 Apr 2007
7623d340
TC
1058===========
1059
1060 - added support for reading 16-bit/sample PGM/PPM images
1061
1062 - added support for writing 16-bit/sample PGM/PPM images
1063
1064 - improved performance of reading PBM/PGM/PPM images
1065
1066 - added support for writing PBM images if the image is paletted and
1067 contains only black and white
1068
1069 - added a new make_colors value - "mono"
1070
1071 - switched from the svn log Changes to a manual Changes to reduce
1072 noise
1073
1225d272
TC
1074 - new sample code - samples/flasher.pl
1075
7623d340
TC
1076Bug fixes:
1077
1078 - CRITICAL: the "Imager" typemap entry (not used by Imager itself)
1079 was returning an image object with an extra reference, this
1080 resulted in a memory leak.
1081 http://rt.cpan.org/Ticket/Display.html?id=24992
1082
1083 - fix rendering on alpha channel images for the FreeType 2.x driver
1084 http://rt.cpan.org/Ticket/Display.html?id=11972
1085
1086 - reading bmp files now consitently handles short reads. You can now
1087 supply a parameter to treat a short read as successful and set
1088 i_incomplete
1089 http://rt.cpan.org/Ticket/Display.html?id=8426
1090
1091 - previously, reading ASCII PBM files required spaces between samples,
1092 even though the format doesn't require that
1093
1225d272
TC
1094 - improved documentation of the unsharpmask filter (I hope)
1095 http://rt.cpan.org/Ticket/Display.html?id=25531
1096
1097 - force flushing of the output from i_tt_dump_names() and test output
1098 in t/t35ttfont.t to prevent output from being mixed up.
1099 https://rt.cpan.org/Ticket/Display.html?id=24859
1100
1101 - rewrite a conditional expression as an if() to hopefully work around
1102 a bug in the pre-4.0 GCC Apple shipped with OS X 10.4.
1103 https://rt.cpan.org/Ticket/Display.html?id=25561
1104
1105 - avoid Data::Dumper in regops.perl to support older releases of perl
1106 https://rt.cpan.org/Ticket/Display.html?id=24391
1107
7623d340
TC
1108Imager 0.55 - 16 Dec 2006
1109===========
1110
1111This is primarily a bug fix release.
1112
1113Note: Test::More is now a pre-requisite for Imager and is no longer bundled.
1114
1115There is one new feature:
1116
1117 - the Win32 font driver now supports UTF8 (RT 22166)
1118 http://www.cpanforum.com/threads/3276
1119 http://rt.cpan.org/Ticket/Display.html?id=22166
1120
1121Several bugs were fixed:
1122
1123 - the string() method would not output the string "0"
1124 http://rt.cpan.org/Public/Bug/Display.html?id=21770
1125
1126 - fills.c was failing to compile on Solaris 10 (compiler unknown)
1127 http://rt.cpan.org/Public/Bug/Display.html?id=21944
1128
1129 - the gif_disposal and gif_user_input tags weren't being read from
1130 the file correctly
1131 http://rt.cpan.org/Public/Bug/Display.html?id=22192
1132
1133 - gif.c was failing to build under MSVC
1134 http://rt.cpan.org/Ticket/Display.html?id=23922
1135
1136 - in some cases strings passed to the string() method were treated as
1137 terminated by NUL (chr 0)
1138 http://rt.cpan.org/Public/Bug/Display.html?id=21770
1139
1140 - on "MSWin32" perl builds we now link to -lzlib instead of -lz since
1141 that's the default build name for zlib on Win32.
1142 http://rt.cpan.org/Ticket/Display.html?id=23064
1143
1144 - search $Config{incpath} for headers too, which we should have been
1145 doing all along.
1146
1147Win32 font driver fixes:
1148
1149 - the global descent value from bounding box was the wrong sign
1150 http://www.cpanforum.com/threads/3276
1151
1152 - if the first or last glyph overflowed the left or right side of the
1153 advance width they would be clipped
1154
1155
1156Imager 0.54 - 14 Sep 2006
1157===========
1158
1159This is primarily a feature release:
1160
1161 - a new qtype value 'mixing' has been added to the scale()
1162 method. This is faster than 'normal', slower than 'preview'. This
1163 is based on the method used by pnmscale, and seems to produce less
1164 blurry results than normal.
1165 http://rt.cpan.org/Public/Bug/Display.html?id=20677
1166
1167 - the rubthrough() method can now render onto images with an alpha
1168 channel.
1169 http://rt.cpan.org/Ticket/Display.html?id=20678
1170
1171 - the read_multi() method now falls back to calling doing a single
1172 image read via the read() method and write_multi() will now fall
1173 back to calling write() if a single image is supplied. This means
1174 you can simply call the read_multi() or write_multi() functions
1175 without having to check if the type is formatted by that method.
1176 http://rt.cpan.org/Ticket/Display.html?id=19457
1177 http://rt.cpan.org/Ticket/Display.html?id=19458
1178
1179 - the GIF loop extension can now be written. If you don't have
1180 libungif/giflib 4.1.4 (or some distribution's bugfixed equivalent) you
1181 should upgrade.
1182 http://rt.cpan.org/Ticket/Display.html?id=21185
1183
1184 - getscanline() and setscanline() can now read/write palette index
1185 based data from/to the image for paletted images, by setting type to
1186 'index'.
1187 http://rt.cpan.org/Ticket/Display.html?id=20338
1188
1189 - we no longer hassle you to disable GIF support
1190 http://rt.cpan.org/Ticket/Display.html?id=20687
1191
1192 - minor documentation fixes
1193
1194
1195Imager 0.53 - 26 Jul 2006
1196===========
1197
1198This is a bugfix release.
1199
1200Some test code was left in a code path not covered by the test
1201suite. A test was added to cover this code path and the test code was
1202removed.
1203http://rt.cpan.org/Public/Bug/Display.html?id=20705
1204
1205
1206Imager 0.52 - 25 Jul 2006
1207===========
1208
1209This is primarily a feature release, but contains a fair few bug
1210fixes, new features:
1211
1212 - ability to read and write MS Windows ICO and CUR files
1213
1214 - you can now add file format plugins to support new file formats
1215
1216 - add POD coverage tests
1217
1218 - setcolors() and addcolors() now accept color names and so on
1219 instead of requiring Imager::Color objects.
1220 http://rt.cpan.org/Ticket/Display.html?id=20056
1221
1222 - flood_fill() can now fill to a specified border color instead of
1223 just to the area the same color as the seed.
1224 http://rt.cpan.org/Ticket/Display.html?id=19618
1225
1226
1227Bug fixes:
1228
1229 - bounding_box for the T1 driver wasn't converting UTF8 to ascii when
1230 calculating the advance width.
1231 http://rt.cpan.org/Public/Bug/Display.html?id=20554
1232
1233 - bounding_box for the T1 driver wasn't including leading and
1234 trailing spaces in the bounding box as the other drivers did, it also
1235 produced strange results for empty strings or strings containing only
1236 spaces
1237
1238 - when reading CMYK jpeg images they were being transferred to the
1239 image object as is, producing a four channel image. It only looked ok
1240 due to an old still unfixed Photoshop bug. We now convert from the
1241 inverted CMYK that photoshop (and Corel for example) produce into RGB.
1242 http://rt.cpan.org/Ticket/Display.html?id=20416
1243
1244 - reading a CYMK TIFF would result in a 4 channel image, reading any
1245 image with more than 4 channels (eg. RGB with 2 alpha channels) would
1246 result in an error.
1247 http://rt.cpan.org/Ticket/Display.html?id=20415
1248
1249 - added /usr/local/include to the default include search path, since
1250 we were already searching /usr/local/lib for libraries.
1251
1252And various minor fixes and documentation updates.
1253
1254
1255Imager 0.51 - 23 Apr 2006
1256===========
1257
1258 - fix a validation bug when processing JPEG EXIF data that can cause
1259 a crash
1260 http://rt.cpan.org/Public/Bug/Display.html?id=18496
1261
1262 - fix mis-processing of the src_maxx and src_maxy parameters of the
1263 paste() method
1264 http://rt.cpan.org/Public/Bug/Display.html?id=18712
1265
1266 - fix a problem in Imager's "smart" handling of the color parameter
1267 to various methods.
1268 http://rt.cpan.org/Public/Bug/Display.html?id=18561
1269
1270
1271Imager 0.50 - 29 Mar 2006
1272===========
1273
1274 - CRITICAL: fixes a segmentation fault from attempting to write a 2
1275 or 4 channel image to jpeg or a 2 channel image to tga where the
1276 output is an in-memeory buffer.
1277 http://rt.cpan.org/Public/Bug/Display.html?id=18397
1278
1279 - fixes an incorrect pointer parameter in the PNG code
1280 http://rt.cpan.org/Public/Bug/Display.html?id=18051
1281
1282 - skip Inline::C tests when building in a directory with spaces
1283 http://rt.cpan.org/Public/Bug/Display.html?id=18049