in reply to How to use PERL get the properties of a Flash file

Did you look at Image::ExifTool::Flash?
  • Comment on Re: How to use PERL get the properties of a Flash file

Replies are listed 'Best First'.
Re^2: How to use PERL get the properties of a Flash file
by ikegami (Patriarch) on Nov 14, 2008 at 20:33 UTC
    Tested.
    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 "...";