An easy way to do this is to delegate the work to ImageMagick through the PerlMagick CPAN module. The Identify and Ping methods are designed for that purpose.
use strict;
use Image::Magick;
my $im = Image::Magick->new();
my ($width, $height, $size, $format) = $im->Ping('/path/to/my/image.jpg');
After executing this little program, the $format variable will contain a string with the identified format of the image (in this example: "JPEG"), or undef in case of error (non-existing file, unrecognized format, etc.).
Edit: ...and to completely answer your question: it is probably safe to assume that a given file is an image if Ping returns a format string, and if it is part of whichever subset you decide to white-list from ImageMagick's list of supported formats (which also includes non-image formats).
filecommand that makes canonical "magic" tests of a file. I don't know what you might need on non-Unix/Linux platforms. – JRFerguson Jun 18 '12 at 12:57