Commit | Line | Data |
---|---|---|
7623d340 TC |
1 | Imager release history. Older releases can be found in Changes.old |
2 | ||
6936706b TC |
3 | Imager 0.71_03 - 5 Dec 2009 |
4 | ============== | |
5 | ||
6 | - further adjust the threads test so it only performs the tests on | |
7 | perls where it's expected to work, and only if the threads module | |
8 | can be loaded. | |
9 | ||
0750777c TC |
10 | Imager 0.71_02 - 1 Dec 2009 |
11 | ============== | |
12 | ||
48ad0e66 TC |
13 | - adjust the way we load the threads module for the threads test so |
14 | it works with non-threaded perls | |
0750777c | 15 | |
b89f0fcd | 16 | Imager 0.71_01 - 30 Nov 2009 |
e41cfe8f TC |
17 | =========== |
18 | ||
19 | Bug fixes: | |
20 | ||
21 | - use scanline oriented operations to flip images instead of pixel | |
22 | operations | |
23 | https://rt.cpan.org/Ticket/Display.html?id=39278 | |
24 | ||
25 | - use double/sample operations to flip large sample images instead of | |
26 | 8-bit sample operations. | |
27 | https://rt.cpan.org/Ticket/Display.html?id=39280 | |
28 | ||
de3ca2fd TC |
29 | - fix POD nits |
30 | https://rt.cpan.org/Ticket/Display.html?id=51874 | |
31 | ||
ffddd407 TC |
32 | - prevent double-frees when someone creates Imager objects and then |
33 | creates a thread. Note: this just handles some simple cases, | |
34 | Imager doesn't support perl threads, and isn't likely to. | |
35 | https://rt.cpan.org/Ticket/Display.html?id=52268 | |
36 | ||
3517794b | 37 | Imager 0.71 - 16 Nov 2009 |
6a3cbaef TC |
38 | =========== |
39 | ||
a16bae72 TC |
40 | - add the opacity fill type - an adaptor that modifies the opacity of |
41 | another fill. | |
42 | ||
6a3cbaef TC |
43 | Bug fixes: |
44 | ||
45 | - the conv filter now enforces that the sum of the coefficients is | |
46 | non-zero. Also, rather than skipping pixels off the edge off the | |
47 | edge of the image, the closest edge pixel is used. Previously | |
48 | dividing by the zero sum of coefficients could cause invalid | |
49 | results or runtime exceptions. | |
50 | Thanks to David Cantrell's Alpha-NetBSD CPAN test box for revealing | |
51 | this bug. | |
52 | ||
189d5775 | 53 | Imager 0.70 - 21 Sep 2009 |
2b82e731 TC |
54 | =========== |
55 | ||
56 | Bug fixes: | |
57 | ||
58 | - release image row and comments memory on all error returns in gif | |
59 | reader | |
60 | ||
61 | - handle zero length extensions, previously this would cause a null | |
62 | pointer dereference | |
63 | Thanks to Krzysztof WojtaÅ for the test data and fix for this. | |
64 | ||
b3afeed5 TC |
65 | - an integer division meant that preview scaling to below 1 pixel |
66 | wide or high (which isn't too useful anyway) was calculating using | |
67 | NaNs on most platforms, and causing an exception on others. | |
68 | Thanks to David Cantrell for producing a backtrace of the crash on | |
69 | his Alpha-NetBSD CPAN test box which made it possible to track this | |
70 | down. | |
71 | ||
b1e29946 | 72 | Imager 0.69 - 08 Sep 2009 |
25f4e775 TC |
73 | =========== |
74 | ||
b1e29946 | 75 | Bug fixes: |
25f4e775 TC |
76 | |
77 | - broken test fix - was attempting to call a function skip_all, when | |
78 | that should be a parameter to plan(). | |
79 | ||
b1e29946 TC |
80 | - briefly document apidocs.perl, the tool used to build |
81 | Imager::APIRef and make some minor enhancements | |
82 | ||
83 | - various minor documentation enhancements and fixes. | |
84 | ||
5920304a | 85 | Imager 0.68 - 07 Sep 2009 |
c5f447ac TC |
86 | =========== |
87 | ||
3c252111 TC |
88 | - Imager->new(file => $filename) and other similar incantations will |
89 | load the given file. | |
90 | https://rt.cpan.org/Ticket/Display.html?id=48261 | |
91 | ||
c5f447ac TC |
92 | Bug fixes: |
93 | ||
94 | - avoid using CHECK as a label in Imager::Test | |
95 | http://nntp.x.perl.org/group/perl.cpan.testers/5220921 | |
96 | ||
0d670555 TC |
97 | - re-work most image file test files that require a library into |
98 | separate library present/not present files to remove stupidly long | |
99 | conditionals | |
100 | ||
101 | - don't treat rubthrough() outside the bounds of the target image as | |
102 | an error. | |
103 | http://nntp.x.perl.org/group/perl.cpan.testers/5185716 | |
104 | ||
8d800216 TC |
105 | Imager 0.67_01 - 02 Sep 2009 |
106 | ============== | |
500888da TC |
107 | |
108 | Bug fixes: | |
109 | ||
110 | - correct documentation of default of raw image interleave read | |
111 | parameter | |
112 | https://rt.cpan.org/Ticket/Display.html?id=42074 | |
113 | ||
114 | - add raw_ prefix to raw read parameters, though the original names | |
115 | still work. | |
116 | ||
117 | - fail the read if an invalid raw_interleave parameter is supplied | |
118 | ||
119 | - warn if no interleave or raw_interleave parameter is supplied, | |
120 | since the documented default was wrong, and incompatible with the | |
121 | write format | |
122 | ||
123 | - for reading raw images, if raw_storechannels > raw_datachannels, | |
124 | set the extra channels in the image to 0 | |
125 | ||
cd476e58 TC |
126 | - when probing for executables like freetype-config, search for .bat |
127 | and .cmd on MSWin32, as well as .exe. | |
128 | https://rt.cpan.org/Ticket/Display.html?id=49275 | |
500888da | 129 | |
f9a39263 TC |
130 | - re-work the external libraries section of README: |
131 | - list Debian and Redhat package names for each library | |
132 | - reformatting | |
133 | - update URLs | |
134 | ||
f45b774f TC |
135 | - use the new EU::MM META_MERGE facility instead of generating |
136 | META.yml from scratch | |
137 | https://rt.cpan.org/Ticket/Display.html?id=47888 | |
138 | ||
d6b51d8c TC |
139 | - use Devel::CheckLib (bundled, modified) to check which release of |
140 | libtiff is installed and reject 3.9.0 | |
78645bd4 TC |
141 | http://bugzilla.maptools.org/show_bug.cgi?id=2088 |
142 | http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=543079 | |
d6b51d8c | 143 | |
249af030 TC |
144 | Imager 0.67 - 12 Dec 2008 |
145 | =========== | |
146 | ||
147 | Bug fixes: | |
148 | ||
149 | - fix a packaging error | |
150 | ||
cca21862 | 151 | Imager 0.66 - 12 Dec 2008 |
3c8fee33 TC |
152 | =========== |
153 | ||
6b22ba84 TC |
154 | - 24-bit color .ICO/.CUR files can now be read. |
155 | ||
3c8fee33 TC |
156 | Bug fixes: |
157 | ||
6b22ba84 TC |
158 | - an optimization skipping 0 src alpha values could cause the |
159 | rubthrough() to read past the end of a buffer. | |
160 | http://www.nntp.perl.org/group/perl.cpan.testers/2008/05/msg1509184.html | |
161 | ||
5c0d0ddf TC |
162 | - corrected a reference leak where writing GIFs would leak memory. |
163 | This could also happen calling to_paletted(). | |
164 | Also documented the underlying long existing feature where the | |
165 | colors parameter is filled with the generated color table and added | |
166 | tests for it. | |
3c8fee33 TC |
167 | http://rt.cpan.org/Ticket/Display.html?id=41028 |
168 | ||
8e7f5809 TC |
169 | - write out the image size in bytes field of a BMP correctly. |
170 | http://rt.cpan.org/Ticket/Display.html?id=41406 | |
171 | ||
c586eb58 TC |
172 | - add limited tests for Imager::ExtUtils |
173 | ||
174 | - make Imager::ExtUtils->includes use an absolute path, since | |
175 | a relative path could cause failures using Inline::C. | |
176 | http://rt.cpan.org/Ticket/Display.html?id=37353 | |
177 | ||
6b22ba84 TC |
178 | - re-arrange the POD for Imager::Font::BBox: |
179 | - mark total_width(), pos_width(), end_offset() obsolete, since | |
180 | they're mostly for backwards compatibility | |
181 | - group width methods and height methods | |
182 | https://rt.cpan.org/Ticket/Display.html?id=39999 | |
17d9fe35 | 183 | |
0727e3f5 | 184 | Imager 0.65 - 20 May 2008 |
546ea21c TC |
185 | =========== |
186 | ||
187 | Bug fixes: | |
188 | ||
189 | - In some cases when an error occurs reading those parts of a JPEG | |
190 | file after the image the scan-line buffer could be freed a second | |
191 | time. In cases where the the error occured while reading the image | |
192 | data it's possible that the buffer could have leaked. | |
193 | Thanks to Gabriel Vasseur for reporting this and help in tracking | |
194 | it down. | |
195 | ||
43b2b326 TC |
196 | - the gif_screen_height tag was overriding the screen width and being |
197 | ignored for the screen height when present. | |
198 | https://rt.cpan.org/Public/Bug/Display.html?id=35568 | |
199 | ||
e02d22d2 | 200 | Imager 0.64 - 23 April 2008 |
de470892 TC |
201 | =========== |
202 | ||
e02d22d2 TC |
203 | This is a bug fix release. This includes a fix for a possible |
204 | security issue. | |
205 | ||
de470892 TC |
206 | Bug fixes: |
207 | ||
e02d22d2 TC |
208 | - Possible security issue: The floating point sample path for image |
209 | based fills had a buffer overflow. This would overwrite the end of | |
210 | a malloc()ed buffer with double precision floats. | |
211 | http://rt.cpan.org/Ticket/Display.html?id=35324 | |
6912d85a | 212 | CVE-2008-1928 |
e02d22d2 | 213 | |
de470892 TC |
214 | - check that the result of fileno($fh) is defined rather than simply |
215 | true when read() or write() is supplied with an fh parameter. | |
216 | http://rt.cpan.org/Ticket/Display.html?id=35139 | |
217 | ||
218 | - i_scale_axis() wasn't checking the result of i_img_new_ch() | |
219 | resulting in a SIGSEGV when attempting to scale an image to a size | |
220 | too large to fit in memory. This is a NULL pointer access issue, | |
221 | not a buffer overflow. | |
222 | Added a check for the failure. | |
223 | scale_calculate() (and hence scale()) will now fail if any of the | |
224 | scale size parameters are a reference. | |
225 | http://rt.cpan.org/Ticket/Display.html?id=35172 | |
226 | ||
04f85f63 TC |
227 | - Regression: filling a greyscale image with a hatch used the wrong |
228 | color channels from the supplied fg/bg colors. | |
229 | https://rt.cpan.org/Ticket/Display.html?id=35278 | |
230 | ||
a256aec5 TC |
231 | - fixed a related problem for image fills. |
232 | ||
49240201 | 233 | Imager 0.63 - 7 April 2008 |
33b0ffa6 TC |
234 | =========== |
235 | ||
242d7497 TC |
236 | This release primarily contains changes to improve ease of use - |
237 | rather than you having to convert images to the appropriate number of | |
238 | channels, Imager handles it internally. How to handle drawing colors | |
239 | and the default combine mode is a thornier problem left for some other | |
240 | release. | |
241 | ||
d1555273 TC |
242 | - the font libraries are now only initialized when needed. |
243 | http://rt.cpan.org/Ticket/Display.html?id=28825 | |
244 | ||
9b1ec2b8 TC |
245 | - moved the imtoc.perl code into Imager::Preprocess |
246 | ||
247 | - paste() and rubthrough() now adapt the source image data to the | |
248 | destination, so you can now safely paste/rubthrough from greyscale | |
249 | images to color images or back, or from alpha channel images to | |
250 | noalpha channels or back. | |
251 | https://rt.cpan.org/Ticket/Display.html?id=30908 | |
252 | ||
253 | - rubthrough() now falls back to pasting when the source doesn't have | |
254 | an alpha channel. This effectively treats the source as having a | |
255 | max alpha channel, the right thing to do. | |
256 | http://rt.cpan.org/Ticket/Display.html?id=29944 | |
257 | ||
258 | - re-worked most of the area filling code to use a common set of | |
259 | functions when filling. | |
260 | Corrected normal combine mode. | |
261 | Rewrote most of the combine modes to match the way the SVG draft | |
262 | defines them with respect to a translucent source and destination. | |
263 | Added tests for translucent source and destination. | |
264 | Added tests to check 8-bit/sample and double/sample combines work | |
265 | similarly. | |
266 | https://rt.cpan.org/Ticket/Display.html?id=29879 | |
267 | ||
07d9c639 TC |
268 | - writing a 2 or 4 channel image to a JPEG file will now write that |
269 | image as if composited against a background, black by default, | |
270 | overridable with the i_background tag/parameter. | |
6e4af7d4 TC |
271 | https://rt.cpan.org/Ticket/Display.html?id=29876 |
272 | ||
07d9c639 TC |
273 | - writing a 2 or 4 channel image to a PGM/PPM file will now write |
274 | that image as if composited against a background, black by default, | |
fa90de94 TC |
275 | overridable with the i_background tag/parameter. |
276 | http://rt.cpan.org/Ticket/Display.html?id=30074 | |
277 | ||
07d9c639 TC |
278 | - writing a 2 or 4 channel image to a BMP file will now write that |
279 | image as if composited against a background, black by default, | |
280 | overridable with the i_background tag/parameter. | |
281 | http://rt.cpan.org/Ticket/Display.html?id=30075 | |
282 | ||
33b0ffa6 TC |
283 | Bug fixes: |
284 | ||
285 | - Imager::Matrix2d->translate() now only requires one of the x or y | |
286 | parameters. | |
287 | http://rt.cpan.org/Ticket/Display.html?id=29937 | |
288 | ||
2757bad0 TC |
289 | - mixing qtype scaling now sets all channels of a pixel to zero if |
290 | the pixel has zero coverage (zero alpha). This should produce more | |
291 | compressible output files. | |
292 | http://rt.cpan.org/Ticket/Display.html?id=32324 | |
293 | ||
3da08517 TC |
294 | - removed the pointless #! line from lib/Imager/Font/Wrap.pm |
295 | Noticed when I saw: | |
296 | https://bugzilla.redhat.com/show_bug.cgi?id=166254 | |
297 | I'm not changing the #! lines of the sample code, since it's sample | |
298 | code, not intended for installation. | |
299 | http://rt.cpan.org/Ticket/Display.html?id=33408 | |
300 | ||
242d7497 TC |
301 | - some TGA images weren't being detected correctly as TGA images |
302 | https://rt.cpan.org/Ticket/Display.html?id=32925 | |
303 | ||
304 | - handling of the left-over bit for 16-bit/pixel TGA images has been | |
305 | changed to match the behaviour of the GIMP. Previously the bit | |
306 | being set was treated as an opaque pixel, but one user reported a | |
307 | problem with loading such an image. I haven't been able to find any | |
308 | tools beyond the GIMP that handle alpha-channel 16-bit TGAs, so | |
309 | I'll match it's behaviour. See issue 114913 in the GIMP's | |
310 | bugzilla. | |
311 | http://rt.cpan.org/Ticket/Display.html?id=32926 | |
312 | ||
5daa9d34 | 313 | Imager 0.62 - 10 December 2007 |
ac8138b0 TC |
314 | =========== |
315 | ||
d8e0c3ba TC |
316 | - Makefile.PL now expands ~/path supplied to --incpath or --libpath |
317 | to /path under your home directory. | |
318 | http://rt.cpan.org/Ticket/Display.html?id=29484 | |
319 | ||
50ff958e TC |
320 | - the old dynaload code used Mach API functions to load dynamic |
321 | libraries on Mac OS X. These APIs have been deprecated in OS X | |
322 | 10.5 and were causing some build problems. | |
323 | So henceforth Imager uses the dlopen() family of functions, and you | |
324 | will need version 10.3 or later of OS X. | |
325 | ||
3309187a TC |
326 | - added the det() function to the transform2() engine. |
327 | added the sample quad_to_square.pl | |
328 | Courtesy Richard Fairhurst. | |
329 | http://rt.cpan.org/Ticket/Display.html?id=31244 | |
330 | ||
ac8138b0 TC |
331 | Bug fixes: |
332 | ||
333 | - samples/gifscale.pl sourced the base value for gif_top from | |
334 | gif_left. | |
335 | Thanks to Eleneldil G. Arilou for pointing this out. | |
336 | ||
678a9a65 TC |
337 | - t/t82inline.t no longer loads B at runtime, to work around a bug |
338 | in some 5.005_0[45] installations. | |
339 | http://rt.cpan.org/Ticket/Display.html?id=30508 | |
340 | ||
341 | - work around Module::Depends::Intrusive bug #21229 | |
342 | http://rt.cpan.org/Ticket/Display.html?id=30520 | |
ac8138b0 | 343 | |
bea65b1f TC |
344 | - the hardinvert filter no-longer inverts the alpha channel. |
345 | http://rt.cpan.org/Ticket/Display.html?id=30002 | |
346 | ||
347 | - the hardinvert filter now supports large samples | |
348 | ||
b7809486 | 349 | Imager 0.61_02 - 28 November 2007 |
f74e6efc | 350 | ============== |
874c55db | 351 | |
bd8052a6 TC |
352 | - major TIFF support re-work |
353 | http://rt.cpan.org/Ticket/Display.html?id=20329 | |
354 | ||
355 | - added a C level image interface for accessing samples from 1-32 | |
356 | bits, exposed this at the perl level in getsamples() | |
357 | ||
358 | - the conv filter now works at floating point precision for high bit | |
359 | images | |
360 | ||
361 | - added is_bilevel method to test whether an image should be written as | |
362 | a bilevel image if the image format supports it. | |
363 | ||
364 | - added -log-stderr as an Imager import list option | |
365 | ||
366 | - added some important types to Imager::APIRef | |
367 | ||
368 | - added test_image_double() to Imager::Test | |
369 | ||
874c55db TC |
370 | Bug fixes: |
371 | ||
372 | - Imager::Fountain couldn't read GIMP gradient files with 10 or more | |
373 | segments | |
374 | ||
375 | - the scale() method with qtype mixing now handles images with an | |
376 | alpha channel correctly. | |
377 | ||
8d17eae9 TC |
378 | - fixed a broken link from the "animated GIF" entry in the concept index. |
379 | Thanks to Slaven Rezic. | |
380 | http://rt.cpan.org/Ticket/Display.html?id=30889 | |
381 | ||
d3bf4eaf TC |
382 | - on some perl's the infix expression parser test would fail due to |
383 | actions in the grammar returning false. Made sure all actions return | |
384 | a true value. | |
8b96ad6b TC |
385 | Thanks to Richard Fairhurst for spending a lot of time in tracking |
386 | down this problem. | |
680c329d | 387 | http://rt.cpan.org/Public/Bug/Display.html?id=29562 |
d3bf4eaf | 388 | |
d06f6707 | 389 | Imager 0.61 - 5 November 2007 |
1cfa190e TC |
390 | =========== |
391 | ||
392 | - added samples/gifscale.pl, which adjusts the screen size/position tags | |
393 | when scaling an animated gif | |
394 | http://rt.cpan.org/Ticket/Display.html?id=27591 | |
395 | ||
8a2cd317 TC |
396 | Bug fixes: |
397 | ||
e7ac18bd TC |
398 | - correct handling of sz in matrix_transform() - this should allow |
399 | perspective type transformations to work now. | |
400 | http://rt.cpan.org/Ticket/Display.html?id=29936 | |
401 | ||
8a2cd317 TC |
402 | - prevent a cast to integer warning on x64 builds in datatypes.c |
403 | also fixed some other type warnings | |
404 | https://rt.cpan.org/Ticket/Display.html?id=30204 | |
405 | ||
9188b23e TC |
406 | - some sub-directory tests depended on files produced by the parent |
407 | directory tests | |
408 | http://rt.cpan.org/Ticket/Display.html?id=30203 | |
409 | ||
7febff1d TC |
410 | - Imager::Font::Wrap doesn't correctly set savepos |
411 | thanks to Nikita Dedik and Eleneldil G. Arilou for reporting this. | |
412 | http://rt.cpan.org/Ticket/Display.html?id=29771 | |
413 | ||
76411e99 TC |
414 | - test 171 in t/t01introvert.t was failing on perls configured to |
415 | use long double. | |
416 | http://rt.cpan.org/Ticket/Display.html?id=29413 | |
417 | ||
3f29de50 TC |
418 | - the code for the transform2() uminus operator was missing a break. |
419 | Added tests for better code coverage of the ops. | |
420 | http://rt.cpan.org/Ticket/Display.html?id=29296 | |
421 | ||
ed107438 TC |
422 | - the SGI RLE compression code could overflow its compression buffer |
423 | http://rt.cpan.org/Ticket/Display.html?id=30334 | |
424 | ||
425 | - the 32-bit output function used by the SGI code only handled values | |
426 | under 0x10000. This was most noticable when writing large RLE images. | |
427 | http://rt.cpan.org/Ticket/Display.html?id=30335 | |
428 | ||
c7481ae1 TC |
429 | - validate chan_count for chans == NULL for each of the i_gsamp() |
430 | implementations. | |
431 | http://rt.cpan.org/Ticket/Display.html?id=28985 | |
432 | ||
ff37fc3f TC |
433 | - attempt to work around the test failure at |
434 | http://www.nntp.perl.org/group/perl.cpan.testers/2007/09/msg650810.html | |
435 | http://rt.cpan.org/Ticket/Display.html?id=29562 | |
436 | ||
f245645a TC |
437 | - improve the error messages produced when attempting to read or write |
438 | an unknown image file format. | |
439 | http://rt.cpan.org/Ticket/Display.html?id=30103 | |
440 | ||
333d7485 TC |
441 | - improve the transform2() documentation |
442 | http://rt.cpan.org/Ticket/Display.html?id=29267 | |
443 | ||
3b115720 TC |
444 | - correctly generate the author key in META.yml |
445 | http://rt.cpan.org/Ticket/Display.html?id=30377 | |
446 | ||
13c9a303 TC |
447 | - correctly blend a rotated (or matrix_transformed()) image when |
448 | performing interpolation in the presence of an alpha channel. | |
8a071022 TC |
449 | Also corrected the centring of the rotated image on the output |
450 | image. | |
13c9a303 | 451 | |
0e622083 | 452 | Imager 0.60 - 30 August 2007 |
bcff4dd9 TC |
453 | =========== |
454 | ||
d5477d3d TC |
455 | - Finished/rewrote Arnar's old SGI RGB file format support, so Imager |
456 | now has full SGI RGB image format, including RLE and 16-bit/sample | |
457 | images. | |
458 | https://rt.cpan.org/Ticket/Display.html?id=8666 | |
459 | ||
460 | - logging functions are now available in the API | |
461 | ||
a60905e4 TC |
462 | - applied Gabriel Vasseur's patch |
463 | added documentation, further tests, and support for greyscale images | |
464 | Obviously problems are my fault :) | |
465 | https://rt.cpan.org/Ticket/Display.html?id=28142 | |
466 | ||
413dc198 TC |
467 | - the mask for ICO/CUR images is now applied as an alpha channel to |
468 | the returned image. For the old behaviour, supply ico_masked => 0 | |
469 | to read() or read_multi(). This should be less confusing when | |
470 | using Imager as a general image processor. | |
471 | https://rt.cpan.org/Ticket/Display.html?id=29001 | |
472 | ||
bcff4dd9 TC |
473 | Bug fixes: |
474 | ||
475 | - in some cases it's possible for giflib/libungif to return color | |
476 | indexes outside the range of colors defined by the image's palette. | |
477 | We now expand the palette to match the indexes used. | |
478 | Thanks to Gabriel Vasseur for reporting this. | |
479 | ||
02576e8d TC |
480 | - fixed various memory leaks that could occur when failing to read png, |
481 | jpeg, bmp or tga files. | |
482 | ||
b3aa972f TC |
483 | - to avoid confusion, channels not present in the image are returned as |
484 | zero by getscanline(). This has no effect on the C level i_glin() | |
485 | and i_glinf() API functions which continue to not set the unused | |
486 | channels. | |
487 | ||
d5477d3d TC |
488 | - the convert() method now returns an image of the same sample size as |
489 | the source image. | |
490 | https://rt.cpan.org/Ticket/Display.html?id=28492 | |
491 | ||
baa880ef TC |
492 | - remove repeated text in Imager::Files |
493 | http://rt.cpan.org/Ticket/Display.html?id=27589 | |
494 | ||
495 | - be even more explicit that scale() and friends don't modify the source | |
496 | image, but return a new image. | |
497 | http://rt.cpan.org/Ticket/Display.html?id=28570 | |
498 | ||
0561d49c TC |
499 | - improve the error message from errstr() when you try to load a font |
500 | for which the driver hasn't been built in Imager. | |
501 | http://rt.cpan.org/Ticket/Display.html?id=27571 | |
502 | ||
d8a39ce0 TC |
503 | - transparency is now enabled by default when writing GIF images |
504 | http://rt.cpan.org/Ticket/Display.html?id=27615 | |
505 | ||
5730d6e7 TC |
506 | - Imager would not load on Windows 98 |
507 | http://rt.cpan.org/Ticket/Display.html?id=27653 | |
508 | ||
b4996113 | 509 | Imager 0.59 - 14 June 2007 |
e6e94ab0 TC |
510 | =========== |
511 | ||
512 | Bug fixes: | |
513 | ||
514 | - fixes a regression introduced by the fixes for RT 11972 | |
515 | http://rt.cpan.org/Ticket/Display.html?id=27546 | |
516 | ||
9fc9d0ca TC |
517 | - cropping outside the image would return an Imager object with |
518 | no low-level image object, instead of returning false. | |
519 | Fixed by: Philip Gwyn (Leolo) | |
520 | http://rt.cpan.org/Ticket/Display.html?id=27509 | |
521 | ||
7e7508dd TC |
522 | Imager 0.58 - 16 May 2007 |
523 | =========== | |
524 | ||
525 | No significant changes from 0.57_01. | |
526 | ||
1970a2c7 TC |
527 | Imager 0.57_01 - 11 May 2007 |
528 | ============== | |
d034a178 | 529 | |
f8e36694 TC |
530 | - added to_rgb16 to produce a 16-bit/sample version of an image |
531 | ||
95b2bff4 TC |
532 | - improve freetype 1.x text output efficiency |
533 | ||
d034a178 TC |
534 | Bug fixes: |
535 | ||
536 | - search another place for rgb.txt, and check all the places | |
537 | Imager::Color checks when deciding whether to skip testing it | |
538 | http://rt.cpan.org/Ticket/Display.html?id=26064 | |
539 | ||
73962964 TC |
540 | - use a convolution kernel size based on the stddev rather than a |
541 | fixed size when performing a gaussian blur | |
542 | http://rt.cpan.org/Ticket/Display.html?id=25645 | |
543 | ||
01b84320 TC |
544 | - document the difference() method's mindist parameter, and debug it. |
545 | ||
7e7508dd | 546 | - put the Imager release number in the Inline::C generated code to |
22f9ca48 TC |
547 | regenerate Inline code when a new release of Imager is installed. |
548 | http://rt.cpan.org/Ticket/Display.html?id=26278 | |
549 | ||
fa16b6c6 TC |
550 | - fix rendering on alpha channel images for the FreeType 1.x driver. |
551 | http://rt.cpan.org/Ticket/Display.html?id=11972 | |
552 | ||
4c84ccfb TC |
553 | - fix rendering on alpha channel images for the T1lib driver. |
554 | http://rt.cpan.org/Ticket/Display.html?id=11972 | |
555 | ||
1fe8316b TC |
556 | - reworked library probing, we can now set more than one probe |
557 | function for a library. Disabled the default (non-freetype-config) | |
558 | library probe and added an extra probe function that searches for | |
559 | both ft2build.h and whatever it includes, and adds -I as needed. | |
560 | Hopefully this will fix build problems like | |
561 | http://www.nntp.perl.org/group/perl.cpan.testers/2007/05/msg472281.html | |
562 | http://rt.cpan.org/Ticket/Display.html?id=26086 | |
563 | ||
bb5712de TC |
564 | Imager 0.57 - 30 Apr 2007 |
565 | =========== | |
566 | ||
567 | This is a maintenence release fixing a security issue in Imager. | |
568 | ||
569 | - CRITICAL: a specially crafted compressed BMP file can cause a buffer | |
570 | overflow in malloced memory. There will be further discussion of | |
571 | this issue in the ticket below. | |
572 | http://rt.cpan.org/Ticket/Display.html?id=26811 | |
7e7508dd TC |
573 | CVE-2007-2459 CVE-2007-2413 |
574 | The descriptions at cve.mitre.org varied in quality, please see the | |
575 | ticket at rt.cpan.org for a more accurate description of the issue. | |
bb5712de | 576 | |
d034a178 | 577 | Imager 0.56 - 1 Apr 2007 |
7623d340 TC |
578 | =========== |
579 | ||
580 | - added support for reading 16-bit/sample PGM/PPM images | |
581 | ||
582 | - added support for writing 16-bit/sample PGM/PPM images | |
583 | ||
584 | - improved performance of reading PBM/PGM/PPM images | |
585 | ||
586 | - added support for writing PBM images if the image is paletted and | |
587 | contains only black and white | |
588 | ||
589 | - added a new make_colors value - "mono" | |
590 | ||
591 | - switched from the svn log Changes to a manual Changes to reduce | |
592 | noise | |
593 | ||
1225d272 TC |
594 | - new sample code - samples/flasher.pl |
595 | ||
7623d340 TC |
596 | Bug fixes: |
597 | ||
598 | - CRITICAL: the "Imager" typemap entry (not used by Imager itself) | |
599 | was returning an image object with an extra reference, this | |
600 | resulted in a memory leak. | |
601 | http://rt.cpan.org/Ticket/Display.html?id=24992 | |
602 | ||
603 | - fix rendering on alpha channel images for the FreeType 2.x driver | |
604 | http://rt.cpan.org/Ticket/Display.html?id=11972 | |
605 | ||
606 | - reading bmp files now consitently handles short reads. You can now | |
607 | supply a parameter to treat a short read as successful and set | |
608 | i_incomplete | |
609 | http://rt.cpan.org/Ticket/Display.html?id=8426 | |
610 | ||
611 | - previously, reading ASCII PBM files required spaces between samples, | |
612 | even though the format doesn't require that | |
613 | ||
1225d272 TC |
614 | - improved documentation of the unsharpmask filter (I hope) |
615 | http://rt.cpan.org/Ticket/Display.html?id=25531 | |
616 | ||
617 | - force flushing of the output from i_tt_dump_names() and test output | |
618 | in t/t35ttfont.t to prevent output from being mixed up. | |
619 | https://rt.cpan.org/Ticket/Display.html?id=24859 | |
620 | ||
621 | - rewrite a conditional expression as an if() to hopefully work around | |
622 | a bug in the pre-4.0 GCC Apple shipped with OS X 10.4. | |
623 | https://rt.cpan.org/Ticket/Display.html?id=25561 | |
624 | ||
625 | - avoid Data::Dumper in regops.perl to support older releases of perl | |
626 | https://rt.cpan.org/Ticket/Display.html?id=24391 | |
627 | ||
7623d340 TC |
628 | Imager 0.55 - 16 Dec 2006 |
629 | =========== | |
630 | ||
631 | This is primarily a bug fix release. | |
632 | ||
633 | Note: Test::More is now a pre-requisite for Imager and is no longer bundled. | |
634 | ||
635 | There is one new feature: | |
636 | ||
637 | - the Win32 font driver now supports UTF8 (RT 22166) | |
638 | http://www.cpanforum.com/threads/3276 | |
639 | http://rt.cpan.org/Ticket/Display.html?id=22166 | |
640 | ||
641 | Several bugs were fixed: | |
642 | ||
643 | - the string() method would not output the string "0" | |
644 | http://rt.cpan.org/Public/Bug/Display.html?id=21770 | |
645 | ||
646 | - fills.c was failing to compile on Solaris 10 (compiler unknown) | |
647 | http://rt.cpan.org/Public/Bug/Display.html?id=21944 | |
648 | ||
649 | - the gif_disposal and gif_user_input tags weren't being read from | |
650 | the file correctly | |
651 | http://rt.cpan.org/Public/Bug/Display.html?id=22192 | |
652 | ||
653 | - gif.c was failing to build under MSVC | |
654 | http://rt.cpan.org/Ticket/Display.html?id=23922 | |
655 | ||
656 | - in some cases strings passed to the string() method were treated as | |
657 | terminated by NUL (chr 0) | |
658 | http://rt.cpan.org/Public/Bug/Display.html?id=21770 | |
659 | ||
660 | - on "MSWin32" perl builds we now link to -lzlib instead of -lz since | |
661 | that's the default build name for zlib on Win32. | |
662 | http://rt.cpan.org/Ticket/Display.html?id=23064 | |
663 | ||
664 | - search $Config{incpath} for headers too, which we should have been | |
665 | doing all along. | |
666 | ||
667 | Win32 font driver fixes: | |
668 | ||
669 | - the global descent value from bounding box was the wrong sign | |
670 | http://www.cpanforum.com/threads/3276 | |
671 | ||
672 | - if the first or last glyph overflowed the left or right side of the | |
673 | advance width they would be clipped | |
674 | ||
675 | ||
676 | Imager 0.54 - 14 Sep 2006 | |
677 | =========== | |
678 | ||
679 | This is primarily a feature release: | |
680 | ||
681 | - a new qtype value 'mixing' has been added to the scale() | |
682 | method. This is faster than 'normal', slower than 'preview'. This | |
683 | is based on the method used by pnmscale, and seems to produce less | |
684 | blurry results than normal. | |
685 | http://rt.cpan.org/Public/Bug/Display.html?id=20677 | |
686 | ||
687 | - the rubthrough() method can now render onto images with an alpha | |
688 | channel. | |
689 | http://rt.cpan.org/Ticket/Display.html?id=20678 | |
690 | ||
691 | - the read_multi() method now falls back to calling doing a single | |
692 | image read via the read() method and write_multi() will now fall | |
693 | back to calling write() if a single image is supplied. This means | |
694 | you can simply call the read_multi() or write_multi() functions | |
695 | without having to check if the type is formatted by that method. | |
696 | http://rt.cpan.org/Ticket/Display.html?id=19457 | |
697 | http://rt.cpan.org/Ticket/Display.html?id=19458 | |
698 | ||
699 | - the GIF loop extension can now be written. If you don't have | |
700 | libungif/giflib 4.1.4 (or some distribution's bugfixed equivalent) you | |
701 | should upgrade. | |
702 | http://rt.cpan.org/Ticket/Display.html?id=21185 | |
703 | ||
704 | - getscanline() and setscanline() can now read/write palette index | |
705 | based data from/to the image for paletted images, by setting type to | |
706 | 'index'. | |
707 | http://rt.cpan.org/Ticket/Display.html?id=20338 | |
708 | ||
709 | - we no longer hassle you to disable GIF support | |
710 | http://rt.cpan.org/Ticket/Display.html?id=20687 | |
711 | ||
712 | - minor documentation fixes | |
713 | ||
714 | ||
715 | Imager 0.53 - 26 Jul 2006 | |
716 | =========== | |
717 | ||
718 | This is a bugfix release. | |
719 | ||
720 | Some test code was left in a code path not covered by the test | |
721 | suite. A test was added to cover this code path and the test code was | |
722 | removed. | |
723 | http://rt.cpan.org/Public/Bug/Display.html?id=20705 | |
724 | ||
725 | ||
726 | Imager 0.52 - 25 Jul 2006 | |
727 | =========== | |
728 | ||
729 | This is primarily a feature release, but contains a fair few bug | |
730 | fixes, new features: | |
731 | ||
732 | - ability to read and write MS Windows ICO and CUR files | |
733 | ||
734 | - you can now add file format plugins to support new file formats | |
735 | ||
736 | - add POD coverage tests | |
737 | ||
738 | - setcolors() and addcolors() now accept color names and so on | |
739 | instead of requiring Imager::Color objects. | |
740 | http://rt.cpan.org/Ticket/Display.html?id=20056 | |
741 | ||
742 | - flood_fill() can now fill to a specified border color instead of | |
743 | just to the area the same color as the seed. | |
744 | http://rt.cpan.org/Ticket/Display.html?id=19618 | |
745 | ||
746 | ||
747 | Bug fixes: | |
748 | ||
749 | - bounding_box for the T1 driver wasn't converting UTF8 to ascii when | |
750 | calculating the advance width. | |
751 | http://rt.cpan.org/Public/Bug/Display.html?id=20554 | |
752 | ||
753 | - bounding_box for the T1 driver wasn't including leading and | |
754 | trailing spaces in the bounding box as the other drivers did, it also | |
755 | produced strange results for empty strings or strings containing only | |
756 | spaces | |
757 | ||
758 | - when reading CMYK jpeg images they were being transferred to the | |
759 | image object as is, producing a four channel image. It only looked ok | |
760 | due to an old still unfixed Photoshop bug. We now convert from the | |
761 | inverted CMYK that photoshop (and Corel for example) produce into RGB. | |
762 | http://rt.cpan.org/Ticket/Display.html?id=20416 | |
763 | ||
764 | - reading a CYMK TIFF would result in a 4 channel image, reading any | |
765 | image with more than 4 channels (eg. RGB with 2 alpha channels) would | |
766 | result in an error. | |
767 | http://rt.cpan.org/Ticket/Display.html?id=20415 | |
768 | ||
769 | - added /usr/local/include to the default include search path, since | |
770 | we were already searching /usr/local/lib for libraries. | |
771 | ||
772 | And various minor fixes and documentation updates. | |
773 | ||
774 | ||
775 | Imager 0.51 - 23 Apr 2006 | |
776 | =========== | |
777 | ||
778 | - fix a validation bug when processing JPEG EXIF data that can cause | |
779 | a crash | |
780 | http://rt.cpan.org/Public/Bug/Display.html?id=18496 | |
781 | ||
782 | - fix mis-processing of the src_maxx and src_maxy parameters of the | |
783 | paste() method | |
784 | http://rt.cpan.org/Public/Bug/Display.html?id=18712 | |
785 | ||
786 | - fix a problem in Imager's "smart" handling of the color parameter | |
787 | to various methods. | |
788 | http://rt.cpan.org/Public/Bug/Display.html?id=18561 | |
789 | ||
790 | ||
791 | Imager 0.50 - 29 Mar 2006 | |
792 | =========== | |
793 | ||
794 | - CRITICAL: fixes a segmentation fault from attempting to write a 2 | |
795 | or 4 channel image to jpeg or a 2 channel image to tga where the | |
796 | output is an in-memeory buffer. | |
797 | http://rt.cpan.org/Public/Bug/Display.html?id=18397 | |
798 | ||
799 | - fixes an incorrect pointer parameter in the PNG code | |
800 | http://rt.cpan.org/Public/Bug/Display.html?id=18051 | |
801 | ||
802 | - skip Inline::C tests when building in a directory with spaces | |
803 | http://rt.cpan.org/Public/Bug/Display.html?id=18049 |