From: Tara L Andrews Date: Wed, 14 Mar 2012 11:33:21 +0000 (+0100) Subject: change pt to px in stemma graphic X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=scpubgit%2Fstemmatology.git;a=commitdiff_plain;h=3bf5d6f1070741054a890165852039422030d963 change pt to px in stemma graphic --- diff --git a/lib/Text/Tradition/Stemma.pm b/lib/Text/Tradition/Stemma.pm index 24d9e84..42f27e3 100644 --- a/lib/Text/Tradition/Stemma.pm +++ b/lib/Text/Tradition/Stemma.pm @@ -8,6 +8,7 @@ use Graph::Reader::Dot; use IPC::Run qw/ run binary /; use Text::Tradition::Error; use Text::Tradition::StemmaUtil qw/ character_input phylip_pars parse_newick /; +use XML::LibXML; use Moose; =head1 NAME @@ -264,7 +265,7 @@ sub as_svg { my( $self, $opts ) = @_; my $dot = $self->as_dot( $opts ); my @cmd = qw/dot -Tsvg/; - my( $svg, $err ); + my $svg; my $dotfile = File::Temp->new(); ## TODO REMOVE # $dotfile->unlink_on_destroy(0); @@ -272,8 +273,16 @@ sub as_svg { print $dotfile $dot; push( @cmd, $dotfile->filename ); run( \@cmd, ">", binary(), \$svg ); - $svg = decode_utf8( $svg ); - return $svg; + # HACK: Parse the SVG and change the dimensions. + # Convert width from pt to px, and remove height to allow scaling. + my $parser = XML::LibXML->new(); + my $svgdoc = $parser->parse_string( decode_utf8( $svg ) ); + my $dval = $svgdoc->documentElement->getAttribute('width'); + $dval =~ s/pt/px/; + $svgdoc->documentElement->setAttribute( 'width', $dval ); + $svgdoc->documentElement->removeAttribute('height'); + # Return the result + return decode_utf8( $svgdoc->toString ); } =head2 witnesses