in reply to Re: How to use PERL get the properties of a Flash file
in thread How to use PERL get the properties of a Flash file
my $info = ImageInfo($qfn); die "..." if exists($info->{Error}); die "..." if !exists($info->{ImageSize}); my ($x, $y) = $info->{ImageSize} =~ /^(\d+)x(\d+)\z/ or die "...";
|
|---|