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