PDF::FromImage::Image - PDF::FromImage image object


PDF-FromImage documentation Contained in the PDF-FromImage distribution.

Index


Code Index:

NAME

Top

PDF::FromImage::Image - PDF::FromImage image object

AUTHOR

Top

Daisuke Murase <typester@cpan.org>

COPYRIGHT

Top


PDF-FromImage documentation Contained in the PDF-FromImage distribution.

package PDF::FromImage::Image;
use Moose;

has src => (
    is       => 'ro',
    isa      => 'Str',
    required => 1,
);

has format => (
    is       => 'ro',
    isa      => 'Str',
    required => 1,
);

has width => (
    is       => 'ro',
    isa      => 'Int',
    required => 1,
);

has height => (
    is       => 'ro',
    isa      => 'Int',
    required => 1,
);


1;