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