File: gd.t

package info (click to toggle)
libpdf-builder-perl 3.027-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 23,992 kB
  • sloc: perl: 107,532; makefile: 10
file content (30 lines) | stat: -rw-r--r-- 641 bytes parent folder | download | duplicates (3)
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
#!/usr/bin/perl
use warnings;
use strict;

use Test::More tests => 2;

use PDF::Builder;

SKIP: {
    eval { require GD };
    if ($@) {
        skip q{GD not installed; skipping image_gd tests}, 2;
    }

    my $gd = GD::Image->new(1, 1);
    $gd->colorAllocate(0, 0, 0);

    my $pdf = PDF::Builder->new('-compress' => 'none');

    my $img = $pdf->image_gd($gd);
    isa_ok($img, 'PDF::Builder::Resource::XObject::Image::GD',
           q{$pdf->image_gd()});

    my $gfx = $pdf->page()->gfx();
    $gfx->image($img, 72, 144, 216, 288);
    like($pdf->to_string(), qr/q 216 0 0 288 72 144 cm \S+ Do Q/,
         q{Add GD to PDF});
}

1;