- avoid using CHECK as a label in Imager::Test
http://nntp.x.perl.org/group/perl.cpan.testers/5220921
+ - re-work most image file test files that require a library into
+ separate library present/not present files to remove stupidly long
+ conditionals
+
+ - don't treat rubthrough() outside the bounds of the target image as
+ an error.
+ http://nntp.x.perl.org/group/perl.cpan.testers/5185716
+
Imager 0.67_01 - 02 Sep 2009
==============
if (tx >= im->xsize || ty >= im->ysize
|| src_minx >= src_maxx || src_miny >= src_maxy) {
i_clear_error();
- i_push_error(0, "rubthrough: nothing to do");
- return 0;
+ /* just do nothing, attempting to rubthrough outside the target isn't
+ worth being an error */
+ return 1;
}
if (im->channels == 1 || im->channels == 3)