muthuk_v has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re: Error using Image::Info
by zentara (Cardinal) on Oct 10, 2006 at 12:23 UTC
    #!/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. Cogito ergo sum a bum
Re: Error using Image::Info
by arkturuz (Curate) on Oct 10, 2006 at 09:53 UTC
    It is always good idea to post the code you wrote and the errors you get. More help will come that way.
Re: Error using Image::Info
by Hofmator (Curate) on Oct 10, 2006 at 11:05 UTC
    Good, now you posted your code :) but there is still no errormessage ... and please wrap your code in <code> tags to display it nicely, see also Writeup Formatting Tips.

    -- Hofmator

    Code written by Hofmator and posted on PerlMonks is public domain. It is provided as is with no warranties, express or implied, of any kind. Posted code may not have been tested. Use of posted code is at your own risk.