1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
#!/usr/bin/perl -w
use Test::More;
use strict;
# test SVG images
BEGIN
{
chdir 't' if -d 't';
use lib '../lib';
plan skip_all => "Need XML::Simple for this test",
unless do {
eval "use XML::Simple;";
$@ ? 0 : 1;
};
plan tests => 12;
}
use Image::Info qw(image_info dim);
my $i = image_info("../img/test.svg") ||
die ("Couldn't read test.svg: $!");
#use Data::Dumper; print Dumper($i), "\n";
is ($i->{color_type}, 'sRGB', 'color_type');
is ($i->{file_media_type}, 'image/svg+xml', 'file_media_type');
is ($i->{SVG_StandAlone}, 'yes', 'SVG_StandAlone');
is ($i->{file_ext}, 'svg', 'file_ext');
is ($i->{SVG_Version}, 'unknown', 'SVG_Version unknown');
is (dim($i), '4inx3in', 'dim()');
#############################################################################
# second test file
$i = image_info("../img/graph.svg") ||
die ("Couldn't read graph.svg: $!");
#use Data::Dumper; print Dumper($i), "\n";
is ($i->{SVG_StandAlone}, 'yes', 'SVG_StandAlone');
is ($i->{file_ext}, 'svg', 'file_ext');
is ($i->{file_media_type}, 'image/svg+xml', 'file_media_type');
is ($i->{SVG_Title}, 'Untitled graph', 'title');
is ($i->{SVG_Version}, '1.1', 'SVG_Version 1.1');
is (dim($i), '209x51', 'dim()');
|