Help for this page
#!/usr/bin/perl -w use Image::Magick; ... ($width, $height, $size, $format) = $image->Ping($x); print $width,"\n", $height,"\n" ,$size,"\n", $format,"\n";
#!/usr/bin/perl use strict; ... my ($width, $height) = imgsize(\$img); print "$url is ${width}x${height}\n";