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