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 52 53 54 55 56 57 58 59 60 61 62 63 64
|
NAME
Graph::Writer::GraphViz - GraphViz Writer for Graph object
SYNOPSIS
my @v = qw/Alice Bob Crude Dr/;
my $g = Graph->new(@v);
my $wr = Graph::Writer::GraphViz->new(-format => 'dot');
$wr->write_graph($g,'/tmp/graph.simple.dot');
my $wr_png = Graph::Writer::GraphViz->new(-format => 'png');
$wr_png->write_graph($g,'/tmp/graph.simple.png');
Graph::Writer::GraphViz->new(
-format => 'png',
-layout => 'twopi',
-ranksep => 1.5,
-fontsize => 8
-edge_color => 'grey',
-node_color => 'black',
)->write_graph($g,'/tmp/graph.png');
DESCRIPTION
Graph::Writer::GraphViz is a class for writing out a Graph object with
GraphViz module. All GraphViz formats should be supported without a
problem.
METHODS
new()
Unlike other Graph::Writer modules, this module provide an extra
parameter '-format' to new() method, in order to save different format.
Other supported GraphViz parameters are -layout, -ranksep, -shape,
-fontsize, -arrowsize. Please see the SYNOPSIS for example usage.
Valid format depends on those GraphViz as_fmt methods on your system,
like, 'gif' if you have 'as_gif', 'text' if you can do 'as_text'.
SEE ALSO
Graph, Graph::Writer, GraphViz
AUTHOR
Kang-min Liu <gugod@gugod.org>
CREDITS
Thanks for RURBAN@cpan.org for noticing tests failure on different
platforms.
COPYRIGHT
Copyright 2004 by Kang-min Liu <gugod@gugod.org>.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
See <http://www.perl.com/perl/misc/Artistic.html>
|