This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
.shipit | Wed May 28 23:09:22 -0700 2008 | [typester] |
| |
Changes | Thu May 29 19:37:42 -0700 2008 | [typester] |
| |
LICENSE | Wed May 28 23:09:22 -0700 2008 | [typester] |
| |
MANIFEST | Thu May 29 01:20:44 -0700 2008 | [typester] |
| |
MANIFEST.SKIP | Wed May 28 23:09:22 -0700 2008 | [typester] |
| |
Makefile.PL | Thu May 29 01:00:46 -0700 2008 | [typester] |
| |
README | Thu May 29 01:00:46 -0700 2008 | [typester] |
| |
example/ | Thu May 29 01:16:12 -0700 2008 | [typester] |
| |
lib/ | Thu May 29 19:37:42 -0700 2008 | [typester] |
| |
t/ | Wed May 28 23:09:22 -0700 2008 | [typester] |
README
NAME
PDF::FromImage - Create PDF slide from images
SYNOPSIS
use PDF::FromImage;
my $pdf = PDF::FromImage->new;
$pdf->load_images(
'page1.png',
'page2.png',
:
);
$pdf->write_file('output.pdf');
DESCRIPTION
This module create simple pdf image slide from multiple images.
METHODS
load_image($filename)
Load a image file.
Supported format are jpeg, tiff, pnm, png, and gif.
load_images(@filenames)
Load multiple images.
write_file($filename)
Generate pdf from loaded images, and write it to file.
AUTHOR
Daisuke Murase <typester@cpan.org>
COPYRIGHT
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included
with this module.




