Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In order to set some varaibles i need the information if a given file on my server is an image. I do not know anything about the file exept for its location and name.

Is there a way to detect if a file is an image WITHOUT looking at the file extension?

share|improve this question
I suppose you can detect some formats of image (.jpg, .png, .gif), but not all existing formats. ) Would it be sufficient? – raina77ow Jun 18 '12 at 12:32
my question was aiming for a solution WITHOUT looking at the file extensions – Thariama Jun 18 '12 at 12:37
1  
What made you think I talked about the file extensions, not the file formats? – raina77ow Jun 18 '12 at 12:50
@raina77ow: well, this might be sufficient. could you provide some code? – Thariama Jun 18 '12 at 12:53
On Unix/Linux there is the file command 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

3 Answers

up vote 6 down vote accepted

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).

share|improve this answer
+1 that is solving my issue - thanks very much – Thariama Jun 18 '12 at 13:14

JRFerguson mentions the command file in a comment attached to the question. It comes with a C library counter-part, libmagic. The Perl binding is called File::LibMagic.

use File::LibMagic qw();
my $detect = File::LibMagic->new;
$detect->checktype_filename("first_success.jpg") =~ /^image/

Expression returns true for image types.

share|improve this answer
+1 thanks for this other approach – Thariama Jun 18 '12 at 13:38
+1 for enlightening me! – JRFerguson Jun 18 '12 at 13:40
Another comparable module I have used is File::MimeInfo::Magic – Joel Berger Jun 19 '12 at 20:21
The FDO magic file sucks. As of v0.91 of shared-mime-info, there are only 377 recognised types, file 5.11 has over five times as many. – daxim Jun 19 '12 at 22:52

You got two good answers already. There's one more tool that can be valuable in these cases. It's going to be slower than the libmagic solutions but it's sometimes preferable for the additional information and utility. I do not know which tool is more comprehensive or likely to fail on edge cases. Image::ExifTool

use Image::ExifTool "ImageInfo";

my $info = ImageInfo(shift || die "Give an image file!\n");

print "This is a ", $info->{FileType}, "\n";

use Data::Dump "pp";
print "Here's more...\n";
pp $info;
share|improve this answer
+1 thx for this additional working approach – Thariama Jun 20 '12 at 7:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.