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