[%# # IMPORTANT NOTE # This documentation is generated automatically from source # templates. Any changes you make here may be lost. # # The 'docsrc' documentation source bundle is available for download # from http://www.template-toolkit.org/docs.html and contains all # the source templates, XML files, scripts, etc., from which the # documentation for the Template Toolkit is built. -%] [% META book = 'Modules' page = 'Plugin_GD_Text_Align' %] [% WRAPPER toc; INCLUDE tocitem title = 'SYNOPSIS'; INCLUDE tocitem title = 'EXAMPLES'; INCLUDE tocitem title = 'DESCRIPTION'; INCLUDE tocitem title = 'AUTHOR'; INCLUDE tocitem title = 'VERSION'; INCLUDE tocitem title = 'COPYRIGHT'; INCLUDE tocitem title = 'SEE ALSO'; END %] [% WRAPPER section title='SYNOPSIS' -%]
    [% tt_start_tag %] USE align = GD.Text.Align(gd_image); [% tt_end_tag %]
[%- END %] [% WRAPPER section title='EXAMPLES' -%]
    [% tt_start_tag %] FILTER null;
        USE im  = GD.Image(100,100);
        USE gdc = GD.Constants;
        # allocate some colors
        black = im.colorAllocate(0,   0, 0);
        red   = im.colorAllocate(255,0,  0);
        blue  = im.colorAllocate(0,  0,  255);
        # Draw a blue oval
        im.arc(50,50,95,75,0,360,blue);
        USE a = GD.Text.Align(im);
        a.set_font(gdc.gdLargeFont);
        a.set_text("Hello");
        a.set(colour => red, halign => "center");
        a.draw(50,70,0);
        # Output image in PNG format
        im.png | stdout(1);
       END;
    -[% tt_end_tag %]
[%- END %] [% WRAPPER section title='DESCRIPTION' -%]

The GD.Text.Align plugin provides an interface to the GD::Text::Align module. It allows text to be drawn in GD images with various alignments and orientations.

See [% ttlink('GD::Text::Align') -%] for more details. See [% ttlink('Template::Plugin::GD::Text::Wrap') -%] for a plugin that allow you to render wrapped text in GD images.

[%- END %] [% WRAPPER section title='AUTHOR' -%]

Craig Barratt <craig@arraycomm.com>

The GD::Text module was written by Martien Verbruggen.

[%- END %] [% WRAPPER section title='VERSION' -%]

1.22, distributed as part of the Template Toolkit version 2.06, released on 07 November 2001.

[%- END %] [% WRAPPER section title='COPYRIGHT' -%]

Copyright (C) 2001 Craig Barratt <craig@arraycomm.com>

GD::Text is copyright 1999 Martien Verbruggen.

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

[%- END %] [% WRAPPER section title='SEE ALSO' -%]

[% ttlink('Template::Plugin', 'Template::Plugin') -%], [% ttlink('Template::Plugin::GD', 'Template::Plugin::GD') -%], [% ttlink('Template::Plugin::GD::Text', 'Template::Plugin::GD::Text') -%], [% ttlink('Template::Plugin::GD::Text::Wrap', 'Template::Plugin::GD::Text::Wrap') -%], [% ttlink('GD', 'GD') -%], [% ttlink('GD::Text::Align', 'GD::Text::Align') -%]

[%- END %]