Skip to content

Latest commit

 

History

History
48 lines (27 loc) · 1.25 KB

README.pod

File metadata and controls

48 lines (27 loc) · 1.25 KB

NAME

Inline::Python::ReportLab - PDF Generation using Python's ReportLab

SYNOPSIS

use Inline::Python::ReportLab;
my $canvas = Inline::Python::ReportLab->Canvas('filename.pdf');
$canvas->drawString(100,100,"Hello World");
$canvas->showPage();
$canvas->save();

DESCRIPTION

Inline::Python::ReportLab is a VERY naive wrapper around Python's popular PDF generation library ReportLab. It uses the magic of Inline::Python, so that must be installed, as must the python interpreter itself, and the Python ReportLab library obviously.

This module should be viewed as a starting point awaiting contributions. See "Source Repository" to see where to go to help. The author wrote the module as a proof-of-concept, but would like to see it go farther if people are interested in contributing.

SEE ALSO

SOURCE REPOSITORY

http://github.com/jberger/Inline-Python-ReportLab

AUTHOR

Joel Berger, <joel.a.berger@gmail.com>

COPYRIGHT AND LICENSE

Copyright (C) 2011 by Joel Berger

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