summaryrefslogtreecommitdiff
path: root/t/font-synfont.t
blob: b968aac815448f74214074382e2a5e613f50ed85 (plain)
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
#!/usr/bin/perl
use warnings;
use strict;

use Test::More tests => 2;
my $test_count = 2;

use PDF::Builder;

my @possible_locations = (
    '/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf',
    '/var/lib/defoma/gs.d/dirs/fonts/DejaVuSans.ttf',
    'C:/Windows/fonts/DejaVuSans.ttf',
);

my ($font_file) = grep { -f && -r } @possible_locations;

SKIP: {
    skip "Skipping synthetic font tests... DejaVu Sans font not found", $test_count
        unless $font_file;

    my $pdf = PDF::Builder->new();
    my $ttf = $pdf->ttfont($font_file);
    my $font = $pdf->synfont($ttf);

    # Do something with the font to see if it appears to have opened
    # properly.
    ok($font->glyphNum() > 0,
       q{Able to read a count of glyphs (>0) from a TrueType font});

    like($font->{'Name'}->val(), qr/^\w+\+De/,
         q{Font has the expected name});
}

1;