| PDF-FromImage documentation | Contained in the PDF-FromImage distribution. |
PDF::FromImage::Image - PDF::FromImage image object
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.
| 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;