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