X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=wiki%2Fforester.wiki;h=3e4c70fb2dadbb99d1d5ce3d05852c6d2dc41be6;hb=511c776bd39632dc9f1004cdcdd3ce183763c3dd;hp=392bd4396106bc97992237cc53f3b6bb53d35636;hpb=a2a5df4aa0ea8b59c3ef76c3ebf10b674c0a1c50;p=jalview.git diff --git a/wiki/forester.wiki b/wiki/forester.wiki index 392bd43..3e4c70f 100644 --- a/wiki/forester.wiki +++ b/wiki/forester.wiki @@ -289,37 +289,31 @@ import org.forester.archaeopteryx.TreeColorSet; public class phylo2graphics { - public static void main(final String[] args) { - try { - Configuration config = new Configuration(); - // Could also read a configuration file with: - // Configuration config = new Configuration("my_configuration_file.txt", false, false, false); - config.putDisplayColors(TreeColorSet.BACKGROUND, new Color(255, 255, 255)); - config.putDisplayColors(TreeColorSet.BRANCH, new Color(0, 0, 0)); - config.putDisplayColors(TreeColorSet.TAXONOMY, new Color(0, 0, 0)); - config.setPhylogenyGraphicsType( - Options.PHYLOGENY_GRAPHICS_TYPE.RECTANGULAR); - - AptxUtil.writePhylogenyToGraphicsFile(new File("my_tree.xml"), - new File("my_tree.png"), - 800, // width - 1000, // height - GraphicsExportType.PNG, - config); - - - // If the tree 'phy' already exists, can also use this: - // AptxUtil.writePhylogenyToGraphicsFile(phy, - // new File( - // "out.png"), - // 800, - // 1000, - // GraphicsExportType.PNG, - // config); - + public static void main( final String[] args ) { + try { + final Configuration config = new Configuration(); + // Could also read a configuration file with: + // Configuration config = new Configuration("my_configuration_file.txt", false, false, false); + config.putDisplayColors( TreeColorSet.BACKGROUND, new Color( 255, 255, 255 ) ); + config.putDisplayColors( TreeColorSet.BRANCH, new Color( 0, 0, 0 ) ); + config.putDisplayColors( TreeColorSet.TAXONOMY, new Color( 0, 0, 0 ) ); + config.setPhylogenyGraphicsType( Options.PHYLOGENY_GRAPHICS_TYPE.RECTANGULAR ); + AptxUtil.writePhylogenyToGraphicsFile( new File( "my_tree.xml" ), + new File( "my_tree_graphics.png" ), + 1000, + 1000, + GraphicsExportType.PNG, + config ); + // If the tree 'phy' already exists, can also use this: + AptxUtil.writePhylogenyToGraphicsFile( phy, + new File( "out.png" ), + 1000, + 1000, + GraphicsExportType.PNG, + config ); } - catch (IOException e) { - e.printStackTrace(); + catch ( final IOException e ) { + e.printStackTrace(); } } }