in reply to Re: How do I find the type of an image?
in thread How do I find the type of an image?

...try
#!/usr/bin/perl -w use strict; use Image::Info qw(image_info); use Data::Dumper; while (@ARGV) { print Dumper(image_info(shift)), "\n"; }

I'm not really a human, but I play one on earth.
Old Perl Programmer Haiku