The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Mxpress::PDF - The great new Mxpress::PDF!

VERSION

Version 0.01

SYNOPSIS

        use Mxpress::PDF;

        Mxpress::PDF->new_pdf('test-pdf',
                page => { background => '#000' },
                title => { font => { colour => '#f00' } },
                subtitle => { padding => 5, font => { colour => '#0ff' } },
                text => { padding => 5, font => { colour => '#fff' } }
        )->add_page->title->add(
                'This is a title',
                position => [5, 297]
        )->subtitle->add(
                'This is a subtitle.'
        )->text->add(
                'This is some text.'
        )->save();

Note

experimental.

AUTHOR

LNATION, <thisusedtobeanemail at gmail.com>

BUGS

Please report any bugs or feature requests to bug-mxpress-pdf at rt.cpan.org, or through the web interface at https://rt.cpan.org/NoAuth/ReportBug.html?Queue=Mxpress-PDF. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

        perldoc Mxpress::PDF

You can also look for information at:

ACKNOWLEDGEMENTS

LICENSE AND COPYRIGHT

This software is Copyright (c) 2020 by LNATION.

This is free software, licensed under:

        The Artistic License 2.0 (GPL Compatible)