4 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
use Image::Info qw(image_info image_type);
my $info = image_type(\$binary_data);
for (keys %{$info}) {
print "$_ => $info->{$_}\n"; #funktioniert
}
print $info->{image_type},"\n"; #funktioniert NICHT!!
4 Einträge, 1 Seite |