1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
use Test::More tests => 5;
use warnings;
use strict;
use PDF::API2;
my $pdf = PDF::API2->new(-compress => 0);
my $jpg = $pdf->image_jpeg('t/resources/1x1.jpg');
isa_ok($jpg, 'PDF::API2::Resource::XObject::Image::JPEG',
q{$pdf->image_jpg()});
my $gfx = $pdf->page->gfx();
$gfx->image($jpg, 72, 144, 216, 288);
like($pdf->to_string(), qr/q 216 0 0 288 72 144 cm \S+ Do Q/,
q{Add JPG to PDF});
# Filehandle
$pdf = PDF::API2->new();
open my $fh, '<', 't/resources/1x1.jpg';
$jpg = $pdf->image($fh);
isa_ok($jpg, 'PDF::API2::Resource::XObject::Image::JPEG',
q{$pdf->image(filehandle)});
is($jpg->width(), 1,
q{Image from filehandle has a width});
close $fh;
# Missing file
$pdf = PDF::API2->new();
eval { $pdf->image_jpeg('t/resources/this.file.does.not.exist') };
ok($@, q{Fail fast if the requested file doesn't exist});
|