public
Clone URL: git://github.com/typester/pdf-fromimage.git
name age message
file .shipit Wed May 28 23:09:22 -0700 2008 initial commit [typester]
file Changes Thu May 29 19:37:42 -0700 2008 Checking in changes prior to tagging of version... [typester]
file LICENSE Wed May 28 23:09:22 -0700 2008 initial commit [typester]
file MANIFEST Thu May 29 01:20:44 -0700 2008 Checking in changes prior to tagging of version... [typester]
file MANIFEST.SKIP Wed May 28 23:09:22 -0700 2008 initial commit [typester]
file Makefile.PL Thu May 29 01:00:46 -0700 2008 Checking in changes prior to tagging of version... [typester]
file README Thu May 29 01:00:46 -0700 2008 Checking in changes prior to tagging of version... [typester]
directory example/ Thu May 29 01:16:12 -0700 2008 added image2pdf.pl for example [typester]
directory lib/ Thu May 29 19:37:42 -0700 2008 Checking in changes prior to tagging of version... [typester]
directory t/ Wed May 28 23:09:22 -0700 2008 initial commit [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.