Template::Plugin::GD(3) GD plugin(s) for the Template Toolkit

GD PLUGINS

These are the GD plugins provided in this distribution.

Template::Plugin::GD

Front-end module to the GD plugin collection.

Template::Plugin::GD::Image

Plugin interface providing direct access to the GD::Image module.

    [% USE image = GD.Image %]

Template::Plugin::GD::Polygon

Plugin interface providing direct access to the GD::Polygon module.

    [% USE poly = GD.Polygon;
       poly.addPt(50,0);
       poly.addPt(99,99);
       poly.addPt(0,99);
       image.filledPolygon(poly, blue);
    %]

Template::Plugin::GD::Text

Plugin interface providing direct access to the GD::Text module.

    [%  USE text = GD.Text;
        text.set_text('Some text');
    %]

Template::Plugin::GD::Text::Align

Plugin interface to the GD::Text::Align module for creating aligned text.

Template::Plugin::GD::Text::Wrap

Plugin interface to the GD::Text::Wrap module for creating wrapped text.

Template::Plugin::GD::Graph::area

Plugin interface to the GD::Graph::area module for creating area graphics with axes and legends.

Template::Plugin::GD::Graph::bars3d

Plugin interface to the GD::Graph::bars3d module for creating 3D bar graphs with axes and legends.

Template::Plugin::GD::Graph::bars

Plugin interface to the GD::Graph::bars module for creating bar graphs with axes and legends.

Template::Plugin::GD::Graph::lines3d

Plugin interface to the GD::Graph::lines3d module for creating 3D line graphs with axes and legends.

Template::Plugin::GD::Graph::lines

Plugin interface to the GD::Graph::lines module for creating line graphs with axes and legends.

Template::Plugin::GD::Graph::linespoints

Plugin interface to the GD::Graph::linespoints module for creating line/point graphs with axes and legends

Template::Plugin::GD::Graph::mixed

Plugin interface to the GD::Graph::mixed module for creating mixed graphs with axes and legends.

Template::Plugin::GD::Graph::pie3d

Plugin interface to the GD::Graph::pie3d module for creating 3D pie charts with legends.

Template::Plugin::GD::Graph::pie

Plugin interface to the GD::Graph::pie module for creating pie charts with legends.

Template::Plugin::GD::Graph::points

Plugin interface to the GD::Graph::points module for creating point graphs with axes and legends

Template::Plugin::GD::Constants

Provides access to various GD constants.

    [% USE gdc = GD.Constants;
       font = gdc.gdLargeFont
    %]