Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

figtree(1) [debian man page]

FIGTREE(1)							   User Commands							FIGTREE(1)

NAME
figtree - graphical phylogenetic tree viewer DESCRIPTION
Figtree is a (phylogenetic) tree figure drawing tool. It is designed as a graphical viewer of phylogenetic trees and as a program for pro- ducing publication-ready figures. In particular it is designed to display summarized and annotated trees produced by BEAST. AUTHOR
Andrew Rambaut Institute of Evolutionary Biology University of Edinburgh a.rambaut@ed.ac.uk http://tree.bio.ed.ac.uk/ Uses the Java Evolutionary Biology Library (JEBL) http://jebl.sourceforge.net/ Thanks to Alexei Drummond, Joseph Heled, Philippe Lemey, Tulio de Oliveira, Beth Shapiro & Marc Suchard Usage: figtree [-graphic <PDF|SVG|SWF|PS|EMF|GIF>] [-width <i>] [-height <i>] [-help] [<tree-file-name>] [<graphic-file-name>] -graphic produce a graphic with the given format -width the width of the graphic in pixels -height the height of the graphic in pixels -help option to print this message Example: figtree test.tree Example: figtree -graphic PDF test.tree test.pdf Example: figtree -graphic GIF -width 320 -height 320 test.tree test.gif Unrecognized argument: --version FigTree v1.3.1, 2006-2009 Tree Figure Drawing Tool Andrew Rambaut Institute of Evolutionary Biology University of Edinburgh a.rambaut@ed.ac.uk http://tree.bio.ed.ac.uk/ Uses the Java Evolutionary Biology Library (JEBL) http://jebl.sourceforge.net/ Thanks to Alexei Drummond, Joseph Heled, Philippe Lemey, Tulio de Oliveira, Beth Shapiro & Marc Suchard Usage: figtree [-graphic <PDF|SVG|SWF|PS|EMF|GIF>] [-width <i>] [-height <i>] [-help] [<tree-file-name>] [<graphic-file-name>] -graphic produce a graphic with the given format -width the width of the graphic in pixels -height the height of the graphic in pixels -help option to print this message Example: figtree test.tree Example: figtree -graphic PDF test.tree test.pdf Example: figtree -graphic GIF -width 320 -height 320 test.tree test.gif SEE ALSO
The full documentation for figtree is maintained as a Texinfo manual. If the info and figtree programs are properly installed at your site, the command info figtree should give you access to the complete manual. figtree February 2011 FIGTREE(1)

Check Out this Related Man Page

.::SWF::Bitmap(3pm)					User Contributed Perl Documentation				       .::SWF::Bitmap(3pm)

NAME
SWF::Bitmap - Bitmap class SYNOPSIS
use SWF::Bitmap; $bitmap = new SWF::Bitmap('filename'); $fill = $shape->addBitmapFill($bitmap); DESCRIPTION
SWF::Bitmap enables you to add JPG, PNG, GIF and DBL files. It is a helper class most useful for filling shapes (i.e. SWF::Shape objects). DBL files ('Define Bitmap Lossless') may be produced from PNG or GIF files by using png2dbl or gif2dbl tools. METHODS
$bitmap = new SWF::Bitmap($filename, [$alpha]) Creates a new SWF::Bitmap object using 'filename'. The alpha parameter represents a filename for opacity data ('alpha' channel), but only for JPG files. Alpha data files are produced by tool gif2mask. The original GIF used for gif2mask input file containing alpha information should have same dimensions (width x height) as the JPG file. $bitmap = newBitmapFromFileHandle($filehandle) Creates a new SWF::Bitmap object using an open file handle $filehandle . This way you could use STDIN, piped data etc. etc. for input. A simple example: open (PICT,'flowers.jpg') or die; $bmp = newBitmapFromFileHandle SWF::Bitmap(PICT); # ..... $m->save("my_flowers.swf"); close (PICT); # Please note: do not close the PICT file too early. $bitmap = newSWFDBLBitmap SWF::Bitmap($filename) Creates a new SWF::Bitmap object using DBL file. Use this constructor if you have a file with DBL data, but not with .dbl filename extension. $bitmap = newSWFJpegBitmap SWF::Bitmap($filename) Creates a new SWF::Bitmap object using JPG file. Use this constructor if you have a file with JPG data, but not with .jpg or .jpeg filename extension. $bitmap = newSWFJpegWithAlpha SWF::Bitmap($filename,$alpha_filename) Creates a new SWF::Bitmap object using JPG file similar newSWFJpegBitmap() with additional opacity information in 'alpha' file. Use this constructor if you have a file with JPG data, but not with .jpg or .jpeg filename extension and if there is opacity information available in 'alpha_filename' file. Alpha data files are produced by gif2mask tool. The original GIF file containing alpha information used for gif2mask input should have same dimensions as the JPG file. $width = $bitmap->getWidth(); Returns width of bitmap in pixels. $height = $bitmap->getHeight(); Returns height of bitmap in pixels. AUTHOR
Soheil Seyfaie (soheil@netcom.ca), Albrecht Kleine and developers of ming.sourceforge.net SEE ALSO
SWF, SWF::Fill, SWF::Shape, SWF::Button, SWF::Constants, png2dbl, gif2dbl, gif2mask perl v5.14.2 2011-10-26 .::SWF::Bitmap(3pm)
Man Page