
PDF::FromImage - Create PDF slide from images

use PDF::FromImage;
my $pdf = PDF::FromImage->new;
$pdf->load_images(
'page1.png',
'page2.png',
:
);
$pdf->write_file('output.pdf');

This module create simple pdf image slide from multiple images.

Load a image file.
Supported format are jpeg, tiff, pnm, png, and gif.
Load multiple images.
Generate pdf from loaded images, and write it to file.

Daisuke Murase <typester@cpan.org>

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.