package Test::Image::GD; use strict; use warnings; use Test::Builder (); use Scalar::Util 'blessed'; use GD ':cmp'; require Exporter; our $VERSION = '0.03'; our @ISA = ('Exporter'); our @EXPORT = qw( cmp_image size_ok height_ok width_ok ); my $Test = Test::Builder->new; sub cmp_image ($$;$) { my ($got, $expected, $message) = @_; _coerce_image($got); _coerce_image($expected); if ($got->compare($expected) & GD_CMP_IMAGE) { $Test->ok(0, $message); } else { $Test->ok(1, $message); } } sub size_ok ($$;$) { my ($got, $expected, $message) = @_; _coerce_image($got); (ref($expected) && ref($expected) eq 'ARRAY') || die "expected must be an ARRAY ref"; if ($got->width == $expected->[0] && $got->height == $expected->[1] ){ $Test->ok(1, $message); } else { $Test->diag("... (image => (width, height))\n" . " w: (" . $got->width . " => " . $expected->[0] . ")\n" . " h: (" . $got->height . " => " . $expected->[1] . ")"); $Test->ok(0, $message); } } sub height_ok ($$;$) { my ($got, $expected, $message) = @_; _coerce_image($got); if ($got->height == $expected){ $Test->ok(1, $message); } else { $Test->diag("... (image => (height))\n" . " h: (" . $got->height . " => " . $expected . ")"); $Test->ok(0, $message); } } sub width_ok ($$;$) { my ($got, $expected, $message) = @_; _coerce_image($got); if ($got->width == $expected){ $Test->ok(1, $message); } else { $Test->diag("... (image => (width))\n" . " w: (" . $got->width . " => " . $expected . ")"); $Test->ok(0, $message); } } ## Utility Methods sub _coerce_image { unless (blessed($_[0]) && $_[0]->isa('GD::Image')) { $_[0] = GD::Image->new($_[0]) || die "Could not create GD::Image instance with : " . $_[0]; } } 1; __END__ =head1 NAME Test::Image::GD - A module for testing images using GD =head1 SYNOPSIS use Test::More plan => 1; use Test::Image::GD; cmp_image('test.gif', 'control.gif', '... these images should match'); # or my $test = GD::Image->new('test.gif'); my $control = GD::Image->new('control.gif'); cmp_image($test, $control, '... these images should match'); # some other test functions ... size_ok('camel.gif', [ 100, 350 ], '... the image is 100 x 350"); height_ok('test.gif', 200, '... the image has a height of 200'); width_ok('test.gif', 200, '... the image has a width of 200'); =head1 DESCRIPTION This module is meant to be used for testing custom graphics, it attempts to "visually" compare the images, this means it ignores invisible differences like color palettes and metadata. It also provides some extra functions to check the size of the image. =head1 FUNCTIONS =over 4 =item B This function will tell you whether the two images will look different, ignoring differences in the order of colors in the color palette and other invisible changes. Both C<$got> and C<$expected> can be either instances of C or either a file handle or a file path (both are valid parameters to the C constructor). =item B This function will check if an image is a certain size. As with the C function, the C<$got> parameter can be either an instance of C or a file handle or a file path (all are valid parameters to the C constructor). =item B This function will check if an image is a certain height. As with the C function, the C<$got> parameter can be either an instance of C or a file handle or a file path (all are valid parameters to the C constructor). =item B This function will check if an image is a certain width. As with the C function, the C<$got> parameter can be either an instance of C or a file handle or a file path (all are valid parameters to the C constructor). =back =head1 TO DO =over 4 =item Add more functions This module currently serves a very basic need of mine, however, I am sure as I start writing more tests against images I will find a need for other testing functions. Any suggestions are welcome. =back =head1 BUGS None that I am aware of. Of course, if you find a bug, let me know, and I will be sure to fix it. =head1 CODE COVERAGE I use B to test the code coverage of my tests, below is the B report on this module test suite. ---------------------------- ------ ------ ------ ------ ------ ------ ------ File stmt bran cond sub pod time total ---------------------------- ------ ------ ------ ------ ------ ------ ------ Test/Image/GD.pm 100.0 91.7 63.6 100.0 100.0 100.0 93.7 ---------------------------- ------ ------ ------ ------ ------ ------ ------ Total 100.0 91.7 63.6 100.0 100.0 100.0 93.7 ---------------------------- ------ ------ ------ ------ ------ ------ ------ =head1 SEE ALSO The C function of C class, that is how this C is implemented. =head1 AUTHOR Stevan Little, Estevan@iinteractive.comE =head1 COPYRIGHT AND LICENSE Copyright 2005 by Infinity Interactive, Inc. L This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut