Your IP : 216.73.216.74


Current Path : /proc/thread-self/root/usr/share/doc/perl-Image-Info/
Upload File :
Current File : //proc/thread-self/root/usr/share/doc/perl-Image-Info/imgdump

#!/usr/bin/perl -w

use lib "./lib";

use strict;
use Image::Info qw(image_info);
use Data::Dumper;

while (@ARGV) {
    print Data::Dumper::Dumper(image_info(shift)), "\n";
}